暂无图片
返回数说广场
W
w83
2024-06-12
Oracle 19c 数据库,创建如下表: create table h_test (emp_id number, emp_name varchar2(10), mgr_id number); 然后创建两个视图: create view h_view1 as select * from h_test where EMP_ID=4; create view h_view2 as select * from h_test where EMP_ID=4 with check option constraint c_h_view2; 关于如下三条INSERT语句,说法正确的是: 1. insert into h_view1 values(6,'C_EMP1',8); 2. insert into h_view2 values(8,'C_EMP2',9); 3. insert into h_view2 values(4,'C_EMP3',7); C 只有第一条和第三条INSERT可以成功插入数据。
0
暂无图片 0
184
分享

评论

热门数说