Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
参考我的上一个问题,有人在选择查询中说,如果我为表设置列数据值,它将不会在存储过程中更新表中的列值,对吗?
不,不是的。选择查询只会返回该值,不会更新表中的数据。
选择查询不能用于设置列值,您可以为此使用更新语句。但是您可以设置变量值,例如: declare @i int, @j int select @i=1, @j=2
declare @i int, @j int select @i=1, @j=2
所以它可以在那里工作,但不能在表格列上工作。