mysql学习打卡day2

2024-01-03 04:15:48

今日成果:

select * from customers where state = 'va';
select * from customers where state = 'VA';
-- sql不区分大小写

select * from customers where state != 'va';
select * from customers where state <> 'va';
-- !=和<>都代表不等于

select * from customers where birth_date >= '1990-01-01';
-- 出生日期大于等于1990年1月1日的顾客?

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