Help for this page

Select Code to Download


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