Write a query to display the name, job title and salary of employee who don't have manager....#SQL (computer science)
Answers
Answered by
112
SQL:-
It stands for structured query language developed in 1970s in an IBM laboratory. 4th generation non procedural language.
Database:-
It is a data structure that stores organized information. Most database contain multiple tables, which may include several different fields. By storing data can be easily searched, stored and updated.
Answered by
43
Write a query to display the name, job title and salary of employee who don't have manager ?
ANSwEr :
》Select Name, Job title, Salary from Employee,
Where ( NOT Manager = ' ')
Similar questions