From dae142cd67327ad58af01a62649ef7b5fac79e29 Mon Sep 17 00:00:00 2001 From: Doug Bell Date: Thu, 16 Apr 2009 07:51:22 +0000 Subject: [PATCH] added an example for clarity --- lib/WebGUI/Crud.pm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/WebGUI/Crud.pm b/lib/WebGUI/Crud.pm index 54c2163c4..c75268496 100644 --- a/lib/WebGUI/Crud.pm +++ b/lib/WebGUI/Crud.pm @@ -639,6 +639,10 @@ Here's an example of this structure: { "color=? or color=?" => ['blue','black'] }, ] +would yield + + ( price <= 44 ) AND ( color = 'blue' OR color = 'black' ) + =head4 join An array reference containing the tables you wish to join with this one, and the mechanisms to join them. Here's an example.