使用jxgl数据库,查询所有课程被选修的情况,包括被选修了课程和还未被选修课程,显示课程名和人数。select cname ,COUNT(*)______ from SC left join Course______ on SC.cno=Course.cnogroup by cname
查看答案
创建商品信息表goods用于记录红鹰咖啡厅的商品信息create table goods( gid char(8) primary key,______ , gname char(30) not null, price money,______ , note char(200) )
会员表格VIP中增加一列address(不超过40字符),用于记录会员的家庭住址,可以为空。Alter table vipadd address NULL;______ ;
使用jxgl数据库,修改学号为“1411201”的同学的课程号“0000027”的成绩为80,绩点为2.5update SCset grade=80 and point=2.5______ where sno='1411201' and cno=0000027______
使用jxgl数据库,查询所有教师教学的课程数select count(*)______ from teaching______