What's the difference between DELETE TABLE and TRUNCATE TABLE
commands?
Answer Posted / naveen reddy
delete table deletes entire table if we want to delete or else we can delete specific column or row.
if we wish to simply get rid of the data but not the table itself? For this, we can use the TRUNCATE TABLE command. The syntax for TRUNCATE TABLE is
TRUNCATE TABLE "table_name"
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Why do we use null pointer?
Does c have class?
What does the error message "DGROUP exceeds 64K" mean?
Define VARIABLE?
how is the examination pattern?
What is operator promotion?
what is different between auto and local static? why should we use local static?
Write a program to check prime number in c programming?
What is wrong with this program statement? void = 10;
write a program fibonacci series and palindrome program in c
Explain the difference between ++u and u++?
When is a “switch” statement preferable over an “if” statement?
What is the difference between union and anonymous union?
What are the features of c language?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if