我歸我的資料庫,我試圖設置字段一樣的ID該行,所以我可以連接的表的值。字段的值設置爲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', '[email protected]',
'1', LAST_INSERT_ID(),
LAST_INSERT_ID(), LAST_INSERT_ID(),
LAST_INSERT_ID(), LAST_INSERT_ID(),
LAST_INSERT_ID(), LAST_INSERT_ID());
謝謝!
你說的*空字段意味着*?據我所知,它應該插入一個零。 –
我玩過它,現在變成零。但這仍然不是我想要插入的內容......我發佈了完整的代碼。 – Sarah
什麼查詢會要求您在幾個字段中擁有相同的信息? –