What is a self join? Explain it with an example?
Answer Posted / sanchit aggarwal(oracle dev.)
CREATE TABLE EMPLOYEE(
[EMPLOYEE_ID] INT PRIMARY KEY,
[NAME] NVARCHAR(50),
[MANAGER_ID] INT
)
GO
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.name from employee e1,employee e2
where e1.employee_id = e2.manager_id
| Is This Answer Correct ? | 31 Yes | 12 No |
Post New Answer View All Answers
Hi my program is accesing data from two db2 databases.what is the bind card for this program to genarate plan? how to specify the two owners and two qualifiers in bind card
How long can an error message be in raiseerror function?
Where is dbms used?
State the acid rules?
Explain about post-relational databases?
Explain about the database management systems.
How to replace not in with not exist?
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?
What are the key features of dbms?
How to read and create .LDC data files which are used by linguatic dictionary.
Explain the process of the user request and data generating?
What is database design and development?
Explain about the relational database?
In which table collections errors are stored.
What is DB Development software?