-
-
16 Jun 2015 03:55:50 UTC
- Distribution: Fey
- Module version: 0.43
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues (6)
- Testers (893 / 4 / 0)
- Kwalitee
Bus factor: 1- 97.59% Coverage
- License: artistic_2
- Activity
24 month- Tools
- Download (88.18KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 5 contributors-
Aristotle Pagaltzis
-
hdp@glaive.weftsoar.net
-
hdp@localhost
-
hdp@rook.opensourcery.com
-
Oliver Charles
- Dependencies
- Carp
- Exception::Class
- Exporter
- List::AllUtils
- Moose
- Moose::Role
- Moose::Util::TypeConstraints
- MooseX::Params::Validate
- MooseX::Role::Parameterized
- MooseX::SemiAffordanceAccessor
- MooseX::StrictConstructor
- MooseX::Types
- MooseX::Types::Combine
- MooseX::Types::Moose
- Scalar::Util
- Task::Weaken
- Tie::IxHash
- base
- namespace::autoclean
- overload
- strict
- warnings
- Reverse dependencies
- CPAN Testers List
- Dependency graph
Take me over?
The maintainer of this distribution is looking for someone to take over! If you're interested then please contact them via email.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)
Module Install Instructions
To install Fey, copy and paste the appropriate command in to your terminal.
cpanm Fey
perl -MCPAN -e shell install Fey
For more information on module installation, please visit the detailed CPAN module installation guide.