| Fey documentation | Contained in the Fey distribution. |
Fey::SQL::Intersect - Represents an INTERSECT operation
version 0.40
my $intersect = Fey::SQL->new_intersect;
$intersect->intersect( Fey::SQL->new_select->select(...),
Fey::SQL->new_select->select(...),
Fey::SQL->new_select->select(...),
...
);
$intersect->order_by( $part_name, 'DESC' );
$intersect->limit(10);
print $intersect->sql($dbh);
This class represents an INTERSECT 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 | Contained in the Fey distribution. |
package Fey::SQL::Intersect; BEGIN { $Fey::SQL::Intersect::VERSION = '0.40'; } use strict; use warnings; use namespace::autoclean; use Moose; with 'Fey::Role::SetOperation' => { keyword => 'INTERSECT' }; with 'Fey::Role::SQL::Cloneable'; 1; # ABSTRACT: Represents an INTERSECT operation
__END__