News

TRUNCATE TABLE (Transact-SQL) [!INCLUDE sql-asdb-asdbmi-asa-pdw] Removes all rows from a table or specified partitions of a table, without logging the individual row deletions. TRUNCATE TABLE is ...
Sql truncate table using this statement you can remove all data of rows or column ( complete data ) not table. in this there is no where clause but where clause is available in delete statement.
--The TRUNCATE TABLE statement removes all the rows from a table more quickly than a DELETE. --Logically, TRUNCATE TABLE is similar to the DELETE statement with no WHERE clause.
Sql stands for structured query language. sql is a language which allow us to access data or modify data from the database. before proceeding towards the sql we should also know about database.