说明: SQL like子句的另一种实现方法 下面两种方法也可实现模糊查询: select from table where patindex "%字符%" a >0 select from table where charindex "字符" a >0 <wzmf2014> 上传 | 大小:390byte
说明: SQL农历万年历 txt 创建基础数据表 if object id "SolarData" is not null drop table SolarData go create table SolarData yearid int not null data char 7 not null dataint int not null <wzmf2014> 上传 | 大小:17kb