只是为了防止与其他表重名,没有特别的意思。
使用comment on,举个例子:create table EMP(empid NUMBER);comment on table EMPis '员工信息'; --添加表描述comment on column EMP.empidis '员工编号'; --添加列描述