-
Notifications
You must be signed in to change notification settings - Fork 664
Alter Table
agershun edited this page Dec 28, 2014
·
3 revisions
ADD COLUMN
alasql('ALTER TABLE City ADD COLUMN Continent STRING');
RENAME COLUMN
alasql('ALTER TABLE City RENAME COLUMN Continent TO WorldPart');
DROP COLUMN
alasql('ALTER TABLE City DROP COLUMN Continent');
RENAME TO
alasql('ALTER TABLE City RENAME TO Capital');
© 2014-2024, Andrey Gershun & Mathias Rangel Wulff
Please help improve the documentation by opening a PR on the wiki repo