In SQLite how do I copy data from one column to another column in the same table? September 10, 2023 by Tarik Try this: UPDATE tableName SET destinationField = sourceField