单项选择题
关于多表联接查询,以下描述错误的是()。
A.外联接查询返回的结果集行数可能大于所有符合联接条件的结果集行数。
B.多表联接查询必须使用到JOIN关键字
C.内联接查询返回的结果是:所有符合联接条件的数据。
D.在where子句中指定联接条件可以实现内联接查询。
相关考题
-
单项选择题
关于查询中列的别名, 以下()语句是不正确的
A.Select name as’姓名’from table
B.Select name as姓名from table where id=1
C.Sleect name=姓名from table姓名=names(正确答案)
D.Select names姓名from table -
多项选择题
成绩表grade中字段score代表分数,以下()语句返回成绩表中的最低分。
A.select max(score)from grade
B.select top1score from grade order by score asc
C.Select min(score)fromgrade
D.select top1score from grade order by score desc -
单项选择题
查找authors表中的所有电话号码的首位为4,第二位为0或1的电话号码()。
A.SELECT phone FROM authors WHERE phone LIKE’4[1,0]%’
B.SELECT phone FROM authors WHERE phonein’4[^10]%’
C.SELECT phone FROM authors WHERE phone LIKE’4_[1,0]%’
D.SELECT phone FROM authors WHERE phone between’41%’and’40%’
