使用PHP Text DB API时如何使用自动增量列?

时间:2013-03-09 21:04:31

标签: php html sql database

我正在使用来自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?

1 个答案:

答案 0 :(得分:1)

请尝试:

$db->executeQuery("CREATE TABLE people (id INT NOT NULL AUTO_INCREMENT, phone_number int)");
$db->executeQuery("INSERT INTO people VALUES ( '123')");