home *** CD-ROM | disk | FTP | other *** search
- create proc pub_info
- @pubname varchar(40) = 'Algodata Infosystems'
- as
- select au_lname, au_fname, pub_name
- from authors a, publishers p, titles t, titleauthor ta
- where @pubname = p.pub_name
- and a.au_id = ta.au_id
- and t.title_id = ta.title_id
- and t.pub_id = p.pub_id
-