SQLiteQueryBuilder icon indicating copy to clipboard operation
SQLiteQueryBuilder copied to clipboard

Not possible to chain multiple join statements other than regular join

Open mattijsf opened this issue 9 years ago • 2 comments

I would like to be able to do the following:

.from("table1")
.leftOuterJoin("table2").on(...)
.leftOuterJoin("table3").on(...)
.where(...)

As far as I understand it is not possible to chain multiple left outer join statements after each other (or any other non-regular join). Any plans to add it?

mattijsf avatar Mar 15 '16 12:03 mattijsf

@mattijsf yes. because of the nature of this lib, features will be added on an as-needed basis so if you come across any missing features that you'd like to see, continue to open issues for them.

alexfu avatar Mar 15 '16 12:03 alexfu

See #53

monxalo avatar Oct 11 '16 15:10 monxalo