Help for this page

Select Code to Download


  1. or download this
    select book_id from authors
    where
    ...
    select book_id from authors
    where
      author_name not in ('Smith','Jones');
    
  2. or download this
    select book_id from authors
    where
    ...
      )
    group by book_id
    having count(*)=2