Changes between Initial Version and Version 1 of Ticket #28692, comment 4
- Timestamp:
- Nov 18, 2017, 5:13:29 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28692, comment 4
initial v1 1 I think it will be impossible to implement on backends other than postgres, as you would want to do {{{SELECT b.* FROM modela JOIN modelb ON modela.b_id = modelb.id WHERE modela.id IN (...)}}}, however the value of {{{(...)}}} is only available in postgres.1 I think it will be impossible to implement on backends other than postgres, as you would want to do {{{SELECT modela.id, modelb.* FROM modela JOIN modelb ON modela.b_id = modelb.id WHERE modela.id IN (...)}}}, however the value of {{{(...)}}} is only available in postgres.