如何在 mysql 服务器上将 null 定义为整数值?

发布于 2024-09-15 04:32:38 字数 44 浏览 5 评论 0原文

我需要允许在 mysql 服务器上将 null 保存为整数值,我该怎么做?

I need to allow saving null as integer value on mysql server, how can I do this?

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

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

发布评论

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

评论(3

把回忆走一遍 2024-09-22 04:33:39

将字段设置为非空并将其默认值设置为零:

CREATE TABLE `t` (
    `foo` BIGINT NOT NULL DEFAULT 0
);

如果发送 NULL,foo 的值将为零。

Set the field to not null and set its default to zero:

CREATE TABLE `t` (
    `foo` BIGINT NOT NULL DEFAULT 0
);

Value of foo will be zero if you send it NULL.

浊酒尽余欢 2024-09-22 04:33:23

我发现如何:
我隐藏了下面的行,然后重新启动 sql 服务器,它就工作了。

# 设置SQL模式为严格
sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"

请注意,此行位于 my.ini 文件中。

I found out how:
I hided the line below then restarted the sql server and it worked.

# Set the SQL mode to strict
sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"

Note this line is found in my.ini file.

柠檬心 2024-09-22 04:33:09

假设您的问题是关于“不正确的整数值”错误消息......

mysql> CREATE TABLE `foo` (
    ->  `foo_id` INT(10) NOT NULL AUTO_INCREMENT,
    ->  `foo_size` INT(10) NOT NULL DEFAULT '0',
    ->  PRIMARY KEY (`foo_id`)
    -> ) ENGINE=MyISAM;
Query OK, 0 rows affected (0.05 sec)

mysql> INSERT INTO foo (foo_size) VALUES ('');
ERROR 1366 (HY000): Incorrect integer value: '' for column 'foo_size' at row 1

这意味着您的服务器正在严格模式下运行(这实际上很好)。您可以禁用它:

mysql> SET @@session.sql_mode='';
Query OK, 0 rows affected (0.00 sec)

mysql> INSERT INTO foo (foo_size) VALUES ('');
Query OK, 1 row affected, 1 warning (0.00 sec)

mysql> SHOW WARNINGS;
+---------+------+------------------------------------------------------------+
| Level   | Code | Message                                                    |
+---------+------+------------------------------------------------------------+
| Warning | 1366 | Incorrect integer value: '' for column 'foo_size' at row 1 |
+---------+------+------------------------------------------------------------+
1 row in set (0.00 sec)

mysql> SELECT * FROM foo;
+--------+----------+
| foo_id | foo_size |
+--------+----------+
|      1 |        0 |
+--------+----------+
1 row in set (0.00 sec)

...您的错误将降级为警告。

Assuming your question is about the "Incorrect integer value" error message...

mysql> CREATE TABLE `foo` (
    ->  `foo_id` INT(10) NOT NULL AUTO_INCREMENT,
    ->  `foo_size` INT(10) NOT NULL DEFAULT '0',
    ->  PRIMARY KEY (`foo_id`)
    -> ) ENGINE=MyISAM;
Query OK, 0 rows affected (0.05 sec)

mysql> INSERT INTO foo (foo_size) VALUES ('');
ERROR 1366 (HY000): Incorrect integer value: '' for column 'foo_size' at row 1

... that means that your server is running in strict mode (which is actually good). You can disable it:

mysql> SET @@session.sql_mode='';
Query OK, 0 rows affected (0.00 sec)

mysql> INSERT INTO foo (foo_size) VALUES ('');
Query OK, 1 row affected, 1 warning (0.00 sec)

mysql> SHOW WARNINGS;
+---------+------+------------------------------------------------------------+
| Level   | Code | Message                                                    |
+---------+------+------------------------------------------------------------+
| Warning | 1366 | Incorrect integer value: '' for column 'foo_size' at row 1 |
+---------+------+------------------------------------------------------------+
1 row in set (0.00 sec)

mysql> SELECT * FROM foo;
+--------+----------+
| foo_id | foo_size |
+--------+----------+
|      1 |        0 |
+--------+----------+
1 row in set (0.00 sec)

... and your error will be downgraded to warning.

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