Answers for "how to add attributes to a table in mysql"

SQL
5

add column in mysq

ALTER TABLE Table_name ADD name_column INT(255);
Posted by: Guest on March-12-2020
11

mysql add column

ALTER TABLE table_name
ADD [COLUMN] column_name column_definition [FIRST|AFTER existing_column];
Posted by: Guest on March-04-2020

Code answers related to "how to add attributes to a table in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language