Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从这个问题继续,
我在 Mysql 中有一个名为 customer_report id[int(11)],customer_id[int(5)] 的表,同时将 customer_id 输入错误为 2147483647 的值插入到表中。
我的查询如下:
insert into customer_report (id,customer_id) values('','99999999999')
这有什么问题?
请任何人帮助。
预先感谢。
请将 customer_id 结构更改为bigint或执行int(11)
bigint
int(11)