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
Explain what a database is?
fact table and dimension table containg one to many relationship or many to one relastionship
I HAVE A PI ON COL A THE NEXT DAY I WANT CHANGE THE PI ON COL B? PLS SEND ME THE ANS
Explain about post-relational databases?
How long can an error message be in raiseerror function?
What is data modeling with example?
What is the physical representation for a many-to-many relationship?
How would you design a database for an online site, which would average a million hits a day?
How to replace not in with not exist?
What you can do to remove data from the cache and query plans from memory for testing the performance of a query repeatedly?
How can you log an error to the server event log from a stored procedure?
How can you fix a poorly performing query?
Hi , any one can help me on the same,this is regarding the Informatica Function doc,i want to know how developer is will develop the mapping. pl forwar the any function doc .just for my references. svlc75@yahoo.co.in
explain detail about ftp in datastage?
Write short notes on manual refreshes.