home *** CD-ROM | disk | FTP | other *** search
- /* NOTE: SQL Administrator will not show the results of the
- * SELECT statement below until the UPDATE transaction is
- * finished. To see the results of the SELECT statement as
- * soon as they have returned to the client, use the System
- * Administration Facility (SAF) for this activity. */
-
- select type, title
- from titles
- where type = 'mod_cook'
- go
-
- begin transaction
- update titles
- set type = 'pop_psych'
- where type = 'psychology'
- commit transaction
-
-