相关考题
-
单项选择题
在MySQL查询中使用哪个函数可以查到最大值()
A.insert into student(sal) values(8000);
B.select sun(age)from students;
C.delete from student where id=3;
D.select max(age) from students; -
单项选择题
在mysql数据库中查询数据时,可以通过别名来简化数据库表名,可以通过关键字()来操作。
A.add
B.at
C.like
D.as -
单项选择题
删除score表中的id字段,下列SQL语句中可以实现的是()
A.alter table score drop id;
B.alter table score delete id;
C.alter table score modify id;
D.alter table score change id;
