我正在使用来自here的这个php文本数据库api,我遇到了自动增量列的问题。我已经创建了一个数据库和一个表,我可以使用
成功插入它$db->executeQuery("CREATE TABLE people (id inc DEFAULT 0, phone_number int)");
$db->executeQuery("INSERT INTO people VALUES (0, '123')");
但每次插入时,都会说id列为0.如果每次插入,我怎么能让它自动递增1?
答案 0 :(得分:1)
请尝试:
$db->executeQuery("CREATE TABLE people (id INT NOT NULL AUTO_INCREMENT, phone_number int)");
$db->executeQuery("INSERT INTO people VALUES ( '123')");