I am supposed to write an query which will add new attribute to my already existing table
So I written this
ALTER TABLE member
ADD e_mail CHAR(20)
which is fine, however when I try insert required data for each row I get stuck
INSERT INTO member(e_mail) VALUES('johnwhite@msn.com');
Can anyone help me please....