MySQL中的比较条件、其他比较条件
2022/7/8 2:20:19
本文主要是介绍MySQL中的比较条件、其他比较条件,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
比较条件:
符号!=也能够表示不等于条件;
示例一:查询employees表中员工薪水大于等于3000的员工的姓名与薪水。
select last_name,salary from employees where salary>=3000;
示例二:查询employees表中员工薪水不等于5000的员工的姓名与薪水。
select last_name,salary from employees where salary <>5000;
其他比较条件:
使用between条件:
可以用between范围条件显示基于一个值范围的行。指定的范围包含一个下限和一个上限;
示例:查询employees表,薪水在3000-8000之间的雇员ID、名字与薪水;
select employee_id,last_name,salary from employees where salary between 3000 and 8000;
使用in条件:
示例:查询employees表,找出薪水是5000,6000,8000的雇员id,名字与薪水;
select employee_id,last_name,salary from employees where salary in (5000,6000,8000);
使用like条件:
示例:查询employees表中雇员名字第二个字母是e的雇员名字;
select last_name from employees where last_name like '_e%';
使用null条件:
null条件,包括is null条件和is not null条件;
is null条件用于控制测试。空值的意思是难以获得的、未指定的、未知的或者不适用的。因此,不能用=,因为null不能等于或者不等于任何值;
示例一:找出employees表中那些没有佣金的雇员ID、名字与佣金;
select employee_id,last_name,commission_pct from employees where commission_pct is null;
示例二:找出employees表中那些有佣金的雇员ID、名字与佣金;
select employee_id,last_name,commission_pct from employees where commission_pct is not null;
这篇关于MySQL中的比较条件、其他比较条件的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-04部署MySQL集群项目实战:新手入门教程
- 2024-11-04如何部署MySQL集群资料:新手入门指南
- 2024-11-02MySQL集群项目实战:新手入门指南
- 2024-11-02初学者指南:部署MySQL集群资料
- 2024-11-01部署MySQL集群教程:新手入门指南
- 2024-11-01如何部署MySQL集群:新手入门教程
- 2024-11-01部署MySQL集群学习:新手入门教程
- 2024-11-01部署MySQL集群入门:新手必读指南
- 2024-10-23BinLog入门:新手必读的MySQL二进制日志指南
- 2024-10-23Binlog入门:MySQL数据库的日志管理指南