SQL CREATE ALTER DROP TABLE: Difference between revisions
Jump to navigation
Jump to search
(→CREATE) |
|||
Line 9: | Line 9: | ||
( id smallint, | ( id smallint, | ||
name varchar(30) NOT NULL, | name varchar(30) NOT NULL, | ||
CONSTRAINT | CONSTRAINT person_pkey PRIMARY KEY (id) | ||
); | ); | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 19:38, 23 May 2024
Internal
Overview
CREATE
CREATE [TEMPORARY] TABLE person
( id smallint,
name varchar(30) NOT NULL,
CONSTRAINT person_pkey PRIMARY KEY (id)
);
If the TEMPORARY
keyword is used, the created table will be temporary instead of permanent.
ALTER
ALTER TABLE person [...]
Add/Remove a Column
ALTER TABLE person ADD COLUMN birthday DATE;
ALTER TABLE person DROP COLUMN birthday;
Add/Remove a Constraint
NOT NULL
ALTER TABLE sometable ALTER COLUMN somecolumn SET NOT NULL;
ALTER TABLE sometable ALTER COLUMN somecolumn DROP NOT NULL;
Primary Key
ALTER TABLE sometable ADD PRIMARY KEY (somecolumn) sometable_pkey;
The name of the primary key constraint is optional, and if not specified, it will be generated according to the <table_name>_pkey
pattern.
ALTER TABLE sometable DROP CONSTRAINT [IF EXISTS] constraint_name [RESTRICT|CASCADE];
DROP
DROP TABLE person [...]