Here is the sql I have attempted
SELECT l.code AS Location_Code, l.description AS Location_Name, b.code AS Branch_Code, b.description AS Branch_Name FROM LOCATION l, branch b WHERE b.code = l.branchcode AND b.code = :p_Branch
got and identifier error
- Log in to post comments