Changes between Initial Version and Version 1 of Ticket #28692, comment 4


Ignore:
Timestamp:
Nov 18, 2017, 5:13:29 AM (6 years ago)
Author:
Tomer Chachamu

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.
     1I 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.
Back to Top