Some SQL Interview questions with answer
Q1. What is the difference between DELETE and TRUNCATE statements? DELETE TRUNCATE Delete command is used to delete a row in a table. Truncate is used to delete all the rows from a table. You can rollback data after using delete statement. You cannot rollback data. It is a DML command. It is a DDL command. It is slower…