且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

sql server存储过程中的语法错误

更新时间:2023-02-04 07:55:16

,'')))=''

这里有两个引号。

试试 ,'')))='


您好,

请检查以下查询,如果有帮助请告诉我。

Hi,
Please check the below query, and let me know if it helps.
SET @vQuery ='SELECT Child.gpmctc as gpmctc,Child.village as village ,Child.habitation as habitation,
 Child.cname as cname, Child.sex as sex,Child.dob as dob,Child.sch_code as sch_code,Child.class as class,
 Child.nereason as nereason,Child.droupout as droupout,Child.highclass as highclass
    FROM ' + @ChildTblName + ' As Child   
    WHERE  Child.distt = ' + @DistrictID + ' and   LTRIM(RTRIM(ISNULL(sch_code,'''')))='''' and  Child.block=' + @blockcode + ' and age>=6 and age<=14' 





谢谢,

Hitesh Varde



Thanks,
Hitesh Varde


尝试更换LTRIM(RTRIM(ISNULL) sch_code,'')))=''与LTRIM(RTRIM(ISNULL(sch_code,'''')))=''''
Try Replacing LTRIM(RTRIM(ISNULL(sch_code,'')))='' with LTRIM(RTRIM(ISNULL(sch_code,'''')))=''''