# 添加新字段 并设置默认值
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'
;