注意到奇怪的事情。在我的数据库中,所有表只有奇数主键。
id | value
1 | 10
3 | 15
5 | NULL
7 | 1
在其他Yii网站上一切正常。
通过不同方法添加到不同表中的行:
$model = new Tbl1;
$model->value = 10;
$model->save();
和
$command = Yii::app()->db->createCommand();
$sql = 'INSERT INTO `tbl2` SET `value` = 10';
$command->setText($sql);
$command->execute();
这很奇怪,是吗?
答案 0 :(得分:5)
在您的数据库服务器(可能是MySQL)中检查auto_increment_increment
和auto_increment_offset
变量。
将这些设置为 1
。
列出了有关进一步命令和操作的信息here。