檢視oracle資料庫中所有的表及特定使用者的表

2021-05-23 17:10:49 字數 372 閱讀 6744

select   table_name   from   user_tables;     //當前使用者的表

select   table_name   from   all_tables;     //所有使用者的表

select   table_name   from   dba_tables;       //包括系統表

檢視特定使用者的表:

此使用者登陸後,select   *   from   tab;

select owner,table_name from dba_tables order by owner;

select owner,table_name from all_tables order by owner;

Oracle查詢資料庫中所有的表名稱

1.查詢資料庫中所有的表名稱和每張表所對應的資料條數 select t.table name,t.num rows from user tables t 此處需要注意的是 在查詢每張表所對應的資料條數時會與利用sql select count from tablename 所查詢出來的結果有所不同,...

查詢資料庫中所有的表

select from sysobjects where xtype u 查詢當前資料庫下所有使用者建立的表 xtype char 2 物件型別。可以是下列物件型別中的一種 c check 約束 d 預設值或 default 約束 f foreign key 約束 l 日誌 fn 標量函式 if 內...

檢視Django資料庫中所有的表和刪除表操作

django建立web程式後,中途你為某個模型新增了字段或者修改了字段,你希望把該錶刪除了,重新執行makemigrations migrate。你可以直接進入dbshell介面,直接刪除表。具體操作如下 進入命令列介面,切換到manage.py所在的目錄 python manage.py dbsh...