将数据复制到同一个表中或从同一个表中复制数据,并将一列中复制数据的值更改为Django中的指定值

时间:2013-10-08 05:25:23

标签: django django-queryset

可能是这个重复: Copy data to and from the same table and change the value of copied data in one column to a specified value

我想通过更改给定模型中的owner coloumn来将数据复制到一个表中并粘贴到同一个表中:

class Task(models.Model):

    description = models.CharField(max_length=128)
    owner = models.ForeignKey(User)
    category = models.ForeignKey(Category)

Django的做法是什么?

1 个答案:

答案 0 :(得分:1)

您只需重置pk字段,更新相应字段并保存对象。

task = Task.objects.get(id=1)
task.pk = None
task.owner = new_owner
task.save()

#task will create new object/row in the table