1、字段包含中文

select * from table1 where 列名 like '%[吖-座]%'

2.字段包含英文字符

select * from table1 where 列名 like '%[a-z]%' 

3.字段包含纯数字

select * from table1 where 列名 like '%[0-9]%'

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-27
猜你喜欢
  • 2021-06-30
  • 2022-12-23
  • 2021-10-24
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案