postgresqlHow do I truncate a table in PostgreSQL?
To truncate a table in PostgreSQL, you can use the TRUNCATE command. This command removes all rows from the table quickly and efficiently.
Example code
TRUNCATE TABLE my_table;
The code above will remove all rows from the table my_table. No output will be returned.
The TRUNCATE command has the following parts:
TRUNCATE- the command to truncate a tableTABLE- specifies that you are truncating a tablemy_table- the name of the table you are truncating
For more information, please see the PostgreSQL documentation.
More of Postgresql
- How do I use PostgreSQL's XMLTABLE to parse XML data?
- How can I retrieve data from PostgreSQL for yesterday's date?
- How do I use PostgreSQL's XMIN and XMAX features?
- How do I use the PostgreSQL quote_ident function?
- How do I round a number in PostgreSQL?
- How do I use the PostgreSQL NVL function?
- How do I use PostgreSQL with Qt?
- How can I use PostgreSQL XOR to compare two values?
- How do I use the WITH statement in PostgreSQL?
- How can I decide between PostgreSQL and MySQL for my software development project?
See more codes...