where条件查询的语法格式:
select * from 表名 where 条件
比较运算符查询:
查询编号大于8的学生: select * from students where id > 8;
查询编号小于等于4的学生: select * from students where id <= 4;
查询没被删除的学生: select * from students where delete=0逻辑运算符查询 :
查询年龄不在20岁到35岁之间的学生: select * from students where not (age >= 20 and age <= 35);
模糊查询 :
like是模糊查询关键字
%表示任意多个任意字符查询姓杨或张的学生: select * from students where name like '杨%' or name like '%靖张';
空判断查询:
判断为空使用: is null
判断非空使用: is not null
查询没有填写体重的学生: select * from students where weight is null;
MySQL where条件
代码真的养发2023-11-05 9:47
相关推荐
胡八一7 分钟前
SQLite / LiteDB 单文件数据库为何“清空表后仍占几 GB”?——原理解析与空间回收实战2401_831501731 小时前
Linux之Zabbix分布式监控篇(二)秋林辉2 小时前
Jfinal+SQLite处理 sqlite数据库执行FIND_IN_SET报错巴里巴气6 小时前
MongoDB复杂查询 聚合框架scheduleTTe8 小时前
SQL增查浮生带你学Java9 小时前
2025Java面试题及答案整理( 2025年 7 月最新版,持续更新)期待のcode9 小时前
图片上传实现小毛驴8509 小时前
redis 如何持久化吗喽15434518810 小时前
用python实现自动化布尔盲注