gpt4 book ai didi

MySQL TEXT 列的默认值表现不稳定,为什么?

转载 作者:行者123 更新时间:2023-11-29 23:12:37 24 4
gpt4 key购买 nike

我试图做的是避免在插入中列出我的文本列,它们将有一个默认的“”(空字符串)。

我设法为我的 TEXT 列设置(见下文)默认 '' 值,但它生成了一个警告,并且我看不到我的表结构发生了什么变化。

请检查下面的代码以重现该问题。

DROP TABLE IF EXISTS `text_test`;

CREATE TABLE `text_test` (
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
`text` TEXT NOT NULL,
PRIMARY KEY (`id`)
)
COLLATE='utf8_unicode_ci'
ENGINE=InnoDB
;
-- created OK

SHOW CREATE TABLE `text_test`;
-- CREATE TABLE `text_test` (
-- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
-- `text` text COLLATE utf8_unicode_ci NOT NULL,
-- PRIMARY KEY (`id`)
-- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
-- no surprises here...

INSERT INTO `text_test` () VALUES ();
-- warning: text has no default value

SELECT * FROM `text_test`;
-- id=1, text=''

ALTER TABLE `text_test`
CHANGE COLUMN `text` `text` TEXT NOT NULL DEFAULT '' COLLATE 'utf8_unicode_ci' AFTER `id`;
-- warning: blob/text cannot have default...

SHOW CREATE TABLE `text_test`;
-- CREATE TABLE `text_test` (
-- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
-- `text` text COLLATE utf8_unicode_ci NOT NULL,
-- PRIMARY KEY (`id`)
-- ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
-- no surprises, seems like the table did not change at all...

INSERT INTO `text_test` () VALUES ();
-- no warning generated, but why if the table structure is still the same??

SELECT * FROM `text_test`;
-- id=1, text=''
-- id=2, text=''

我的服务器信息:

SHOW VARIABLES LIKE "%version%";
-- "Variable_name" "Value"
-- "innodb_version" "5.1.73-14.6"
-- "protocol_version" "10"
-- "version" "5.1.73-rel14.11-log"
-- "version_comment" "(Percona Server (GPL), 14.11)"
-- "version_compile_machine" "x86_64"
-- "version_compile_os" "debian-linux-gnu"

最佳答案

MySQL 手册:“BLOB 和 TEXT 列不能有 DEFAULT 值”。

对于自动表创建和暗示默认值期望的代码的情况,该警告是有意的。

忽略并继续:)

关于MySQL TEXT 列的默认值表现不稳定,为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28002029/

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