<into_clause> | ::= | INTO <into_entity> |
The INTO clause is used to specify the output format target(s) to which the query output records are to be written.
'C:\Program Files\file3.txt'
< > ( ) [ ] { }The following examples show valid into-entities containing parenthesys characters:
entity<value> entity[value]valueThe following examples show invalid into-entities containing parenthesys characters:
entity>value< entity}value entity(value
C:\Program\u0020Files\file3.txt
tab carriage-return line-feed , ( ) " < >
A. Explicit <into_entity>
The following example query specifies an explicit target CSV file for the CSV output format:SELECT * INTO MyOutput.csv FROM SystemB. Implicit <into_entity>
The following example query uses an implicit STDOUT target for the NAT output format:SELECT * FROM SystemC. Explicit <into_entity>
The following example query specifies an explicit STDOUT target for the NAT output format:SELECT * INTO STDOUT FROM System
Basics of a Query
Output Formats Reference
© 2004 Microsoft Corporation. All rights reserved.