what is use of self join and which cases you will use this join
Answer / vidhya
A physical file can be joined to itself to read records that are formed by combining two or more records from the PF itself.
For example
You use a self join when a table references data in itself.
E.g., an Employee table may have a SupervisorID column that points to the employee that is the boss of the current employee.
To query the data and get information for both people in one row, you could self join like this:
select e1.EmployeeID,
e1.FirstName,
e1.LastName,
e1.SupervisorID,
e2.FirstName as SupervisorFirstName,
e2.LastName as SupervisorLastName
from Employee e1
left outer join Employee e2 on e1.SupervisorID = e2.EmployeeID
| Is This Answer Correct ? | 0 Yes | 0 No |
How to know the particular record in pf with out reading?
Last statement of any RPG pgm is LR?
can we concate fileds in physical file? If yes how can we do?
How to add a field to a PF and compile it without loss of data?
How to retrieve a physical file after deleting that?
how to eliminate the level check error
How to find the list of source physical files in a library?? Is there any way to get a list??
how to know total no of records in pf with out using sql??????
can any one pls tell me some differences between a LF and command OPNQRYF?
3 Answers Accenture, Cognizant, eFunds,
Suppose I have a pf, it contains 5 members, how to access particular member data from logical file? What is the use of member in pf?
In how many ways we can create a logical file?`
how to add a new field to a file without compiling it?