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
SELECT year FROM Artist, Album where Artist.name = 'Steppenwolf' and Artist.artist_id = Album.artist_id);
SELECT DISTINCT name, nationality
FROM Artist, Role
WHERE Artist.artist_id = Role.artist_id and lower(Role.role) = 'musician' and Extract( year FROM birthdate ) =( SELECT min(year) FROM Steppenwolf_Album_Years )