select title from titles, publishers where pub_id = (select pub_id from publishers where pub_name = "New Age Books")
select title from titles where title_id = (select title_id from titleauthor where aud_id = (select aud_id from authors where au_lname = "Blochet-Halls"))
select distinct stor_id, title_id from sales_detail where stor_id in (select stor_id from stores where state = "CA")
select title_id, price from titles where price > (select avg(price) from titles)