-and => [
user => 'nwiger',
-nest => [
- -and => [workhrs => {'>', 20}, geo => 'ASIA' ],
- -and => [workhrs => {'<', 50}, geo => 'EURO' ]
+ ["-and", workhrs => {'>', 20}, geo => 'ASIA' ],
+ ["-and", workhrs => {'<', 50}, geo => 'EURO' ]
],
],
);
This would create:
- $stmt = "WHERE ( date_column = date \'2008-09-30\' - ?::integer )"
+ $stmt = "WHERE ( date_column = date '2008-09-30' - ?::integer )"
@bind = ('10');
on some dark areas of C<SQL::Abstract> v1.*
B<might behave differently> in v1.50.
+The main changes are :
+
=over
=item *