BookStore数据库中有订单表Order(OrderCode,CustomerCode,TotalPrice,Address,OrderTime,OrderStatus)SELECTTOP3OrderCode,OrderTime,OrderStatusFROM[Order]语句中TOP3的含义是________。
BookStore数据库中有订单表Order(OrderCode,CustomerCode,TotalPrice,Address,OrderTime,OrderStatus)SELECTTOP3OrderCode,OrderTime,OrderStatusFROM[Order]语句中TOP3的含义是________。
A.前3个字段
B.前3条属性
C.前3个记录
D.前3个别名
正确答案:C
Tag:信息系统与数据库技术 别名 字段
时间:2021-03-08 16:01:50
- 上一篇:BookStore数据库中有出版社表Publisher(PublisherCode,Publisher,Telephone)在某SQL语句中,WHEREPublisherCodeIN('21','31')子句等价于________。
- 下一篇:BookStore数据库中有图书表Book(BookCode,BookName,Author,PublisherCode,PublishTime,BookSort,ISBN,BookPicture,ContentInro,Price,Discount),其中PublishTime是datetime类型。显示图书的最高价、最低价、平均价、最高价与最低价之间的差值。SQL语句:SELECTMAX(Price)As最高价,MIN(Price)As最低价,Str(AVG(Price),6,2)As平均价,____