what is difference between delete and truncet ?

Answer Posted / pooja

The DELETE statement is used to delete rows in a table.

Syntax:
DELETE FROM table_name
WHERE some_column=some_value

e.g.
DELETE FROM Persons
WHERE LastName='Tjessem' AND FirstName='Jakob'


Truncate:-
What if we only want to delete the data inside the table,
and not the table itself?

Then, use the TRUNCATE TABLE statement:

Syntax:
TRUNCATE TABLE table_name

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which database is best to store images?

742


What is a reference table in database?

738


What are the types of indexes that are present inside a database?

840


How does non-cluster index functions?

841


what is transaction state, buffer management, shadow paging

3112


What are the concurrency problems a database faces?

747


What is a trace file?

813


How heap is implemented in database?

852


Display the employees whose salary is less than average salary.

815


Give the syntax of exception handling used in DBMS?

813


What is the difference between primary key, foreign key and candidate key?

832


WHAT IS THE PURPOSE OF TESTING INTEGRITY OF THE UNIVERSE?

1997


Under which circumstance should you create an index on a table?

859


What is difference between data and database?

735


issues involved in modeling and building data werahouses

1724