I'm using SQL scripts to create and alter tables in my DB
I want to know if it's possible to fill the description(lik e in the
Create table UI) using these scripts.
EX:
CREATE TABLE(
Pk_myPrimaryKey INTEGER CONSTRAINT pk PRIMARY KEY DESCRIPTION 'This
is the primary key of the table',
Field1 TEXT(50)
)
Thx
DoOmX
I want to know if it's possible to fill the description(lik e in the
Create table UI) using these scripts.
EX:
CREATE TABLE(
Pk_myPrimaryKey INTEGER CONSTRAINT pk PRIMARY KEY DESCRIPTION 'This
is the primary key of the table',
Field1 TEXT(50)
)
Thx
DoOmX
Comment