◐
Neon Groove
SQL Playground
Live SQLite. Every run starts from a fresh copy — experiment fearlessly.
3.45.1
SQLite
SQL
Clear
Run
⌘/Ctrl
↵
SELECT ar.name AS artist, al.title AS album, g.name AS genre, al.released FROM albums al JOIN artists ar ON ar.id = al.artist_id LEFT JOIN genres g ON g.id = al.genre_id ORDER BY al.released;