Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

GNU/Linux

CentOS 2.1AS

(Slurm)

truncate(l)


TRUNCATE

TRUNCATE

NAME
SYNOPSIS
DESCRIPTION
USAGE
COMPATIBILITY

NAME

TRUNCATE − Empty a table

SYNOPSIS

TRUNCATE [ TABLE ] name

INPUTS

name

The name of the table to be truncated.

OUTPUTS
TRUNCATE

Message returned if the table is successfully truncated.

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 effective on large tables.

USAGE

Truncate the table bigtable:

TRUNCATE TABLE bigtable;

COMPATIBILITY

SQL92
There is no TRUNCATE in SQL92.



truncate(l)