when i add collumns in a auto increament file do i do this
INSERT INTO data2 (data, item, address, city, state, zip, phone, note)
VALUES ('key','item','address','city','state','zip','phone','note');
or this
INSERT INTO data2 (data) (item, address, city, state, zip, phone, note)
VALUES ('key','item','address','city','state','zip','phone','note');