~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/update.rst

  • Committer: Lee Bieber
  • Date: 2011-01-18 17:19:43 UTC
  • mfrom: (1994.4.43 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2095.
  • Revision ID: kalebral@gmail.com-20110118171943-nxx9rur1wp8f4na2
Merge Marisa - fix bug 684803: Need to update Drizzledump documentation with migration conversions / caveats
Merge Marisa - fix bug #686641: Need to document removal of multi-table update/delete from Drizzle

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
UPDATE TABLE_1 SET a="1" WHERE <condition>;
9
9
 
 
10
Multi-table delete and multi-table update code was removed from Drizzle.
 
11
 
 
12
Multi-update/delete can be accomplished through subqueries. For example: ::
 
13
 
 
14
        UPDATE tableX SET tableXfield = (SELECT MAX(tableY.tableYfield) FROM tableY WHERE tableX.tableXfield = tableY.tableYfield)
 
15
 
 
16
In other database frameworks, multi-update and multi-delete are used to change information in *one* table, but the rows to change are determined by using more than one table. In that case, subqueries work to address the issue of changing information in one table based on information in more than one table.
 
 
b'\\ No newline at end of file'