SQL Server: Invalid Column Name

前端 未结 13 958
一个人的身影
一个人的身影 2020-12-22 23:49

I am working on modifying the existing SQL Server Stored Procedure. I added two new columns to the table and modified the stored procedure as well to select these two column

13条回答
  •  攒了一身酷
    2020-12-23 00:04

    There can be many things:
    First attempt, make a select of this field in its source table;
    Check the instance of the sql script window, you may be in a different instance;
    Check if your join is correct;
    Verify query ambiguity, maybe you are making a wrong table reference
    Of these checks, run the T-sql script again
    
    [Image of the script SQL][1]
      [1]: https://i.stack.imgur.com/r59ZY.png`enter code here
    

提交回复
热议问题