Changes between Initial Version and Version 1 of Ticket #28900, comment 15


Ignore:
Timestamp:
Apr 20, 2024, 11:25:48 AM (2 weeks ago)
Author:
ontowhee

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28900, comment 15

    initial v1  
    1212Bar.objects.create(name='goodbye')
    1313
    14 qs = Foo.objects.all().union(Bar.objects.all())
     14qs = Foo.objects.all().union(Bar.objects.all()).values('name')
    1515print(qs)
    1616}}}
Back to Top