SQL中判断汉字的存在

SQL中判断汉字的存在:

select * from Account where len(AccountId)<>DATALENGTH(AccountId)

select * from Account where AccountId like '%[吖-座]%'

 

今天还发现了一个方法:

 

select * from Account where AccountId>'zzzzzzzzzz'

你可能感兴趣的:(SQL中判断汉字的存在)