相关考题
-
单项选择题
SQL中常用的给变量赋初值的命令为()。
A.SET
B.DECLARE
C.=
D.PRINT -
单项选择题
在SELECT查询中,使用INTO短语,其位置要在()。
A.FROM前,查询的列之后
B.FROM后,查询的列之前
C.FROM后,与查询的列无关
D.位置任意 -
单项选择题
分别统计男女生人数正确的SELECT命令为()。
A.select count(*)from student where sex=’男’and sex=’女’
B.select count(*)from student where sex=’男’or sex=’女’
C.select count(*)from student order by sex
D.select count(*)from student group by sex
