mysql中text字段如何设默认值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql中text字段如何设默认值相关的知识,希望对你有一定的参考价值。
参考技术A text字段不可以有默认值。mysql text类型没有默认值,如果该字段没有值,则该字段是空,即is null 。
使用select语句时应注意:(test是表名,description是字段名,类型是text) 。
select * from test where description = null; 等价为 select * from test where description = 'null'。
即此时description 值是null才可以取出。
如果description字段没有填入值,是系统设置的,则执行 select * from test where description is null,即可。
以上是关于mysql中text字段如何设默认值的主要内容,如果未能解决你的问题,请参考以下文章