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
this will also works for u change is id in inner join
select emp1.ename from employee emp1
inner join employee emp
on emp1.eid=emp.mid
where emp.eid=102
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you create type- insensitive operator?
What is the use of builtinadministrators group in sql server? : sql server security
How to create median function?
What do you mean by acid?
Where is my database stored on the hard disk in ms sql server?
What is ms sql server index?
Explain about system stored procedure?
List the different types of collation sensitivities in sql server?
Write a SQL command to insert and update only a particular field?
How can you check the version of sql server?
Explain about protocol layer present in SQL server?
Can we install sql server 2016 on windows 7?
How can we call UDF(User Define Function) using C# code in ASP.net ?
Why is sql server log file full?
What is the use of for clause?