Wondering if there is a way to insert a row into a table from another, with exception of one column?
This is of course easy with a limitied amount of columns, but gets k
You can use temporary tables
CREATE TEMPORARY TABLE temp_table AS (SELECT * FROM MyTable WHERE ...);
UPDATE temp_table SET column='Value' WHERE ...;
ALTER TABLE temp_table DROP column_name;
INSERT INTO MyDestinationTable SELECT * FROM temp_table;