时间:2021-07-01 10:21:17 帮助过:4人阅读
当在首或尾使用可以相互替换,如果在头尾同时使用的话,那必须使用%
2)查询某字段中含有数字的----------------->‘%[0-9]%‘
select * from student where name like ‘%[0-9]%‘
3)字段中含有小写字母的------------------->‘%[a-z]%‘
select * from student where name like ‘%[a-z]%‘
4)字段中不含有数字的------------------->‘%[!0-9]%‘
select * from student where name like ‘%[!0-9]%‘
2、在sqlMap配置文件中,进行模糊查询时,需要进行的配置的是:
比如:订单id的查询:OrderId like ‘%‘ + #orderid:VARCHAR# + ‘%‘
sql Server20008总结
标签: