单项选择题
希望将不同数据表中的数据进行关联的时候,我们可以采用表连接。以下不是sql表连接方式的一个是()
A.right join
B.left join
C.union
D.all join
点击查看答案&解析
相关考题
-
单项选择题
对student1和student2两张表进行innerjoin连接后,形成的新表中()
A.一定包含student1中的所有行,不一定包含student2中的所有行
B.不一定包含student1中的所有行,一定包含student2中的所有行
C.一定包含student1中的所有行,一定包含student2中的所有行
D.不一定包含student1中的所有行,不一定包含student2中的所有行 -
单项选择题
分析师小A想要在数据表中查询名称里包含“新款”的产品。那么在进行查询时,可以选择以下哪种方式用来进行模糊匹配()
A.like
B.<>
C.distinct
D.between -
单项选择题
已知表student,字段如下: 取出course1,course2,course3三门成绩均超过60分的记录,可以使用如下查询语句()
A.select*from student where course1+course2+course3>60
B.select*from student where course1 and course2 and course3>60
C.select*from student where max(course1,courser2,course3)>60
D.select*from student where course1>60 and course2>60 and course3>60