MySQL中in是什么意思

in常用于where表达式中,其作用是查询某个范围内的数据。

推荐:MySQL教程

基本语法:

select * from table where field in (value1,value2,value3,…)

使用示例:查询book表中id为2和4的所有数据:

有book数据表,内容如下:

20180716150021691.png

查询语句和查询结果见如下图示:

20180716150343812.png

补充:

not in与in作用相反,用法和示例如下:

用法:

select * from table where field not in (value1,value2,value3,…)

not in 示例:

20180716150842421.png

更多技术请关注云海天Python教程。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » MySQL中in是什么意思