home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_09 / 2n09059b < prev    next >
Text File  |  1991-08-01  |  242b  |  9 lines

  1.  
  2. DELETE FROM MailList
  3. WHERE EXISTS (SELECT *
  4.                 FROM UpdateList
  5.                WHERE action IN ("D", "B")
  6.                  AND UpdateList.reg# = MailList.reg#
  7.                  AND UpdateList.outlet# = MailList.outlet#);
  8.  
  9.