How can I add a new column (like email
) in my already created table students
using sql command?
In my students
table I already have two columns name id
and name
. It was created using this sql command
CREATE TABLE students(id INT AUTO_INCREMENT, name VARCHAR(255), PRIMARY KEY id);