Collections:
Error: Subquery Returns More than 1 Row in MySQL
What Happens If the UPDATE Subquery Returns Multiple Rows in MySQL?
✍: FYIcenter.com
If a subquery is used in a UPDATE statement, it must return exactly one row for each row in the update table that matches the WHERE clause. If it returns multiple rows, MySQL server will give you an error message. To test this out, you can try the following tutorial exercise:
mysql> INSERT INTO fyi_rates VALUES (0, 'Number 1');
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO fyi_rates VALUES (0, 'Number 2');
Query OK, 1 row affected (0.00 sec)
mysql> SELECT * FROM fyi_rates WHERE id = 0;
+------+----------+
| id | comment |
+------+----------+
| 0 | Number 1 |
| 0 | Number 2 |
+------+----------+
2 rows in set (0.00 sec)
mysql> UPDATE fyi_links SET notes = (
SELECT comment FROM fyi_rates
WHERE fyi_rates.id = fyi_links.id
)
WHERE id = 0;
ERROR 1242 (21000): Subquery returns more than 1 row
⇒ Deleting an Existing Row from a Table in MySQL
⇐ UPDATE with Subquery Returning No Rows in MySQL
2018-01-08, 8410🔥, 0💬
Popular Posts:
How To Create a Dynamic Cursor with the DYNAMIC Option in SQL Server Transact-SQL? If the underlying...
How To Round a Numeric Value To a Specific Precision in SQL Server Transact-SQL? Sometimes you need ...
How To Convert Character Strings into Numeric Values in SQL Server Transact-SQL? Sometimes you need ...
How To Get Year, Month and Day Out of DATETIME Values in SQL Server Transact-SQL? You can use DATEPA...
Where to find answers to frequently asked questions on Downloading and Installing SQL Server 2005 Ex...