摘要:
--SQL Server中escape的使用方法:create table tabname (id int ,col varchar(20))insert into tabnameselect 1,'Hello' union allselect 2,'Hell' union allselect 3,'llo'--模糊查询select * from tabname where col like '%He%'--结果:----------------------------------------------------------- 阅读全文