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.
重要提示:对于。exp。我在 SQL Server 数据库中有 a、b 和 c 列,我想在 SQL 代码中插入这 3 个值,所以,
我想将 a、b 和多个现有的 a 和 b 字段插入为 c
如何使用存储过程执行此操作?
@c根本看不到变量的任何原因。
@c
CREATE PROCEDURE dbo.MultiplY @a INT, @b INT AS BEGIN SET NOCOUNT ON; INSERT dbo.table(a,b,c) SELECT @a, @b, @a * @b; END GO