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

2024年11月22日 09:38
有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