zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

[Postgres] Removing Data with SQL Delete, Truncate, and Drop

SQL and with Data delete drop Postgres truncate
2023-09-14 08:59:13 时间

Delete:

delete from Users where last_name = 'clark';

If you wanted to delete everything in our table, I mentioned you could just use the delete command without a condition.

 

However, using truncate is a more performant way to do so.

truncate Users;

Unlike the delete command, it doesn't scan over the entire table. We also have the ability to truncate more than one table with just one statement by listing the other tables with commas.

 

Finally, if we're trying to remove the table completely from our database, we use the drop command.

drop table Users;

Once we run this command, all of the data is deleted and we cannot query anything from this table.