5.36. PostgreSQL TRUNCATE TABLE

发布时间 :2025-10-25 12:30:48 UTC      

In PostgreSQL TRUNCATE TABLE Used to delete the data of the table, but not the table structure.

It can also be used DROP TABLE Delete the table, but this command deletes the structure of the table, and if you want to insert data, you need to recreate the table.

TRUNCATE TABLE Vs. DELETE It has the same effect, but because it doesn’t actually scan the table, it’s faster. In addition TRUNCATE TABLE Tablespaces can be freed immediately without the need for subsequent VACUUM Operation, which is very useful on large tables. The PostgreSQL VACUUM operation is used to free and reuse disk space occupied by update / delete rows.

5.36.1. Grammar

TRUNCATE TABLE The basic syntax is as follows:

TRUNCATE TABLE  table_name;

5.36.2. Example

Create COMPANY 表( 下载 COMPANY SQL 文件 ), the data are as follows:

runoobdb# select * from COMPANY;
 id | name  | age | address   | salary
----+-------+-----+-----------+--------
  1 | Paul  |  32 | California|  20000
  2 | Allen |  25 | Texas     |  15000
  3 | Teddy |  23 | Norway    |  20000
  4 | Mark  |  25 | Rich-Mond |  65000
  5 | David |  27 | Texas     |  85000
  6 | Kim   |  22 | South-Hall|  45000
  7 | James |  24 | Houston   |  10000
(7 rows)

The following example uses the TRUNCATE TABLE To clean up COMPANY Table:

runoobdb=# TRUNCATE TABLE COMPANY;

The results are as follows:

runoobdb=# SELECT * FROM CUSTOMERS;
 id | name | age | address | salary
----+------+-----+---------+--------
(0 rows)

Principles, Technologies, and Methods of Geographic Information Systems  102

In recent years, Geographic Information Systems (GIS) have undergone rapid development in both theoretical and practical dimensions. GIS has been widely applied for modeling and decision-making support across various fields such as urban management, regional planning, and environmental remediation, establishing geographic information as a vital component of the information era. The introduction of the “Digital Earth” concept has further accelerated the advancement of GIS, which serves as its technical foundation. Concurrently, scholars have been dedicated to theoretical research in areas like spatial cognition, spatial data uncertainty, and the formalization of spatial relationships. This reflects the dual nature of GIS as both an applied technology and an academic discipline, with the two aspects forming a mutually reinforcing cycle of progress.