How can I copy data from one column to another in the same table? September 23, 2022 by Tarik How about this UPDATE table SET columnB = columnA; This will update every row.