我正在规范我的数据库,我正在尝试将字段的值设置为与该行的 ID 相同,以便我可以连接表。
我尝试使用LAST_INSERT_ID()
,但它不起作用。我没有收到错误,但我只得到零。
INSERT INTO `eleves` (`user_id`,
`first_name`, `last_name`,
`username`, `groupe`,
`password`, `courriel`,
`active`, `auteur`,
`citations`, `absurde`,
`vocabulaire`, `analyse`,
`themes`, `personnages`)
VALUES (NULL,
'Jane', 'Doe',
'janedoe', '400',
'password', 'jane@doe.com',
'1', LAST_INSERT_ID(),
LAST_INSERT_ID(), LAST_INSERT_ID(),
LAST_INSERT_ID(), LAST_INSERT_ID(),
LAST_INSERT_ID(), LAST_INSERT_ID());
谢谢!