题目内容

使用命令创建表,正确的格式是()

A. Create table
B. Create database
Create view

查看答案
更多问题

选择”学生“表中的”姓名“、”年龄“字段,正确的是()

A. select 姓名,年龄 from 学生
B. select 姓名 from 学生
C. select 年龄 from 学生
D. select * from 学生

查询”学生“表中年龄大于18的所有字段,正确的是()

A. select姓名 from 学生
B. select姓名 from 学生where 年龄>18
C. select * from 学生where 年龄>18
D. select*名 from 学生where 年龄<18

查询"学生"表中年龄大于18岁,性别是女生的学生所有信息

A. select * from 学生 where 年龄>18
B. select * from 学生 where 年龄<18and 性别="女生"
C. select * from 学生 where 年龄>18and 性别="女生"

connection 对象主要用于 的链接,command对象主要用于的查询或其他执行。

答案查题题库