How i can add values into an auto increment field? i am having a table like id: int(5) auto increment name: text phone: text extra: text and i need a few more clients :|
INSERT INTO tablename (name,phone,extra) VALUES('Joe','0981234567','additional info'); leaving out id will use the next auto increment value.