Fey::SQL::Union - Represents a UNION operation


Fey documentation  | view source Contained in the Fey distribution.

Index


NAME

Top

Fey::SQL::Union - Represents a UNION operation

VERSION

Top

version 0.40

SYNOPSIS

Top

  my $union = Fey::SQL->new_union;

  $union->union( Fey::SQL->new_select->select(...),
                 Fey::SQL->new_select->select(...),
                 Fey::SQL->new_select->select(...),
                 ...
               );

  $union->order_by( $part_name, 'DESC' );
  $union->limit(10);

  print $union->sql($dbh);

DESCRIPTION

Top

This class represents a UNION set operator.

METHODS

Top

See Fey::Role::SetOperation for all methods.

ROLES

Top

* Fey::Role::SetOperation
* Fey::Role::SQL::Cloneable

BUGS

Top

See Fey for details on how to report bugs.

AUTHOR

Top

Dave Rolsky <autarch@urth.org>

COPYRIGHT AND LICENSE

Top


Fey documentation  | view source Contained in the Fey distribution.