A.一定包含student1中的所有行,不一定包含student2中的所有行 B.不一定包含student1中的所有行,一定包含student2中的所有行 C.一定包含student1中的所有行,一定包含student2中的所有行 D.不一定包含student1中的所有行,不一定包含student2中的所有行
A.like B.<> C.distinct D.between
已知表student,字段如下: 取出course1,course2,course3三門成績(jī)均超過(guò)60分的記錄,可以使用如下查詢語(yǔ)句()
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