暂无图片
任务中心
2021-09-27
多选题
433人 参与 · 121人 答对
来自: 赵勇 — 贡献 248 题
以下哪种写法,可以有效地找出目标列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;
来自: 赵勇 — 贡献 248 题
提交答案
提交答案
考考好友

讨论

暂无图片
答题后参与讨论
我也要出题,获取更多墨值
扫一扫,小程序答题更便捷
微信订阅二维码
微信订阅,每日一题不错过
题目正确率排行
倒序 正序