Changes between Initial Version and Version 1 of Ticket #28616, comment 6
- Timestamp:
- Dec 9, 2022, 4:47:15 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28616, comment 6
initial v1 4 4 }}} 5 5 6 The Query.chain() changes the class of the current object to UpdateQuerywhich removes the previous query as a new object is created i.e6 The `Query.chain()` changes the class of the current object to `UpdateQuery` which removes the previous query as a new object is created i.e 7 7 {{{ 8 8 SELECT DISTINCT ON ("distinct_foo"."num") "distinct_foo"."id", "distinct_foo"."num", "distinct_foo"."date", "distinct_foo"."flag" FROM "distinct_foo" ORDER BY "distinct_foo"."num" ASC, "distinct_foo"."date" DESC