NAME
Fey::SQL::Except - Represents an EXCEPT operation
VERSION
version 0.38
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);
$except
->sql(
$dbh
);
DESCRIPTION
This class represents an EXCEPT set operator.
METHODS
See Fey::Role::SetOperation for all methods.
ROLES
BUGS
See Fey for details on how to report bugs.
AUTHOR
Dave Rolsky <autarch@urth.org>
COPYRIGHT AND LICENSE
This software is Copyright (c) 2010 by Dave Rolsky.
This is free software, licensed under:
The Artistic License 2.0