What is a self join? Explain it with an example?
Answer Posted / ramya
CREATE TABLE EMPLOYEE(
[EMPLOYEE_ID] INT PRIMARY KEY,
[NAME] NVARCHAR(50),
[MANAGER_ID] INT
)
INSERT INTO EMPLOYEE VALUES(101,'Mary',102)
INSERT INTO EMPLOYEE VALUES(102,'Ravi',NULL)
INSERT INTO EMPLOYEE VALUES(103,'Raj',102)
INSERT INTO EMPLOYEE VALUES(104,'Pete',103)
INSERT INTO EMPLOYEE VALUES(105,'Prasad',103)
INSERT INTO EMPLOYEE VALUES(106,'Ben',103)
select e1.employee_id,e1.name,e1.manager_id,e2.name from
employee e1 join employee e2
on e1.employee_id = e2.manager_id
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the constraints on severity level in raiseerror?
What are the key features of dbms?
How to customize error conditions.
fact table and dimension table containg one to many relationship or many to one relastionship
Any sample or model question of punjab national bank for deputy manger IT or any sample of PNB.any1 plz do send on
What are the three types of database design?
How can you log an error to the server event log from a stored procedure?
Which data type cannot be used as a parameter in a udf?
What is dbms explain in brief?
How to combine two function together?
What are the three basic rules which are to be followed for the relational model of the database?
There is a trigger defined for INSERT operations on a table, in an OLTP system. The trigger is written to instantiate a COM object and pass the newly insterted rows to it for some custom processing. What do you think of this implementation? Can this be implemented better?
Pgm A calls Pgm B and pgm B uses cursor, when pgm B is called second time, the program is abending saying the cursor is opened? Why?
Explain the role of indexing in databases?
Explain about the hierarchical model of the database?