Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
How To Use Values from Other Tables in UPDATE Statements
How To Use Values from Other Tables in UPDATE Statements? - MySQL FAQs - Understanding SQL INSERT, UPDATE and DELETE Statements
✍: FYIcenter.com
If you want to update values in one table with values from another table, you can use a subquery as an expression in the SET clause. The subquery should return only one row for each row in the update table that matches the WHERE clause. The tutorial exercise below shows you a good example:
mysql> CREATE TABLE fyi_rates (id INTEGER, comment VARCHAR(16)); Query OK, 0 rows affected (0.53 sec) mysql> INSERT INTO fyi_rates VALUES (101, 'The best'); Query OK, 1 row affected (0.00 sec) mysql> INSERT INTO fyi_rates VALUES (102, 'Well done'); Query OK, 1 row affected (0.01 sec) mysql> INSERT INTO fyi_rates VALUES (103, 'Thumbs up'); Query OK, 1 row affected (0.00 sec) mysql> UPDATE fyi_links SET notes = ( SELECT comment FROM fyi_rates WHERE fyi_rates.id = fyi_links.id ) WHERE id > 0 AND id < 110; Query OK, 3 rows affected (0.50 sec) Rows matched: 3 Changed: 3 Warnings: 0 mysql> SELECT id, url, notes, counts FROM fyi_links WHERE id > 0 AND id < 110; +-----+-------------------+-----------+--------+ | id | url | notes | counts | +-----+-------------------+-----------+--------+ | 101 | dev.fyicenter.com | The best | 999 | | 102 | dba.fyicenter.com | Well done | 0 | | 103 | sqa.fyicenter.com | Thumbs up | NULL | +-----+-------------------+-----------+--------+ 3 rows in set (0.00 sec)
Note that if column names are confusing between the inner table and the outer table, you need to prefix column names with table names, like "fyi_rates.id = fyi_links.id".
2007-05-11, 4664👍, 0💬
Popular Posts:
What is COCOMO I, COCOMOII and COCOMOIII? In CD we have a complete free PDF tutorial of how to prepa...
How do I force the Dispose method to be called automatically, as clients can forget to call Dispose ...
What is CodeDom? “CodeDom” is an object model which represents actually a source code. It is designe...
How To Create Nested Tables? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells You can cr...
Where are all .NET Collection classes located ? System.Collection namespace has all the collection c...