在“xscjb(学生成绩表)”表中完成对性别为“女”且“yw”成绩低于85分的所有记录的显示。命令行:()
A. select * from xscjb where xb=’男’ and yw < 85
B. select * from xscjb where xb=’女’ and yw < 85
C. select * from xscjb where xb=’女’ or yw < 85
D. select * where xb=’女’ and yw < 85
将“xscjb”中,性别为“男”的记录“yw”成绩全部改为10分。命令行:()
A. delete xscjb set yw=10 where xb=’男’
B. update from xscjb set yw=10 where xb=’男’
C. update xscjb yw=10 where xb=’男’
D. update xscjb set yw=10 where xb=’男’
将“xsxx”表中,性别为“女”的记录删除命令行:()
A. delete from xsxxb where xb='男'
B. deletexsxxb where xb='女'
C. delete from xsxxb where xb='女'
D. dele from xsxxb where xb='女'
当数据库中有数据表被打开的情况下,使用命令行:drop database <数据库名称>可以直接删除该数据库。
A. 对
B. 错