Get name from two table whose salary greater than 15000 with department wise in sql

 SELECT Employees.name, Departments.department_name

FROM Employees

JOIN Departments ON Employees.department_id = Departments.department_id

WHERE Employees.salary > 15000;


No comments:

Post a Comment

Event listening in react

 How we can listen to som eevents some envents fire like click or automatically user enters into input button , that is event on word type i...