C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
ORACLE TRUNCATE TABLE statementIn Oracle, the truncate statement is used to remove all the records of a table. It works same as the delete statement but without using where clause. SyntaxTruncate table table_name; Example 1Table before truncate Table truncated Table after truncate
Next TopicWHERE
|