I have a table \"test\" with an auto incremented id and an arbitrary number of columns.
id
I want to make a copy of a row in this table with all columns th
This works in MySQL all versions and Amazon RDS Aurora:
INSERT INTO my_table SELECT 0,tmp.* FROM tmp;
or
Setting the index column to NULL and then doing the INSERT.
But not in MariaDB, I tested version 10.