SQL专题
文章目录
寻找大国可回收且低脂的产品寻找用户推荐人从不订购的客户游戏玩法分析I
寻找大国
OR条件判断
select name, population, area from world where area >= 3000000 or population >= 25000000;
可回收且低脂的产品
AND条件判断,字符串判断
select product_id from Products where low_fats = 'Y' and recyclable = 'Y';
寻找用户推荐人
要注意可能出现的NULL情况,以及用is而不是=来判断NULL
select name from customer where referee_id <> 2 or referee_id is NULL;
也可以把所有的null都转换为0
select name from cust
SQL专题最先出现在Python成神之路。
共有 0 条评论