Oracle-增加字段

-- 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 ) ;

posted @ 2021-08-25 16:13  游走人间的蒲公英  阅读(1137)  评论(0编辑  收藏  举报