I want to run an sql query and find all the books that have type="adventure" AND type="drama".
AND does not allow searching at the same time 2 different values of the same column.
My tables are like this
Books
 Bid    Bname     Author
  1     Sql       loren
  2     Monster   Mike
  3     Minnie    Michel
 ----------
 Copies
 Cid     Bid    Type
 1        1     Science
 2        1     Teaching
 3        2     Adventure
 4        3     Romance
 5        3     Drama
 6        3     Adventure
The result I want:
Bid     Title
 3      Minnie
The tables can't change
 
     
    