mirror of
https://github.com/janishutz/eth-summaries.git
synced 2026-07-27 15:24:37 +02:00
7 lines
158 B
SQL
7 lines
158 B
SQL
CREATE TABLE TableName (
|
|
Attribute integer,
|
|
OtherAttribute varchar (30),
|
|
NextAttribute character (2) default "AP",
|
|
PRIMARY KEY (Attribute)
|
|
);
|