Copying Data Between MySQL Tables with Custom Field Selection
In the realm of database management, efficiently transferring data between tables is a common task. MySQL provides several methods to accomplish this, including the INSERT INTO...SELECT statement.
Consider a scenario where you have two MySQL tables, Table 1 (the existing table) and Table 2 (the new table). You wish to selectively copy specific fields from Table 1 into Table 2, based on the following criteria:
Using MySQL Queries for Selective Data Copy:
To achieve your goal, you can employ the following MySQL query:
INSERT INTO table2 (st_id, uid, changed, status, assign_status) SELECT st_id, from_uid, now(), 'Pending', 'Assigned' FROM table1;
This query accomplishes the following:
Inserts data into Table 2, including the following columns:
Selects data from Table 1, matching the columns in the INSERT statement. Specifically, it selects:
If you wish to copy all rows from Table 1, you can omit the WHERE clause. However, if you want to limit the copy to a specific subset of rows, you can add a WHERE clause with the desired conditions.
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3