SQL_STMT VARCHAR2(200); --Intermediate SQL Statement for dynamic variables ADDS VARCHAR2(61); --Fully-qualified Adds table name DELS VARCHAR2(61); --Fully-qualified Delets table name ACNT NUMBER; ...
--# 1. Find the title and artist who recorded the song 'Alison'. --# 4. For each album show the title and the total number of track. SELECT title, COUNT(*) as total FROM album JOIN track ON ...