Answers for "alter table change default"

SQL
0

alter table change default

ALTER TABLE foobar_data MODIFY COLUMN col VARCHAR(255) NOT NULL DEFAULT '{}';

A second possibility which does the same:
ALTER TABLE foobar_data CHANGE COLUMN col col VARCHAR(255) NOT NULL DEFAULT '{}';
Posted by: Guest on December-30-2021

Code answers related to "alter table change default"

Code answers related to "SQL"

Browse Popular Code Answers by Language