Fey::SQL::Except - Represents an EXCEPT operation


Fey documentation Contained in the Fey distribution.

Index


Code Index:

NAME

Top

Fey::SQL::Except - Represents an EXCEPT operation

VERSION

Top

version 0.40

SYNOPSIS

Top

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

  print $except->sql($dbh);

DESCRIPTION

Top

This class represents an EXCEPT 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 Contained in the Fey distribution.

package Fey::SQL::Except;
BEGIN {
  $Fey::SQL::Except::VERSION = '0.40';
}

use strict;
use warnings;
use namespace::autoclean;

use Moose;

with 'Fey::Role::SetOperation' => { keyword => 'EXCEPT' };

with 'Fey::Role::SQL::Cloneable';

1;

# ABSTRACT: Represents an EXCEPT operation


__END__