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 many max. Record format a logical file have?
what is exception and how many types of exception
what is open data base command
1 Answers Active Brains, Cognizant, CSC, CTS,
what is error handling concepts in cl
how to update physical files using normal logical file
When u create a PF and did not fill up Maint parameter, then by default which access path will the system take & why
I had created one physical file tell me command to enter data in to?
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?
How can we handle errors in RPG?
What is the use of member in pf?
Q.1 how to implement the commitment control. 2.how to control commitment control from external program.
I have a PF with out any data but the dependent LF is having data?