Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个数据库,我从中提取行,稍微操作数据,然后放入另一个表中。每次我运行包时,它都不会从目标中删除任何数据,因此每次都会增加 X 行。
有什么方法可以在添加新行之前清除目的地?
您可以运行 truncate 语句来清除表中的所有记录。
TRUNCATE TABLE YourTableName