gpt4 book ai didi

sql - 临时表删除行

转载 作者:行者123 更新时间:2023-12-04 20:16:49 25 4
gpt4 key购买 nike

为什么我不能从临时表中删除行?

DECLARE @tbl2 TABLE
(
Id int,
ImieNazwisko varchar(200),
Pesel varchar(200),
Kod varchar(200)
)

DELETE FROM @tbl2 tblT WHERE tblT
SELECT * FROM @tbl2

这也不起作用:
DELETE FROM @tbl2 WHERE @tbl2.Id

最佳答案

您可以从临时表中删除。只是您的语法似乎有误。
试试这个:

--drop table #temptable 
create table #temptable (Id int)
insert into #temptable
select 1 union
select 2 union
select 3

delete from #temptable
where Id =2

select Id from #temptable

关于sql - 临时表删除行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16457744/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com