we have two tables first one is EMPLOYEE
having EmpID, EmpNAME,
Second table is SALARY table
having id, salary
Write a query to get name of those person who having more
than 10000$ salary
Answer Posted / shahbaz
Try this one
this is the syntax....
SELECT EMPID, ENAME FROM EMPLOYEE INNER JOIN SALARY ON EMPID=ID AND SAL>600;
by kibria and shahbaz
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is the use of post in php?
Explain the difference between require() and require_once()?
What is self in php?
What is constructor and destructor?
Explain the difference between $message and $$message?
Why session is required?
What is empty php?
How do you define a constant?
Explain me what is the use of header() function in php?
Explain some of the php string functions?
What is difference between include and include_once in php?
What is the use of php and mysql?
What is regular expression in javascript?
Tell us how to create an array of a group of items inside an html form?
How can we submit from without a submit button?