91-9990449935 0120-4256464 |
SQL DELETE TABLEThe DELETE statement is used to delete rows from a table. If you want to remove a specific row from a table you should use WHERE condition. But if you do not specify the WHERE condition it will remove all the rows from the table. There are some more terms similar to DELETE statement like as DROP statement and TRUNCATE statement but they are not exactly same there are some differences between them. Here we point out them? Difference between delete and truncate statementsThere is a slight difference b/w delete and truncate statement. The DELETE statement only deletes the rows from the table based on the condition defined by WHERE clause or delete all the rows from the table when condition is not specified. But it does not free the space containing by the table. The TRUNCATE statement: it is used to delete all the rows from the table and free the containing space. To delete all the rows from student table, the query should be like this: Difference b/w DROP and TRUNCATE statement:When you use the drop statement it deletes the table's row together with the table's definition so all the relationships of that table with other tables will no longer be valid. When you drop a table:
On the other hand when we TRUNCATE a table, the table structure remains the same, so you will not face any of the above problems.
Next TopicSQL Rename Table
|