SQL Statemen

shrinkl

New Member
Hello,
I am extremely new to PROGRESS, can someone
please tell me how something like this is done,

create TABLE variableTableName
(
a INTEGER,
b CHARACTER
)
.

so that the variable value of variableTableName is taken for the table name and not the value "variableTableName"?
Thanks in advance
 
In the 4GL you need to do this with 2 programs

Program 1.
Create table {1}
field <fieldname>

etc

Program 2.
run Program 1 (<varTableName>)

I would imagine that SQL has the same limitation
 
Top