删除 SAP HANA 中的临时表


临时表是会话特定的。因此,你需要使用下列 truncate 而不是 delete

truncate table #temptable;

另外,你能否检查你的版本?在较新的版本中,delete 也能正常工作。这里有一个示例

Drop table #temptable;
Create local temporary table #temptable(id integer, str nvarchar(30));
Insert into #temptable values (1,'abc');
Insert into #temptable values (2,'xyz');
Select * from #temptable;  --> returns 3 rows
Delete from #temptable;
Select * from #temptable;--> returns 0 rows

更新时间:05-12-2019

750 次查看

启动您的 职业生涯

完成课程,获得认证

开始
广告