table:employee
EID ENAME MID(manager ids)
101 rama null
102 sita 101
103 siva 101
104 ganesh 103
. . .
. . .
for 103 ID the manager ID is 101(RAMA) and for 104 manager
is SIVA
if i give employee id (EID) you have to tell the manager for
that EID write query?
eample:if i give 102 .The query output should be manager for
102 ID that it should print RAMA as output
Answer Posted / samba shiva reddy . m
select emp.ename from employee emp1
inner join employee emp
on emp1.mid=emp.eid
where emp1.eid=102
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is it’s similarity with sql server?
Explain about sql server login?
mention different types of relationships in the dbms?
Tell me what is the difference between locking and multi-versioning?
how you can list all the tables in a database?
How to loop through result set objects using mssql_fetch_array()?
Explain sql server authentication modes?
What is the most common type of join?
How to rename an existing column with sql server management studio?
If you want to send some data from access database to sql server database. What are different component of ssis will you use?
Equi join and non equi join is possible with sql server?
Detail about query optimizer?
What is mssql?
What is "scheduled jobs" or "scheduled tasks"?
What does the not null constraint do?