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 / pandian.m
SELECT t1.EmpNAME FROM EMPLOYEE as t1
INNER JOIN SALARY as t2 ON t1.EmpID=t2.id
GROUP BY t1.EmpID HAVING t2.salary>10000
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is a persistent cookie in php?
What does $_ post mean in php?
What is the difference between get and post in php?
Can php use gettext?
Tell me how to get the value of current session id?
What is final class and final method in php?
Is php developer in demand?
How to convert one date format into another in php?
How many columns can be added in a table in mysql?
What is the sign to start variables in PHP?
Is c similar to php?
Tell me what is the main difference between require() and require_once()?
Is set in php?
Is PHP an open source software?
What is helper library?