I'm new to PL/SQL and trying to convert an SQL statement into the PL/SQL format. I have the SQL statement as:
SELECT StudentIDNumber
FROM Lease
INNER JOIN Invoice
ON Invoice.LeaseID = Lease.LeaseID
WHERE IsPaid = 'N';
How would I go about this? Any solutions would be greatly appreciated!