I am working on the question, and after checking the answer posted by others on the internet, I can't understand why is there 'From albums a, artists ar' instead of 'From albums, artists'?
What does the 'a' and 'ar' stand for?
*I tried to correct my syntax, the original post is in the picture. After seeing your comments I know those are aliases, thanks a lot
select count(*) from (select *
from artists
left join albums
on artists.ArtistId=albums.ArtistId)
where Name="Led Zeppelin";
The question is:enter image description here