You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- This script demonstrates the ability of tinySQL to do self-joins
-- It is assumed that you are connected to the music database directory
--
selecta.artst_name,b.artst_namefrom music_artists a,music_artists b where (UPPER(a.artst_name) like'THE%'andUPPER(b.artst_name) like'THE%') anda.artst_name>b.artst_name;