0
how to add new columns in already created table ???
i was unable to search how to create new column in already created table.
3 Respuestas
+ 5
ALTER TABLE table_name
ADD column_name datatype
E.g Alter Table Employee Add Mail_Id varchar(100)
+ 2
You must use the ALTER TABLE statement, I let you check the specific syntax by yourself (as it depends on the SQL library that you use).
0
thanks bro. really helpfull