In SQLite how to copy data from one column to another column in same database table?
在SQLite中如何将数据从一列复制到同一数据库表中的另一列?
1 个解决方案
#1
35
Try this:
尝试这个:
update tableName set destinationField = sourceField;
update tableName set destinationField = sourceField;
#1
35
Try this:
尝试这个:
update tableName set destinationField = sourceField;
update tableName set destinationField = sourceField;