NULL vs DEFAULT NULL vs NULL DEFAULT NULL in MYSQL column creation?

前端 未结 2 768
孤独总比滥情好
孤独总比滥情好 2021-01-01 11:17

Following SQL table definition is illustrated one of create table statement from my MYSQL database which is developed by a former developer of my company.

DRO         


        
2条回答
  •  失恋的感觉
    2021-01-01 11:55

    In all three of the following cases:

    price DOUBLE NULL;
    
    price DOUBLE DEFAULT NULL;
    
    price DOUBLE NULL DEFAULT NULL;
    

    price is a double and can be null and its default value is null.

提交回复
热议问题