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
Summary
Now
ALTER TABLE [ IF EXISTS ] [ <database_name>. ]<table_name> MODIFY [ COLUMN ] <column_name> <new_data_type> [ DEFAULT <constant_value> ][, COLUMN <column_name> <new_data_type> [ DEFAULT <constant_value> ], ... ] alter table T modify c1 varchar, column c2 varchar;
improve
ALTER TABLE [ IF EXISTS ] [ <database_name>. ]<table_name> MODIFY [ COLUMN ] <column_name> <new_data_type> [ DEFAULT <constant_value> ][, [ COLUMN ] <column_name> <new_data_type> [ DEFAULT <constant_value> ], ... ] alter table T modify c1 varchar, c2 varchar;
The text was updated successfully, but these errors were encountered:
References: #14533
Sorry, something went wrong.
Please assign me :)
modify column? ty
Update 90-alter-table-column.md
ef7d4c3
databendlabs/databend#14898
Doc has updated: databendlabs/databend-docs@ef7d4c3, cc @soyeric128
TracyZYJ
Successfully merging a pull request may close this issue.
Summary
Now
improve
The text was updated successfully, but these errors were encountered: