NAME

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

SYNOPSIS

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);

DESCRIPTION

This class represents an EXCEPT set operator.

METHODS

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

ROLES

AUTHOR

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

BUGS

See Fey for details on how to report bugs.

COPYRIGHT & LICENSE

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.