sqlsqlitecopy

How do I copy data from one column to another in the same table?


In SQLite how do I copy data from one column to another in the same database table?


Solution

  • Try this:

    UPDATE tableName SET destinationField = sourceField