Parameter '@myLeft' must be defined

后端 未结 4 1727
南方客
南方客 2020-12-17 14:47

My question is quite similar to already answered ones but yet not. I\'d like some help sorting this out.

I\'m trying to add data to a database table but I get keepin

4条回答
  •  一生所求
    2020-12-17 15:26

    Before using @myLeft, you need to declare it. For example, assuming @myLeft is an INT:

    DECLARE @myLeft INT;
    

提交回复
热议问题