• 2022-06-07
    已知网上书城数据库中图书表的结构如下:图书(ISBN号,图书名,作者,出版社,价格),现要查询清华大学出版社出版的价格在10到30之间(含10与30)的图书的信息,则查询语句应该是()
    A: select * from 图书 where 价格 between 10 and 30 and 出版社=清华大学出版社
    B: select * from 图书 where 价格>=10 or 价格<=30 and出版社=清华大学出版社
    C: select * from 图书 where 价格>10 and 价格<30 and出版社=清华大学出版社
    D: select * from 图书 where 价格=[10.30] and 出版社=清华大学出版社