Suppose we have a table name EMP as below. We want to
perform a operation in which, I want to change name ‘SMITH’
from as ‘SMITH JAIN’. Also I want to change the name of the
column from ENAME to E_NAME.
EMPNO ENAME JOB MGR HIREDATE SAL
7369 SMITH Coder 7902 17-DEC-80 800
7499 ALLEN SALESMAN 7698 20-FEB-81 1600
7521 WARD SALESMAN 7698 22-FEB-81 1250


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is string length in c?

0 Answers  


Explain what are linked list?

0 Answers  


int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?

5 Answers   CMC,


Can math operations be performed on a void pointer?

0 Answers  


what is diff between localstatic and globalstatis variable possible 2 use in another file...?

2 Answers   HCL,






a number is perfect if it is equal to the sum of its proper divisor.. 6 is perfect number coz its proper divisors are 1,2 and three.. and 1+2+3=6... a number is deficient if the sum of its proper divisor is less than the number.. sample: 8 is deficient, coz its proper divisors are 1,2 and 4, and 1+2+4=7. abundant number, if the sum of its proper divisor is greater than the number.. sample..12 is abundant coz 1+2+3+4+6=16 which is geater than 12. now write a program that prompts the user for a number, then determines whether the number is perfect,deficient and abundant..

1 Answers  


How do I create a directory? How do I remove a directory (and its contents)?

0 Answers  


Describe how arrays can be passed to a user defined function

0 Answers  


What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);

3 Answers   Bosch,


write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.

0 Answers   BirlaSoft,


what is the difference between procedure oriented and object oriented progaming language

1 Answers  


What is table lookup in c?

0 Answers  


Categories