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 / saravanan p
Declare @eid int
Set @eid=2
select 'The manager for employee id '+convert(varchar
(50),e2.eid)+' is '+e1.ename from emp e1,emp e2
where e1.eid=e2.mid and e2.eid=@eid
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are triggers in ms sql server?
What are null values in ms sql server?
What is view in sql?
Suppose you want to implement the one-to-many relationships while designing tables. How would you do it?
How real and float literal values are rounded?
What are views used for?
Can You Use Data Mining Models In Ssrs?
Explain the dirty pages?
How can you stop stored procedures from recompiling?
What is a raid and what are different types of raid configurations?
Define the one-to-one relationship while designing tables.
How we can compare two database data?
What is normalization 1nf 2nf 3nf?
Can we insert data into view sql server?
Write query to return all rows sql?