0 votes
in Sql by

Which of the following statement is true?

Select the correct answer from below options:

a) TRUNCATE free the table space while DELETE does not.

b) Both TRUNCATE and DELETE statements free the table's space.

c) Both TRUNCATE and DELETE statement does not free the table's space.

d) DELETE free the table space while TRUNCATE does not.

1 Answer

0 votes
by

a) TRUNCATE free the table space while DELETE does not.

The TRUNCATE statement in SQL removes all data from the table and free the table's space.

SQL's DELETE statement removes all data from the table but does not free the table's space.

Related questions

0 votes
asked Nov 6, 2021 in Sql by rajeshsharma
+1 vote
asked Jul 5, 2022 in Angular by sharadyadav1986
...