SQL TRUNCATE TABLE Command
To Delete the complete data from the table we can use the TRUNCATE TABLE command. Up to some extent, it is similar to the DROP Table command but the difference is DROP TABLE delete the complete table include the table data whereas TRUNCATE command only delete the table data the table would still be there. SQL TRUNCATE TABLE Command… Read More »