将 Null 值插入到 postgresql 中的 inet 字段

发布于 2024-11-01 21:29:40 字数 356 浏览 1 评论 0原文

我正在尝试将值插入到包含两列具有 inet 类型的表中。当我尝试向这些列插入 NULL 值时,我收到一条错误消息

错误:inet 类型的输入语法无效:“”

实际上,我正在尝试使用 sqlalchemy 从 python 执行此操作,但自然地我会得到相同的错误:

Session.commit() 错误:(DataError) inet 类型的输入语法无效:“”

我需要能够向这些列添加空值。 这些列没有像 NOT NULL 这样的属性。

I am trying to insert values to a table which contains two columns with inet types. When I try to insert a NULL value to these columns I get an error saying

ERROR: invalid input syntax for type inet: ""

Actually I am triyng to do this from python using sqlalchemy but naturally I get the same error saying:

Session.commit() error: (DataError)
invalid input syntax for type inet: ""

I need to be able to add null values to these columns.
These colums do not have an attribute like NOT NULL.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

策马西风 2024-11-08 21:29:40

该错误消息似乎表明您正在使用空字符串来指示“null”值,这是不正确的。

以下应该有效:

INSERT INTO my_table (inet_column) VALUES (NULL);

或者如果您实际上是指更新而不是插入:

UPDATE my_table
   SET inet_column = NULL
WHERE pk_column = 42;

The error message seems to indicate you are using an empty string to indicate a "null" value which is not correct.

The following should work:

INSERT INTO my_table (inet_column) VALUES (NULL);

Or if you actually mean update instead of insert:

UPDATE my_table
   SET inet_column = NULL
WHERE pk_column = 42;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文