SQL to determine whether to include Chinese characters, English characters, pure numbers in a column

First, it contains Chinese characters

select * from table where column name like '% [acridine - Block]%'

Second, it contains English characters

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

Third, contains pure digital

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

Guess you like

Origin www.cnblogs.com/charlie-brant/p/11996213.html