有没有办法告诉mysql字段从n
或1000
对于以下示例,我希望ID从1000开始而不是1。
$tables = array(
'products' => array(
'id' => array('type' => 'INT', 'constraint' => '11', 'unsigned' => TRUE, 'auto_increment' => TRUE, 'primary' => TRUE, 'startwith'=>1000),
));
答案 0 :(得分:0)
在普通的Mysql中,你可以设置auto_increment no,因为你只想在默认值中定义值
CREATE TABLE `products` (
`id` INT (11) NOT NULL AUTO_INCREMENT,
`title` VARCHAR (255) NOT NULL,
PRIMARY KEY (`id`)
) AUTO_INCREMENT = 1000 ;
insert into `products`
(`title`)
values('test'),
('test1');
或者如果您已创建表,则使用alter来设置auto_increment value
ALTER TABLE `products` AUTO_INCREMENT = 2000;