New Table |
SQL statements for the generation of new tables are executed quickly and easily with the function New Table (): |
New field | ||
Remove field | ||
Remove all fields | ||
Editor for appending/processing field types |
|
After confirmation of the dialogue with OK, here the following SQL statements are returned: CREATE TABLE customer( CustNo INTEGER NOT NULL, Company VARCHAR(30) NOT NULL, Addr1 VARCHAR(50) NOT NULL, Addr2 VARCHAR(50) NULL) ALTER TABLE customer ADD PRIMARY KEY (CustNo) CREATE INDEX idx_customer ON customer (Company,Addr1) |
<< Back |