mysql学习打卡day3

发布时间:2024年01月05日

由于昨晚停电了,休息一晚。

今日成果:

select * from customers?
where state = 'va' or points > 1000;
-- or代表 或条件,满足其中一个条件就可以

select * from customers
where state != 'va' and points <= 1000;
select * from customers
where not (state = 'va' or points > 1000);
-- not表示不在指定条件的结果集?

select * from order_items where order_id = 6 and quantity * unit_price > 30;
-- and 表示且条件,需要条件同时满足?

文章来源:https://blog.csdn.net/qq_36729037/article/details/135397918
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。