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
Do you know what is raid and what are different types of raid configurations? : SQL Server Architecture
How to generate random numbers with the rand() function in ms sql server?
What is difference between primary key and foreign key?
What are the basic functions for master, msdb, model, tempdb and resource databases?
What is scheduled job and how to create it?
What is merge statement?
How to specify the collation for a character data type in ms sql server?
Do you know what is sql service broker?
How sql server executes a statement with nested subqueries?
What are cursors? Explain different types of cursors. What are the disadvantages of cursors? How can you avoid cursors?
What is multilevel indexing?
Explain cross join or cartesian product in sql?
What are the various Operating system files that every SQL server 2005 database has and what is the purpose.
What is field with example?
What is update locks?