Normal| SELECT * FROM tracks WHERE 1 ORDER by `Title`
Random sorted| SELECT * FROM tracks WHERE 1 ORDER by RANDOM()
#| lines started from #| is ignored
#|do not make empty lines!!!
#| so it's examples for you
#|Songs from 80's| SELECT * FROM tracks WHERE `year`>1980 and `year`<1990 ORDER by `year` asc | after second | text also ignored
#|ROCK| SELECT * FROM tracks WHERE `genre` like '%rock%' | select rock itself and and sub-genres like death-rock,punk rock, etc
#|Oldschool metall| SELECT * FROM tracks WHERE `genre` like '%metal%' and `year`<2000 and `year`>100 | all metal subgenres where year is set, and lower then 2000