A.select *from students where height is nullB.select *from students where height=nullC.select height is null from studentsD.select height=null from students
单项选择题下列是范围查询函数的是()。
A.likeB.%C.inD.between...in...
单项选择题将年龄按升序排序的前提下,身高按降序排序,下列正确的语句是()。
A.select *from students order by age desc,height descB.select *from students order age asc,height descC.select *from students order by age desc,height ascD.select *from students order by age asc,height desc
单项选择题删除表数据应该使用哪种语句格式?()
A.delete from 表名 where 条件B.delete table from 表名 where 条件C.delete from table 表名 where 条件D.delete * from 表名 where 条件
单项选择题更新表数据应该使用哪种语句格式?()
A.update 表名into 列1=值1,列2=值2...where 条件B.update table 表名set 列1=值1,列2=值2...where 条件C.update 表名set 列1=值1,列2=值2...where 条件D.update table 表名into 列1=值1,列2=值2...where 条件
单项选择题DCL语言的作用描述正确的是()。
A.对事务进行处理B.是数据操作语言C.是指针控制语言D.进行授权与权限回收