2022
02-10
02-10
MySQL为何不建议使用默认值为null列
通常能听到的答案是使用了NULL值的列将会使索引失效,但是如果实际测试过一下,你就知道ISNULL会使用索引.所以上述说法有漏洞.着急的人拉到最下边看结论PrefaceNullisaspecialconstraintofcolumns.Thecolumnsintablewillbeaddednullconstrainifyoudonotdefinethecolumnwith“notnull”keywordsexplicitlywhencreatingthetable.Manyprogrammersliketodefinecolumnsbydefaultbecauseofthecon...
继续阅读 >