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 / shahbaz
Try this one
this is the syntax....
SELECT EMPID, ENAME FROM EMPLOYEE INNER JOIN SALARY ON EMPID=ID AND SAL>600;
by kibria and shahbaz
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
How do you define a constant?
I am trying to assign a variable the value of 0123, but it keeps coming up with a different number, what is the problem?
How do I stop php artisan serve in windows?
Which framework is best for php?
Name some of the functions in php.
What is the function in PHP do not return a timestamp?
What is prepare in php?
Which php global variable is used for uploading a file?
What is config file in php?
What is session in PHP. How to remove data from a session?
What is an array in php?
Is php used in 2019?
How to get number of days between two given dates using PHP?
How can i execute PHP File using Command Line?
When sessions ends?