SQL中怎么查询一个字段是否包含某个数字字符1,11

2024-11-23 11:13:51
推荐回答(1个)
回答1:

select *
from tableName
where columnName like '%11%' or columnName like '%1%'