Alter Table Add Column After Another Column Mysql Code Example


Example 1: add column in mysq

ALTER TABLE Table_name ADD name_column INT(255);

Example 2: mysql alter table add column

ALTER TABLE table   ADD [COLUMN] column_name column_definition   [FIRST|AFTER existing_column];

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?