The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Fey::SQL::Intersect - Represents an INTERSECT operation

VERSION

version 0.43

SYNOPSIS

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

DESCRIPTION

This class represents an INTERSECT 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) 2011 - 2015 by Dave Rolsky.

This is free software, licensed under:

The Artistic License 2.0 (GPL Compatible)