Continuing SQL Requests and BTEQ | Basic Teradata Query - Continuing SQL - Basic Teradata Query

Basic Teradata® Query Reference

Product
Basic Teradata Query
Release Number
17.10
Published
February 2022
Language
English (United States)
Last Update
2022-02-03
dita:mapPath
nnw1608578382132.ditamap
dita:ditavalPath
obe1474387269547.ditaval
dita:id
B035-2414
lifecycle
previous
Product Category
Teradata Tools and Utilities

An SQL request is automatically continued from one line to the next unless the line ends in a semicolon.

However, the following conditions are excluded:

Exceptions for Using Terminating Characters within SQL Requests Example Example
Semicolon embedded within a comment.
exec /* exec macro current; 
*/macro xyz;
Semicolon embedded in an unsatisfied left parenthesis, single-quote or double-quote pair.
create macro xyz as 
(select * from dbc.tables;  
);

create macro xyz as 
(select ‘abcd; 
efgh’;  
);

When an SQL request is continued from one line to the next, BTEQ translates the line-feed characters at the end of the multi-line SQL requests to carriage-return characters. However, in case of a line-feed appearing inside a quoted string in the request, the line-feed characters are retained as is.