mysql 根据两个字段的数据查询 (使用in)

mysql 根据两个字段的数据查询 (使用in),第1张

SELECT * FROM table_name WHERE

(ip_address,port_name) IN

(('ip_address数据1',port_name数据1'),('ip_address数据2',port_name数据2'))

LIMIT 0,999999

1、创建mysql测试表,create table test_city(cityid varchar(20))

2、插入测试数据,

insert into test_city values(1)

insert into test_city values('1,2,3')

insert into test_city values('1,2,3,4')

insert into test_city values(2)

insert into test_city values(3)

3、编写sql,查询cityid为3的记录,

select * from test_city where cityid in ('1','2','3','4','5','6')

4、编写sql,查询cityid为'1,2,3'的记录,

select * from test_city where cityid in ('1,2,3')

1

select 姓名 from 表名 where 字段2 in ('三好学生','进步学生') group by 姓名 having count(distinct 字段2)=2

字段2就是三好学生什么的那个字段,名称自己换一下


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7451741.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-05
下一篇 2023-04-05

发表评论

登录后才能评论

评论列表(0条)

保存