diff options
Diffstat (limited to 'src/Statements/SelectStatement.php')
-rw-r--r-- | src/Statements/SelectStatement.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Statements/SelectStatement.php b/src/Statements/SelectStatement.php index 50ce281..d8c9baa 100644 --- a/src/Statements/SelectStatement.php +++ b/src/Statements/SelectStatement.php @@ -127,6 +127,20 @@ class SelectStatement extends Statement public $limit; /** + * Procedure that should process the data in the result set. + * + * @var CallKeyword + */ + public $procedure; + + /** + * Destination of this result set. + * + * @var IntoKeyword + */ + public $into; + + /** * Joins. * * @var JoinKeyword |