分数 20
全屏浏览题目
切换布局
作者 柯海丰
单位 浙大城市学院
在产品表(products)
中找出库存量(UnitsInStock)
小于订购量(UnitsOnOrder)
的产品的产品编号(ProductID)
和产品名称(ProductName)
提示:请使用SELECT语句作答。
表结构:
列名 | 数据类型 | 长度 | 主码 | 说明 |
---|---|---|---|---|
ProductID | int | 11 | √ | 产品编号 |
ProductName | varchar | 40 | 产品名称 | |
SupplierID | int | 11 | 供应商编号 | |
CategoryID | int | 11 | 种类编号 | |
QuantityPerUnit | varchar | 20 | 数量 | |
UnitPrice | decimal | 10,4 | 单价 | |
UnitsInStock | smallint | 2 | 库存数量 | |
UnitsOnOrder | smallint | 2 | 订购数量 | |
ReorderLevel | smallint | 2 | 再次订购量 | |
Discontinued | bit | 1 | 中止 |
表样例
products
表:
ProductID | ProductName | UnitsInStock | UnitsOnOrder |
---|---|---|---|
1 | Chai | 39 | 0 |
2 | Chang | 17 | 40 |
3 | Aniseed Syrup | 13 | 70 |
4 | Chef Anton's Cajun Seasoning | 53 | 0 |
5 | Chef Anton's Gumbo Mix | 0 | 0 |
6 | Grandma's Boysenberry Spread | 120 | 0 |
7 | Uncle Bob's Organic Dried Pears | 15 | 0 |
8 | Northwoods Cranberry Sauce | 6 | 0 |
9 | Mishi Kobe Niku | 29 | 0 |
10 | Ikura | 31 | 0 |
输出样例:
ProductID | ProductName |
---|---|
2 | Chang |
3 | Aniseed Syrup |
select ProductID,ProductName from products where UnitsInStock<UnitsOnOrder