oracle 数据库创建表的时候,表名前面加个S_ 是什么意思? 好多其他的列也加_是什么意思?

2025-03-26 13:07:37
推荐回答(2个)
回答1:

只是为了防止与其他表重名,没有特别的意思。

回答2:

使用comment on,举个例子:
create table EMP
(
empid NUMBER
);

comment on table EMP
is '员工信息'; --添加表描述

comment on column EMP.empid
is '员工编号'; --添加列描述