Differentiate b/w Modify and Update commands giving example.
Answer / ananth kumar
1.update comand is to make changes to the record in the
table
2.modify command is used to add,modify,drop a column in a
table
| Is This Answer Correct ? | 3 Yes | 1 No |
Is c programming hard?
When is a void pointer used?
What are the loops in c?
can we change the default calling convention in c if yes than how.........?
Difference between Shallow copy and Deep copy?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
Difference between pass by reference and pass by value?
How can I automatically locate a programs configuration files in the same directory as the executable?
second highest number in a given set of numbers
What does 4d mean in c?
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20