String sql="select * from stu_info where name='"+key+"'"; 该条语句的作用是?
A: 查询stu_info表中所有记录
B: 查询stu_info表中姓名为key的记录
C: 查询stu_info中name字段与关键字key相同的记录
A: 查询stu_info表中所有记录
B: 查询stu_info表中姓名为key的记录
C: 查询stu_info中name字段与关键字key相同的记录
举一反三
- String sql="select * from stu_info where name=+key+"; 该条语句的作用是?
- 下面选项中,查询stu表中id值不在2和5之间的学生的SQL语句是( )。 A: select * from stu where id != 2,3,4,5; B: select * from stu where id not betwen 5 and 2; C: select * from stu where id not betwen 2 and 5; D: select * from stu where id not in 2,3,4,5;
- 查询名字中有“金”字的同学的情况,应使用语句 A: SELECT * FROM stu WHERE stuname='_金_' B: SELECT * FROM stu WHERE stuname='%金%' C: SELECT * FROM stu WHERE stuname like '_金_' D: SELECT * FROM stu WHERE stuname like '%金%'
- 要想查询数据表stu中的所有数据,应该使用 A: select * from stu; B: show * from stu;
- 在MySQL数据库中,创建一个名为Stu的新表,同时要求该表与原有的Students表的表结构相同,同时包括Students表中的记录,正确的SQL语句是( )。 A: CREATE TABLE Stu LIKE students; B: CREATE TABLE Stu (SELECT * FROM Students); C: CREATE TABLE Stu AS SELECT * FROM Students; D: CREATE TABLE Stu LIKE SELECT sno,sname FROM Students;