不正确的整数值:第 1 行的列 'id' 的 ''

Incorrect integer value: #39;#39; for column #39;id#39; at row 1(不正确的整数值:第 1 行的列 id 的 )
本文介绍了不正确的整数值:第 1 行的列 'id' 的 ''的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试插入我的 mySQL 数据库.第一列是id"列,因为它是一个 auto_increment 字段,所以我将其留空.出于某种原因,我无法插入,并且收到下面提到的错误.感谢您对此提供的任何帮助.

I am trying to insert into my mySQL database. The first column is the 'id' column, since its an auto_increment field, I left it blank. For some reason, I am unable to insert and I am getting the error mentioned below. I appreciate any help with this.

我在尝试插入时收到以下错误:

I am getting the following error while trying to insert:

Incorrect integer value: '' for column 'id' at row 1

我的查询

$insertQuery = "INSERT INTO workorders VALUES('', '$priority', '$requestType', '$purchaseOrder', '$nte', '$jobSiteNumber')";

推荐答案

这可能意味着你的 id 是一个 AUTO_INCREMENT 整数并且你正在尝试发送一个字符串.您应该指定一个列列表并从 INSERT 中省略它.

That probably means that your id is an AUTO_INCREMENT integer and you're trying to send a string. You should specify a column list and omit it from your INSERT.

INSERT INTO workorders (column1, column2) VALUES ($column1, $column2)

这篇关于不正确的整数值:第 1 行的列 'id' 的 ''的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)