SQL Server中删除表中数据的命令是______。
A. DELETE
B. SELECT
C. UPDATE
DROP
查看答案
下面数据类型中不是整型数据类型的是______。
A. int
B. smallint
C. bigint
D. binary
属于日期时间型的数据类型是______。
A. nchar
B. bit
C. datetime
D. numeric
如果某一个字段希望存储客户的家庭或者办公电话,那么该字段应该采用______数据类型。
A. char(10)
B. char(13)
C. text
D. int
查询计算机系的所有男生信息______。
A. select * from 学生表 where 所在系=计算机系 and 性别=男
B. select * from 学生表 where 所在系=‘计算机系’and 性别=‘男’
C. select * from 学生表 where 所在系=计算机系 or性别=男
D. select * from 学生表 where 所在系=‘计算机系’or性别=‘男’