我试过使用CTE和子查询,它们都给出了相同的错误“The target table Result of the task is not updatable”。我试过谷歌,但我没有找到有用的资源。
customers table
热膨胀系数代码
with Result as
(
select
*,
row_number() over(partition by id order by id) as RowNo
from
customers
)
delete from Result
where RowNo > 1;
字符串
子查询代码
delete Result
from (select *, row_number() over(partition by id order by id) as RowNo
from customers) Result
where Result.RowNo > 1;
型
2条答案
按热度按时间cetgtptt1#
图案:
字符串
或
型
此模式删除
ident_column
重复的行,只保存order_column
中具有最大值的行。tez616oj2#
字符串
这个应该能用