Changes between Initial Version and Version 1 of Ticket #28900, comment 15
- Timestamp:
- Apr 20, 2024, 11:25:48 AM (7 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28900, comment 15
initial v1 12 12 Bar.objects.create(name='goodbye') 13 13 14 qs = Foo.objects.all().union(Bar.objects.all()) 14 qs = Foo.objects.all().union(Bar.objects.all()).values('name') 15 15 print(qs) 16 16 }}}