A: SELECT#FROMstudent
B: SELECT*FROMstudent;
C: SELECT?FROMstudent;
D: SELECT_FROMstudent;
举一反三
- 查询学生表中,所有学生的学号(sno),姓名(sname),性别(sex),和生日(birthday),下列select语句正确的是 A: SELECTsno, sname, sex, birthday FROMstudent B: SELECT * FROM student C: SELECTsno, sname, birthday FROM student D: SELECTsno, sname, sex FROMstudent
- 检索student表中的前3条记录信息,可以使用下面()SQL语句。 A: select*fromstudentlimit1,3; B: select*fromstudentlimit1; C: select*fromstudent; D: select*fromstudentlimit3;
- 【单选题】若要检索“Student”数据表中的所有记录和字段,则SQL语句为 A. Select姓名,性别FromStudent B. Select*FromStudent C. Select姓名,性别FromStudentWhere姓名="张山" D. Select*FromStudentWhere姓名="张山"
- 查询选课成绩大于90分的学生的姓名Select()fromstudent,scwherestudent.sno=sc.snoandgrade>=90
- 查询student表中记录数可以使用如下语句() A: selectcount()fromstudent B: selectcount(*)fromstudent C: selectcolumns()fromstudent D: selectcolumns(*)fromstudent
内容
- 0
从学生表student查询所有女学生的信息,正确的语句是( )。 A: SELECT B: FROM student where 性别="女"; C: SELECT * FROM student where 性别="女"; D: SELECT ? FROM student where 性别="女"; E: SELECT FROM student where 性别="女";
- 1
要查询学生表的所有内容的正确语句是 A: select ? from 学生表 B: select * from 学生表 C: select % from 学生表 D: select all from 学生表
- 2
查询学生表的所有记录的所有字段,SQL语句是 A: select 学生 from *; B: select * from 学生; C: select*from学生; D: select 所有记录所有字段 from 学生;
- 3
数据库中有一张表名称为Student,有列Name,Age,IDCard,Sex。要求写SQL语句查询出表中所有的数据,下列哪个SQL语句是正确的() A: Select*FromStudent B: SelectNameFromStudent C: SelectName,Age,IDCardFromStudent D: SelectName,Age,IDCard,SexFromStudent
- 4
使用SQL语句查询学生信息表tbl_student中的所有数据,并按学生学号stu_id升序排列,正确的语句是() A: SELECT*FROMtbl_studentORDERBYstu_idASC; B: SELECT*FROMtbl_studentORDERBYstu_idDESC; C: SELECT*FROMtbl_studentstu_idORDERBYASC; D: SELECT*FROMtbl_studentstu_idORDERBYDESC;