SQL数据库中查询某一字段以汉字开头的记录

Sql代码 复制代码 收藏代码
  1. select * from tb_product where proname like N'[啊-座]%'

在Oracle试了一下,好像不行

2. select * from tb_product where asciistr(proname) like '\%'

这样到可以

你可能感兴趣的:(Sql,Sql)