T-SQL 复制表变量

发布于 2024-08-20 02:11:58 字数 434 浏览 5 评论 0原文

我正在尝试复制表变量:

DECLARE @lt_Sections TABLE
(
  teamId SMALLINT NOT NULL
)

DECLARE @lt_tempSections TABLE
(
  teamId SMALLINT NOT NULL
)

-- populate some values in @lt_Sections
-- take a copy of @lt_Sections

SET @lt_tempSections = @lt_Sections

这给了我一个错误:

Msg 137, Level 15, State 2, Line 14
Must declare the scalar variable "@lt_Sections".

我做错了什么?

谢谢, 标记

I'm trying to make a copy of a table variable:

DECLARE @lt_Sections TABLE
(
  teamId SMALLINT NOT NULL
)

DECLARE @lt_tempSections TABLE
(
  teamId SMALLINT NOT NULL
)

-- populate some values in @lt_Sections
-- take a copy of @lt_Sections

SET @lt_tempSections = @lt_Sections

This is giving me an error:

Msg 137, Level 15, State 2, Line 14
Must declare the scalar variable "@lt_Sections".

What have I done wrong??

Thanks,
Mark

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半寸时光 2024-08-27 02:11:58

Set(或 select)只能应用于标量变量,不能应用于表变量。

您应该使用插入而不是设置值

DECLARE @lt_Sections TABLE 
    ( 
      teamId SMALLINT NOT NULL 
    ) 

DECLARE @lt_tempSections TABLE 
( 
  teamId SMALLINT NOT NULL 
) 

insert @lt_TempSections(teamId)
select teamId from @lt_sections

Set (or select) can be applied only to a scalar variable not a Table variable.

Instead of setting values you should use Insert

DECLARE @lt_Sections TABLE 
    ( 
      teamId SMALLINT NOT NULL 
    ) 

DECLARE @lt_tempSections TABLE 
( 
  teamId SMALLINT NOT NULL 
) 

insert @lt_TempSections(teamId)
select teamId from @lt_sections
彻夜缠绵 2024-08-27 02:11:58

您不能像这样复制表变量(将它们更多地视为真实/临时表)。

你需要:

INSERT @lt_tempSections (teamId)
SELECT teamId FROM @lt_Sections

You can't copy table variables like this (think of them more as you would a real/temporary table).

You'd need to:

INSERT @lt_tempSections (teamId)
SELECT teamId FROM @lt_Sections
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文