我有一个带有名为 blogpost 的表的 SQL 数据库,它的列 ID 设置为 auto_increment 现在我必须向数据库中插入一个值,我使用了以下代码:
_, err := db.Exec("Insert into blogpost (id, title, description, author) values(?,?,?)", newBlog.Title, newBlog.Description, newBlog.Author)
但我收到以下错误:
Column count doesn't match value count at row 1
青春有我
www说
相关分类