标签: python django django-models django-queryset django-orm
我知道django行查询 - 很棒。 但是,有可能在Django ORM中制作吗?
例如对于SQL:
INSERT INTO table (extra_ident) VALUES (id);
答案 0 :(得分:0)
在Django中,您不需要使用“insert”来创建新条目,只需使用Table.objects.create(extra_ident=id)插入表格。
Table.objects.create(extra_ident=id)