gpt4 book ai didi

python - 无法将 NULL 插入列 'Type'

转载 作者:太空宇宙 更新时间:2023-11-03 14:17:14 26 4
gpt4 key购买 nike

我正在尝试将包含两条信息的行添加到 Notes 表中。我正在使用 python 执行以下 INSERT 语句。

cursor.execute("insert into Notes(Notes, NumericKey) values (?, ?)",Tracking, OrderNumber)

我遇到的错误

Traceback (most recent call last):
File "<interactive input>", line 1, in <module>
IntegrityError: ('23000', "[23000] [Microsoft][SQL Server Native Client 11.0][SQL Server]Cannot insert the value NULL into column 'Type', table 'beltoutlet.dbo.Notes'; column does not allow nulls. INSERT fails. (515) (SQLExecDirectW); [01000] [Microsoft][SQL Server Native Client 11.0][SQL Server]The statement has been terminated. (3621)")

我看到很多人都有类似的问题,但所有尝试的解决方案都没有帮助。我束手无策,因为 Tracking 和 OrderNumber 都有实际值,而且我没有“类型”列。任何帮助将不胜感激。

最佳答案

我同意 Aaron Dietz 的评论,即被引用的表(不一定是您要引用的表)具有类型列。为了解决这种情况,我相信您有两种选择:

1) 使用数据库和架构名称指定确切的表

cursor.execute("insert into [databaseName].[SchemaName].[Notes](Notes, NumericKey) values (?, ?)",Tracking, OrderNumber)

2)(不推荐)通过设置错误值(如空字符串)来强制插入

cursor.execute("insert into Notes(Notes, NumericKey, [Type]) values (?, ?, ?)",Tracking, OrderNumber, '')

希望这有帮助。

关于python - 无法将 NULL 插入列 'Type',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48173147/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com