用SQL语句查询出年龄大于19且小于23的男学生信息
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用SQL语句查询出年龄大于19且小于23的男学生信息相关的知识,希望对你有一定的参考价值。
select * from student where age>19 and age<23 and sex='男' 参考技术A select * from student where age in (19,22); 参考技术B select * from student where age>19 and age<23 and sex="男"注:student为表名 参考技术C select * from student where age between 19 and 22
mysql where条件
还是先看一个表,了解一下where:
1.等于的例子 (查询年龄是22的学生)
2. 不等于的实例 (查询年龄不是22的)
3.大于的实例 (查询年龄大于22的)
4.大于等于的实例 (查询年龄大于22的)
5.小于的实例 (查询年龄小于22的)
6.小于等于的实例 (查询年龄小于22的)
7. 两个值之间取值案例(between value1 and value2)
8.模糊查询,like关键字,%任意数量的任意字符
9.模糊查询,like关键字,_一个任意字符
10.in关键字使用
代码提取链接:
https://pan.baidu.com/s/1b70ehS14NpHd1LYD0ocx_g
提取码:98af
以上是关于用SQL语句查询出年龄大于19且小于23的男学生信息的主要内容,如果未能解决你的问题,请参考以下文章