-- RETURN_REASON
--alter table tablename add (column datatype [default value][null/not null],….);--alter table [表名] add 字段名 int default 0 增加数字字段,长整型,缺省值为0
--课程表 --添加退回字段ALTER TABLE USER ADD ( "name" CLOB NULL ) ;