select title,type,pubdate,price,note,title_id,pub_name,au_fname,au_lname
from
(select title_id into #tmp
from  titleauthor
where titleauthor.au_id in(select au_id
from authors
where au_fname='Ringer'or au_lname='Ringer')) a,
//part 2nd
(select pub_name
from publishers
where pub_id in(
select pub_id
from titles
where titles.title_id in(select * from #tmp)))) b//part 3th
(select au_fname,au_lname
from authors
where au_id in (select * from #tmp))) c,//part 4th
(select title,type,pubdate,price,note
from titles
where title_id in (select * from #tmp)) d