Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

What is difference between base_url and site_url?

1070


What are the difference between overloading and overriding in oops?

1075


How do I make a reset button in html?

1082


How to enable error reporting in php?

1115


Why framework is used in php?

1035


What are php strings?

1034


What is constructors and destructors?

983


How can you encrypt password using php?

1098


What is T_PAAMAYIM_NEKUDOTAYIM?

1261


What advance thing in php7?

998


Write a program using while loop in php?

1058


Tell me are parent constructors called implicitly inside a class constructor?

991


if you run the app program all vendor open items are cleared but is it possible to reverse the again again open items please tell me the answer

1960


How to access standard error stream in PHP?

1209


How do you sort an array in php?

1025