Answers for "how to add extra mysql"

SQL
9

add new column to the table mysql

ALTER TABLE `TABLE_NAME` 
	ADD `COLUMN_NAME` VARCHAR(50) NULL
    AFTER `COLUMN_NAME_AFTER`;
Posted by: Guest on August-20-2020
4

create column mysql terminal

alter table icecream add column flavor varchar (20) ;
Posted by: Guest on April-08-2020

Code answers related to "how to add extra mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language