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 do you mean range() in php?
How does api connect to database?
What is php used for?
What are psrs?
What is php session and how it works?
Is it possible to protect special characters in a query string?
What are different types of runtime errors in php?
What is new static in php?
Explain briefly about a search-friendly site looks like?
Is empty java?
How check submit button is clicked in php?
Can we extend multiple classes in php?
What is the delimiter syntax is PHP's default delimiter syntax
What is slim framework?
What is the difference between md5(), crc32() and sha1() crypto on php?