What's the difference between DELETE TABLE and TRUNCATE TABLE
commands?
Answer Posted / kalyan
truncate table means structure of table cannot deleted but
it deletes the data in the table. And Delete command deletes
the entire table with data.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the different types of control structures?
What is return in c programming?
What are the 5 types of organizational structures?
How to throw some light on the b tree?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
How was c created?
What is a macro in c preprocessor?
Difference between Function to pointer and pointer to function
Explain what is the difference between functions abs() and fabs()?
How macro execution is faster than function ?
What is the use of in c?
How are Structure passing and returning implemented by the complier?
What is the symbol indicated the c-preprocessor?
What is the advantage of using #define to declare a constant?
code for quick sort?