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
How do you put a space in html?
What is a controller in programming?
Explain array_uintersect()?
Which function would you use to determine the length of a string in php?
What is a string in php?
How can you associate a variable with a session?
What is a comment in php?
Why do we use namespace in php?
Write a program using while loop?
Tell me how can we display information of a variable and readable by human with php?
What does the scope of variables means?
What is the use of super-global arrays in php?
What is the main difference between asp net and php?
Is overloading possible in php?
Do you know what does $globals means?