#修改主键起始值
alter table m_account AUTO_INCREMENT=200029860;
#修改字段默认值
alter table t_bill_details alter column expect_amount set DEFAULT 0;
#修改字段长度
alter table t_invoice_order modify column inner_amount varchar(2048);