I'd like to do a query like:SELECT A.x, A.y FROM A WHERE NOT EXISTS (SELECT * FROM B WHERE B.x == A.x AND B.y == A.y)
See you at Scala Days 2013 in NYC!
June 10th - June 12th
www.scaladays.org
for {SELECT A.x, A.y FROM A WHERE NOT EXISTS (SELECT * FROM B WHERE B.x == A.x AND B.y == A.y)
a <- A if !B.filter(b => b.x === a.x && b.y === a.y).exists
} yield (a.x, a.y)
--
---
You received this message because you are subscribed to the Google Groups "Slick / ScalaQuery" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scalaquery+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/scalaquery/4c8b30a0-b80d-4f78-8192-5873e658457d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
---
You received this message because you are subscribed to the Google Groups "Slick / ScalaQuery" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scalaquery+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/scalaquery/27d90b68-f19b-47dd-80ff-2cf7ed8bbe5c%40googlegroups.com.