2021-09-27
多选题
433人 参与 · 121人 答对
以下哪种写法,可以有效地找出目标列C1为空值的记录?其中C1列可能的值为正整数。
A
select * from t1 where decode(c1,null,1,2)=1;
B
select * from t1 where c1 = null;
C
select * from t1 where coalesce(c1,null)=null;
D
select * from t1 where nvl(c1,1)=1;
E
select * from t1 where c1 is null;
A. select * from t1 where decode(c1,null,1,2)=1;
B. select * from t1 where c1 = null;
C. select * from t1 where coalesce(c1,null)=null;
D. select * from t1 where nvl(c1,1)=1;
E. select * from t1 where c1 is null;
提交答案
提交答案
考考好友
讨论
答题后参与讨论
我也要出题,获取更多墨值
扫一扫,小程序答题更便捷
微信订阅,每日一题不错过
登录后查看个人战绩
手机验证码登录
忘记密码
注册
题目正确率排行
倒序 正序


