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

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy