SQL Server Interview questions
SQL Server Interview questions 1- Similarity between Truncate and Delete in SQL These both command will only delete data of the specified table, they cannot remove the whole table data structure. 2- Difference between Truncate and Delete in SQL TRUNCATE is a DDL (data definition language) command whereas DELETE is a DML (data manipulation language)…