-- Add comments to the columns
我們提供的服務有:網(wǎng)站建設(shè)、網(wǎng)站設(shè)計、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認證、共和ssl等。為1000多家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務,是有科學管理、有技術(shù)的共和網(wǎng)站制作公司
comment on column DELIVERY_OVERTIME.id is 'id';
試試
1、啟動plsql并登陸oracle數(shù)據(jù)庫。
2、創(chuàng)建測試表-- 創(chuàng)建表create table TestTable(? id? ? ? varchar2(36) not null,? colcode nvarchar2(50),colname nvarchar2(50));-- 給表名添加備注 comment on table TestTable is '測試表';-- 添加主鍵alter table TestTable add constraint ID primary key (ID)。
3、插入測試數(shù)據(jù)(除了F8執(zhí)行SQL之外,還需要點擊【提交】按鈕才能將數(shù)據(jù)插入到數(shù)據(jù)庫)。
4、desc 作為降序排序的關(guān)鍵字,按照COLCODE 列降序展示表數(shù)據(jù)SELECT * FROM TESTTABLE ORDER BY COLCODE DESC。
5、【DESC + 表名】:顯示表的詳細字段(直接在Plsql的sql窗口中執(zhí)行會報錯)。
comment on column 表名.列名 is '1-使用;2-未使用';
然后你用pl sql developer
在sql窗口 執(zhí)行 select * from 表,把光標移動到列上,
看看狀態(tài)欄是不是你要的效果。