0
3
llucycodes42
This code will add a new column to the table named "User Input 2" that stores an integer and a not null column to store the value of that integer.
Shortcut: s_alter_add
ALTER TABLE `table` ADD COLUMN `col_name` INT;
0
3
llucycodes42
This code will add a new column to the table named "User Input 2" that stores an integer and a not null column to store the value of that integer.
Shortcut: s_alter_add
ALTER TABLE `table` ADD COLUMN `col_name` INT;