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 / srikanth
select emp.name,salary.salary from emp,salary where
emp.id=salary.id and salary.salary>=10000
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What is xss in php?
What is member variable?
Explain the difference between unlink() and unset()?
What is the special meaning of __sleep and __wakeup?
What is the main function of php?
Why many companies are switching their current business language to php? Where php basically used?
Write down the code for saving an uploaded file in PHP.
What is session cookies php?
What is form action php?
How to read a file in binary mode?
What are arguments in php?
Why do we use sessions in php?
What’s the special meaning of __sleep and __wakeup?
What is mysql in php?
How to break a file path name into parts?