1. Modify 1 column update student s, city c set s.city_name = c.name where s.city_code = c.code; 2. Modify multiple columns update a, b set a.title=b.title, a.name=b.name where a.id=b.id • Subqueries update student s set city_name = (select name from city where code = s.city_code); Oracle query reports this error: The database has multiple duplicate data according to your query conditions. For example: UPDATE "SYS_ROLE" A SET A ."DEPT_ID" = ( SELECT c."id" FROM "his_department_info" c WHERE c."dept_name" = A ."ROLE_NAME" If the above SQL statement reports the error "single-row subquery returns more than one row", it means that the data of the two fields "dept_name" in table C and "ROLE_NAME" in table A are repeated. Summarize The above is what I introduced to you on how to use the fields in one table in MySQL to update the fields in another table. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: Example of implementing the Graphql interface in Vue
>>: Detailed steps for Python script self-start and scheduled start under Linux
Table of contents Problem Description Scenario In...
This article briefly introduces how to install My...
In MySQL, we often use order by for sorting and l...
Today, I want to write about a "low-tech&quo...
2D transformations in CSS allow us to perform som...
Previous words Line-height, font-size, and vertica...
The implementation principle of Vue2.0/3.0 two-wa...
In cells, dark border colors can be defined indiv...
Prepare the ingredients as shown above (ps: hadoo...
CSS to achieve the image hovering mouse folding e...
There is a project developed on Mac, and the pack...
Customizing images using Dockerfile Image customi...
1: Differences in speed and loading methods The di...
1. To optimize the query, try to avoid full table...
Table of contents What is two-way data binding Im...