You attempt to query the data base with this command:
SELECT name, salary FROM employee WHERE salary=(SELECT
salary FROM employee WHERE last name='Wagner' OR dept no=233)
Choose most appropriate option from the following:
1)Sub-queries are not allowed in the where clause.
2)a multiple row sub-query used with a single row comparison
operator.
3)a single row query is used with a multiple row comparison
operator.
Answer Posted / r
option b is correct...
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
What is balance factor?
i am getting an of the type can not convert int to int *. to overcome this problem what we should do?
What is interface? When and where is it used?
Which method cannot be overridden?
What is a class oop?
What is polymorphism and example?
Get me an image implementation program.
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What type of loop is a for loop?
i=20;k=0;
for(j=1;k-i;k+=j<10?4:3)
{
cout< What is meant by multiple inheritance? What is the difference between static polymorphism and dynamic polymorphism? What is the full form of oops? What are classes oop? INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE
METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN
A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?