8. OpenSQL Statements
:
DECLARE TABLE
:
Syntax
Share this page
Syntax
The DECLARE TABLE statement has the following format:
EXEC SQL DECLARE
table_name
TABLE
(
column_name data_type
[WITH NULL | NOT NULL]
{,
column_name data_type
})