jguenther: Justin Guenther <jguenther@cpan.org>
+jshirley: J. Shirley <jshirley@gmail.com>
+
konobi: Scott McWhirter
LTJake: Brian Cassidy <bricas@cpan.org>
my $rs = $schema->resultset('Album')->search({
artist => { '!=', 'Janis Joplin' },
year => { '<' => 1980 },
- albumid => [ 1, 14, 15, 65, 43 ]
+ albumid => { '-in' => [ 1, 14, 15, 65, 43 ] }
});
This results in something like the following C<WHERE> clause: