insert当 sql语句里面有变量 为字符类型的时候 要3个单引号


set @InsertStr=‘INSERT INTO [dbo].[T_SchoolPercentMonth]([SchoolID],[MonthOfYear],[PercentNum]) VALUES(‘‘‘+cast(@SchoolID as nvarchar)+‘‘‘,‘‘‘+convert(char(7),getdate(),20) +‘‘‘,‘+cast(@PercentNum as nvarchar)+‘)‘;

 

引用字符 加一对单引号. ‘select * from tb where col=‘ + ‘abcd‘ + ‘ and true‘
字符如果是变量值,再加两对单引号. ‘select * from tb where col=‘‘‘+ @colval+‘‘‘ and true‘
如果字符是语句的结尾,加四个单引号.‘select * from tb where col=‘‘‘ +@colval+‘‘‘‘
如果引用的是数值,则只要加一对: ‘select * from tb where col=‘+ @intval +‘ and true‘
如果引用的数值,且为语句结尾,则后面的单引号也不要:‘select * from tb where col=‘ +@intval

  

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。