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
How does pointer work in c?
Why & is used in scanf in c?
Explain c preprocessor?
What is the use of linkage in c language?
Can we assign integer value to char in c?
If null and 0 are equivalent as null pointer constants, which should I use?
What is union in c?
how to capitalise first letter of each word in a given string?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
How can I get random integers in a certain range?
Do you know the difference between malloc() and calloc() function?
What is the significance of c program algorithms?
show how link list can be used to repersent the following polynomial i) 5x+2
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?