| Fey documentation | view source | Contained in the Fey distribution. |
Fey::SQL::Except - Represents an EXCEPT operation
version 0.40
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.
See Fey for details on how to report bugs.
Dave Rolsky <autarch@urth.org>
This software is Copyright (c) 2011 by Dave Rolsky.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
| Fey documentation | view source | Contained in the Fey distribution. |