Content deleted Content added
Tag: Reverted |
Mindmatrix (talk | contribs) m Reverted edits by 146.196.36.184 (talk) to last version by Monkbot |
||
Line 92:
The ''TRUNCATE'' statement is used to delete all data from a table. It's much faster than ''DELETE''.
<syntaxhighlight lang="sql">
TRUNCATE TABLE table_name;
</syntaxhighlight>
|