How does one get a list of the record IDs created or updated when an INSERT INTO with ON DUPLICATE KEY is used - within the very stored procedure that executes the INSERT?
For example, such an action could update records 5,23,91, and create 92,93,94,95.
ROW_COUNT() and LAST_INSERT_ID() isn't enough to do this, and I don't see a function available to MySQL that presents the same as mysql_affected_rows().
So how can I get a list of the row IDs that were added and updated with this scenario?
You may obtain needed data using user-defined variables and triggers.
Sample code:
fiddle