It should. Please open a ticket and we will add it. On Monday, 14 January 2013 07:34:51 UTC-6, dederocks wrote: > > Hello, > > How do you translate the following in dal? > > delete tableA from tableA where TableA.field1='x' > join TableB on TableB.field2=TableA.field3 > WHERE (TableB.field3 = y) ? > > if you do db((tableA.field1=='x') & (tableA.field3==TableB.field2) & > (TableB.field3==y)).delete() it doesn't work -- too many tables selected. > I also tried db(query).delete(join =...), but in this case join is not > supported. Should it be the way to go? >
--