T-SQL Throw Exception

前端 未结 6 1351
孤独总比滥情好
孤独总比滥情好 2020-12-29 01:13

I am facing the famous \'Incorrect syntax\' while using a THROW statement in a T-SQL stored procedure. I have Googled it and checked the questions on StackOverf

6条回答
  •  情歌与酒
    2020-12-29 01:24

    This error can also occur if you incorrectly code this:

    RAISEERROR('your message here',16,1)
    

    I stared at that for four hours, putting semicolons all over the place, before I realized I'd misspelled "RAISERROR"

提交回复
热议问题