
Fey::SQL::Except - Represents an EXCEPT operation

my $except = Fey::SQL->new_except;
$except->except(
Fey::SQL->new_select->select(...),
Fey::SQL->new_select->select(...),
Fey::SQL->new_select->select(...),
...
);
$except->order_by( $part_name, 'DESC' );
$except->limit(10);
print $except->sql($dbh);

This class represents an EXCEPT set operator.

See Fey::Role::SetOperation for all methods.


Hans Dieter Pearcey, <hdp.cpan.fey@weftsoar.net>

See Fey for details on how to report bugs.

Copyright 2009 Dave Rolsky, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.