From: Matthias R. <mat...@so...> - 2006-07-05 22:21:01
|
I want to be able to select records from a table based on a list of ids I have been given. In SQL I would write SELECT ... FROM ... WHERE id IN (10,2,13,4,...) How do I do this in haskelldb? Looking at the haskelldb code and docs, it appears that the 'IN' operator isn't implemented - it's present in PrimQuery but nothing at the higher-levels produces it. Have I missed something? Is there perhaps a different way to construct these kinds of queries? Matthias |