Class OutputClause

java.lang.Object
net.sf.jsqlparser.statement.OutputClause
All Implemented Interfaces:
Serializable

public class OutputClause extends Object implements Serializable
T-SQL Output Clause
See Also:
  • OUTPUT Clause (Transact-SQL)
     <OUTPUT_CLAUSE> ::=
     {
         [ OUTPUT <dml_select_list> INTO { @table_variable | output_table } [ ( column_list ) ] ]
         [ OUTPUT <dml_select_list> ]
     }
     <dml_select_list> ::=
     { <column_name> | scalar_expression } [ [AS] column_alias_identifier ]
         [ ,...n ]
    
     <column_name> ::=
     { DELETED | INSERTED | from_table_name } . { * | column_name }
         | $action
          
  • Serialized Form