home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / perf22.zip / SELECT.SQL < prev   
Text File  |  1992-08-26  |  208b  |  8 lines

  1. select a.au_lname, b.au_lname, b.address, c.zip from authors a, authors b, 
  2. authors c
  3. where a.state not in ('UT', 'TN') and
  4.       b.state not in ('UT', 'TN') and
  5.       c.state not in ('UT', 'TN')
  6. go
  7.  
  8.