php sql查询条件问题:如查询字段(a)条件值1,然后去匹配字段(a)中的值,值为 1,2,3

2024-11-22 09:38:28
推荐回答(3个)
回答1:

select * from 表名 where a like '%1%'用模糊查询就行,你说的这个意思不过是这个字段里含有你给的这个值罢了,1,2,3,里面含有1是这个意思吧

回答2:

select * from 表 where a like '%1%'

回答3:

select * from 表 where a=1