postgresql 修改表结构:修改t_cash表list_id 字段类型为varchar(19)
alter table t_cash alter column list_Id type varchar(19) ;
或则指定using
alter table t_cash alter column list_Id type numeric(19) using (list_id::numeric) ;
具体可参考官网:https://www.postgresql.org/docs/9.1/sql-altertable.html