查询book表中,图书类别为计算机且数量大于10的图书信息,补全查询语句select * form bookwhere 图书类别='计算机' ____数量>;____;
查询book表中,图书类别为计算机且数量大于10的图书信息,补全查询语句select * form bookwhere 图书类别='计算机' ____数量>;____;
补全下列查询命令:查找价格高于“数据库应用”这本书的所有图书的信息select * from bookwhere 单价 >;____(select 单价 from book where 书名='数据库应用');
补全下列查询命令:查找价格高于“数据库应用”这本书的所有图书的信息select * from bookwhere 单价 >;____(select 单价 from book where 书名='数据库应用');
查询book表中每类图书的平均单价,结果只显示平均单价大于30的图书类别名和平均单价,以下SQL语句正确的是? A: select 图书类别,avg(单价)from bookwhere 单价 >= avg(单价); B: select 图书类别,avg(单价)from bookgroup by 图书类别; C: select 图书类别,avg(单价)from bookgroup by 图书类别having avg(单价) > 30; D: select 图书类别,avg(单价)from bookgroup by 图书类别where avg(单价) > 30;
查询book表中每类图书的平均单价,结果只显示平均单价大于30的图书类别名和平均单价,以下SQL语句正确的是? A: select 图书类别,avg(单价)from bookwhere 单价 >= avg(单价); B: select 图书类别,avg(单价)from bookgroup by 图书类别; C: select 图书类别,avg(单价)from bookgroup by 图书类别having avg(单价) > 30; D: select 图书类别,avg(单价)from bookgroup by 图书类别where avg(单价) > 30;
1