在SQL查询中,除了常见的LIKE子句外,还有其他实现模糊查询的方法:通过PATINDEX函数进行查询 select from table where patindex '%字符%' a > 0 或者使用CHARINDEX函数进行查询 select from table where charindex '字符' a > 0