Heim  >  Artikel  >  Backend-Entwicklung  >  mysql的not null 细节请教

mysql的not null 细节请教

WBOY
WBOYOriginal
2016-06-23 14:17:34886Durchsuche

比如这样的一条sql ddl语句:

password char(32) not null default "",//有md5


既然都定义了not null了,那么用户就强制必要添加密码了,那后面来个默认值是不是有点多余?而且我长度规定是32位,默认值是空,

感觉有not null 的时候,默认值,没有存在的必要,就算存在,他的值属性也不合字段的属性约定啊?求解!


回复讨论(解决方案)

恰恰相反

在not null的时候如果你不输入东西  就按默认的输入

换句话说   你设置not null了最好(必须)设置default

毫不相干!

password 只是一个名字而已,对于数据库而言没有任何意义

not null default "" 的目的在于:如果没有对其赋值,在取默认值为空串。即插入时可缺省该项
如果仅 not null,那么插入时该项必须有值,否则出错

如果约定 password 必须有值,那么定义时应为
password char(32) not null,
而不是
password char(32) not null default "",

习惯上都给个default的

毫不相干!

password 只是一个名字而已,对于数据库而言没有任何意义

not null default "" 的目的在于:如果没有对其赋值,在取默认值为空串。即插入时可缺省该项
如果仅 not null,那么插入时该项必须有值,否则出错

如果约定 password 必须有值,那么定义时应为
password char(32) not null,
而不是
password char(32) not null default "",
正解,你的需求是:
password char(32) not null

若加上default “”,在你不传值的情况下,数据库会存储长度为0的字符串""。
null != “”

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn