如何使用Django将元素插入字段

时间:2019-02-25 14:02:54

标签: python django python-3.x django-queryset searchqueryset

将变量插入django中的字段的最佳方法是什么,类似于将元素插入python中的列表的最佳方法。

我不是在尝试更新数据库中的记录字段“ first_name”,而是从数据库中共享相同姓氏的其他人“插入”或“添加”第二个“ first_name”。

例如:

First Name      Last Name
    Alan            Smith
    Eric            Jones
    Inna            Smith

结果:

First Name         Last Name
    Alan, Inna      Smith, Smith
    Eric            Jones

我正在使用PostgreSQL作为数据库。

任何帮助将不胜感激。谢谢。

2 个答案:

答案 0 :(得分:1)

这是我想出的。希望对您有所帮助。

select distinct id 
from table 
where id NOT IN (
  select distinct id from table where subid is null  
) 

答案 1 :(得分:0)

您可以尝试使用ArrayField link