Answers for "how to add column in sql int"

SQL
6

sql add column to table

ALTER TABLE users AUTO_INCREMENT=1001;
Posted by: Guest on August-31-2020
0

Add a new column into table

ALTER TABLE table ADD [COLUMN] column_name;
Posted by: Guest on April-28-2021

Code answers related to "how to add column in sql int"

Code answers related to "SQL"

Browse Popular Code Answers by Language