Oracle 相關查詢整理

2021-08-15 02:35:42 字數 742 閱讀 3507

1、查詢表名及對應表注釋內容

select * from user_tab_comments c where c.comments is not null;

2、查詢表及對應欄位的注釋內容(表字段注釋)

select * from user_col_comments d where d.table_name ='org';

3、查詢表,並將表字段的英文轉為中文注釋顯示

在oracle中給表、列增加注釋以及讀取注釋

1、給表填加注釋:sql>comment on table 表名 is '表注釋";

2、給列加注釋:sql>comment on column 表.列 is '列注釋';

3、讀取表注釋:sql>select * from user_tab_comments where comments is not null;

4、讀取列注釋:sql>select * from user_col_commnents where comments is not null and table_name='表名';

附表user_tab_comments和user_col_comments的結構:

1、user_tab_comments由table_name、table_type和comments三部分組成。

2、user_col_comments由table_name、column_name和comments三部分組成。

3、在sql*plus中顯示表結構:desc 表名;

ORACLE時間相關的查詢整理

指定日期的季度 select to char sysdate,q from dual 指定日期的月份 select to char sysdate,mm from dual 當年第幾周 select to char sysdate,ww from dual 本月第幾周 select to char ...

Oracle 相關整理

dba 相關 1 資料庫與例項的區別 資料庫是相關作業系統檔案的集合 儲存在硬碟上的檔案集合 例項是一組作業系統程序和記憶體區域的集合 即服務service 乙個例項對應於乙個資料庫,乙個資料庫可以對應多個例項 2.1.使用伺服器端net manager 對本地監聽等進行配置 2 使用客戶端的ent...

Oracle 相關子查詢

start 我們先來看兩個表的定義 使用者 create table employee userid number 9,0 not null,使用者id companyid number 9,0 公司id telno varchar2 12 使用者 alter table employee add ...