We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Function
Create Table
PRIMARY KEY (column_1, column_2, ...)
UNIQUE (column_1, column_2, ...)
CREATE TABLE CUSTOMER (C_ID INTEGER DEFAULT '0' NOT NULL)
Ref: #103
Create Index
CREATE UNIQUE INDEX u_index ON table(column_1, column_2, ...);
Alert Table
ALTER TABLE table ADD column_1 INTERGER;
ALTER TABLE table MODIFY column_1 INTERGER;
ALTER TABLE table CHANGE COLUMN column_1 column_2 INTERGER;
ALTER TABLE table DROP COLUMN column_1;
RENAME table TO table ;
Ref:
Desc
Desc Table
The text was updated successfully, but these errors were encountered:
KKould
Successfully merging a pull request may close this issue.
Feature Request
Function
Create Table
PRIMARY KEY (column_1, column_2, ...)
UNIQUE (column_1, column_2, ...)
CREATE TABLE CUSTOMER (C_ID INTEGER DEFAULT '0' NOT NULL)
Ref: #103
Create Index
CREATE UNIQUE INDEX u_index ON table(column_1, column_2, ...);
Alert Table
ALTER TABLE table ADD column_1 INTERGER;
ref: Alter table #104ALTER TABLE table MODIFY column_1 INTERGER;
ALTER TABLE table CHANGE COLUMN column_1 column_2 INTERGER;
ALTER TABLE table DROP COLUMN column_1;
ref: feat: support drop column #109RENAME table TO table ;
Ref:
Desc
Desc Table
: support desc table #102The text was updated successfully, but these errors were encountered: