home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a061 / 1.img / CLIENT2 / ACT07B.QRY < prev    next >
Encoding:
Text File  |  1992-02-21  |  482 b   |  18 lines

  1. /* NOTE:  SQL Administrator will not show the results of the
  2. * SELECT statement below until the UPDATE transaction is 
  3. * finished.  To see the results of the SELECT statement as
  4. * soon as they have returned to the client, use the System
  5. * Administration Facility (SAF) for this activity. */
  6.  
  7. select type, title 
  8. from titles
  9. where type = 'mod_cook'
  10. go
  11.  
  12. begin transaction
  13.     update titles
  14.     set type = 'pop_psych'
  15.     where type = 'psychology'
  16. commit transaction
  17.  
  18.