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
Which is incorrect with respect to separating php code and html?
how to detect a mobile device using php
What is the use session in php?
What is singleton pattern in php?
What is the function used to change the root directory in PHP?
How to genrate report in wordpress cms
Why php was called as personal home page?
Is server side a session?
What does the scope of variables means?
What is move_uploaded_file in php?
What is the maximum size of a table in mysql?
What is the use of token in php?
How to set cookies?
What is env in laravel?
Explain what is the difference between session and cookie?