|< < 23 > >|

Alternative join syntax

Yet another way to write the query

What are the titles of albums by The Detroit Cobras?
select title from artist join album using (artist_id) where name = 'The Detroit Cobras'

|< < 23 > >|