删除 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
广告