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
Why does everyone say not to use gets?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What is #define?
How to avoid structure padding in C?
program to get the remainder and quotant of given two numbers with out using % and / operators?
10 Answers College School Exams Tests, IBM,
What language is lisp written in?
What is meant by type casting?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
CAN WE DEFINE ANY FUNCTION WITHIN A FUNCTION.
Explain what is the most efficient way to store flag values?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }