判断SQL语句中是否包含中文、英文字符和数字

1、包含中文字符

select * from table(表名) where 列名 like ‘%[吖-座]%’ 

2、包含英文字符

select * from 表名 where 列名 like ‘%[a-z]%’ or like ‘%[A-Z]%’

3、包含纯数字

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

    原文作者:肉肉要次肉
    原文地址: https://www.jianshu.com/p/8996682c9d5d
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞