我有products table
作为 product_id int 类型的主键约束
具有非空约束的产品名称 varchar
示例数据如下
1. 100, 'Nokia'
2. 200, 'IPhone'
3. 300, 'Samsung'
4. 400, 'LG'
我sales table
有
具有 int 类型的 SALE_ID,
产品表的 int 类型引用的 PRODUCT_ID(外键)
带有 int 类型的年份
int 类型的数量
PRICE int 类型检查价格 > 0
示例数据如下
1, 100, 2010, 25, 5000
2, 100, 2011, 16, 5000
3, 100, 2012, 8, 5000
4, 200, 2010, 10, 9000
5, 200, 2011, 15, 9000
6, 200, 2012, 20, 9000
7, 300, 2010, 20, 7000
8, 300, 2011, 18, 7000
9, 300, 2012, 20, 7000
查询 如何查找未售出的产品?