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
What does the file stdio.h contain?
What is sizeof array in c?
who will call your main function in c under linux?
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
Write a C/C++ program that connects to a MySQL server and displays the global TIMEZONE.
What is the explanation for the dangling pointer in c?
What is the stack in c?
What is the use of ?
#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }
What is the use of a semicolon (;) at the end of every program statement?
what is the stackpointer
Differentiate between full, complete & perfect binary trees.