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
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Why doesnt that code work?
Do pointers need to be initialized?
How do I use strcmp?
What is the purpose of 'register' keyword?
Explain the difference between #include "..." And #include <...> In c?
Explain what are preprocessor directives?
Why do we need volatile in c?
How can you find the exact size of a data type in c?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What does main () mean in c?
What is the difference between formatted&unformatted i/o functions?
What are the application of c?
#include