- or download this
select * from mytable where id=1
- or download this
select * from mytable where id in (select id from table2)
- or download this
select * from album where artist in (search artistId in artists where
+year = 1990)
- or download this
select album.* from album a, artists b where a.artist = b.artistId and
+ b.year = 1990