/usr/man/cat.l/truncate.l.Z(/usr/man/cat.l/truncate.l.Z)
NAME
TRUNCATE - empty a table
SYNOPSIS
TRUNCATE [ TABLE ] name
DESCRIPTION
TRUNCATE quickly removes all rows from a table. It has the same effect
as an unqualified DELETE but since it does not actually scan the table
it is faster. This is most useful on large tables.
PARAMETERS
name The name (optionally schema-qualified) of the table to be trun-
cated.
NOTES
TRUNCATE cannot be used if there are foreign-key references to the ta-
ble from other tables. Checking validity in such cases would require
table scans, and the whole point is not to do one.
TRUNCATE will not run any user-defined ON DELETE triggers that might
exist for the table.
EXAMPLES
Truncate the table bigtable:
TRUNCATE TABLE bigtable;
COMPATIBILITY
There is no TRUNCATE command in the SQL standard.
SQL - Language Statements 2003-11-02 TRUNCATE(l)
Man(1) output converted with
man2html