oracle中如何顯示當前的所有使用者表
顯示某使用者所有表(例如scott,必須大寫)
select table_name from all_tables where owner = 'scott';
顯示當前的所有使用者表
select * from user_tables
顯示當前資料庫的所有表
select * from tab;
顯示當前資料表空間名
你可以採用sys使用者登陸
select tablespace_name from dba_tables where table_name = upper('
你操作的表名')
顯示出來的tablespace_name就是你當前操作的表空間的名字。
執行本地sql檔案的語句(在學習中用的檔案為number.sql)
sql>@@c:/number.sql
Oracle 一些工具語句
待續.select from user tables select current user s owned tables select from all tables select current user s can be visited tables select from v version...
ORACLE 一些操作語句
查詢表的外來鍵 包括名稱,引用表的表名和對應的鍵名,下面是分成多步查詢 select from user constraints c where c.constraint type r and c.table name 要查詢的表 查詢外來鍵約束的列名 select from user cons c...
SQL一些最基礎的知識
整數 int,smallint 數字 float,real 貨幣 money bit資料型別 儲存布林資料型別 image 可用來儲存影象 char,8000 固定長度的非unicode字元資料 varchar,8000 可變長度的非unicode資料 nchar,4000 固定長度的unicode...