(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就是三好学生什么的那个字段,名称自己换一下
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)