mysql默认值语句

  • Post author:
  • Post category:mysql



# 添加新字段 并设置默认值


alter


table


`test_tb`


add


column


`col3`


varchar


(20)


not


null


DEFAULT


'abc'


;


# 修改原有默认值


alter


table


`test_tb`


alter


column


`col3`


set


default


'3a'


;


alter


table


`test_tb` change


column


`col3` `col3`


varchar


(20)


not


null


DEFAULT


'3b'


;


alter


table


`test_tb`


MODIFY


column


`col3`


varchar


(20)


not


null


DEFAULT


'3c'


;


# 删除原有默认值


alter


table


`test_tb`


alter


column


`col3`


drop


default


;


# 增加默认值(和修改类似)


alter


table


`test_tb`


alter


column


`col3`


set


default


'3aa'


;



版权声明:本文为tiantian1980原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。