The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use MooseX::Declare;

class TSQL::AST::SQLSetAssignment extends TSQL::AST::SQLStatement {

use TSQL::AST::SQLIdentifier;

has 'targetVariable' => (
      is  => 'rw',
      isa => 'TSQL::AST::SQLIdentifier',
  );


}


1;