摘要:
如果直接写 select * from user where id <> 217;mybatis就会报语法错误,<>特殊字符需要转义 如下 select * from user where id <> 217; 使用Mybatis的时候,特殊字符需进行转义,如<> <>&am 阅读全文
摘要:
<if test="pd.flag==1 or ((pd.flag==2 or pd.flag==3) and (pd.sfyj==2 or pd.sfyj==3)) or pd.flag==3"> union all </if> <if test="pd.ssny != null and pd.s 阅读全文
摘要:
一 使用OBJECT_ID方式 IF OBJECT_ID('dbo.TableName') IS NOT NULLBEGINDROP TABLE dbo.TableNamePRINT '<<< DROPPED TABLE dbo.TableName>>>'END 二 查询sysobjects表 IF 阅读全文