I have two tables with identical structure except for one column... Table 2 has that additional column in which i would insert the CURRENT_DATE()
I would like to cop
To refine the answer from Zed, and to answer your comment:
INSERT INTO dues_storage SELECT d.*, CURRENT_DATE() FROM dues d WHERE id = 5;
See T.J. Crowder's comment