Oracle 資料庫中的表

2021-08-04 12:38:46 字數 459 閱讀 1258

oracle 資料庫中的表

使用者定義的表:

使用者自己建立並維護的一組表

包含了使用者所需的資訊

資料字典:

由oracle server自動建立的一組表

包含資料庫資訊

select table_name

from   user_tables ;

select distinct object_type

from   user_objects ;

select *

from   user_catalog ;

時候用 as subquery 選項,將建立表和插入資料結合起來

create table table

[(column, column...)]

as subquery;

指定的列和子查詢中的列要一一對應

通過列名和預設值定義列

Oracle資料庫中的dual表

select user from dual select to char sysdate,yyyy mm dd hh24 mi ss from dual 獲得當前系統時間 select sys context userenv terminal from dual 獲得主機名 select sys c...

ORACLE資料庫表的操作

一下是對oracle資料庫表的一些操作語句 已經建好的表新增字段 alter table tablename add column1 varchar2 20 default y column2 number 7 2 刪除字段 alter table tablename drop column ass...

Oracle資料庫的表空間

前提 對於oracle資料庫,表空間是儲存表資料,表結構的地方,表空間 很好理解,就是儲存表的地方,包括表定義所有的資料。做oracle的小夥伴們務必知道表空間的概念。下面咱們來做一下比較,用sql server資料庫和oracle資料庫來比較一下。sql server資料庫和oracle資料庫之間...