Mysql查詢所有的表名和查詢表中所有的欄位名

2022-08-24 11:03:13 字數 855 閱讀 4116

最近的乙個專案中用到兩個東西,乙個就是傳入資料庫連線就自動複製該庫的所有表結構,其二就是在搜尋中用到獲取庫中的表和表中的字段,所以記錄一下,至於專案情況,隨後更新。

-- 獲取所有資料庫名稱

-- 獲取庫中的所有表名稱

select column_name from information_schema.columns where table_name = 'your_table_name';

-- 這個是我自己寫的

-- 獲取表中的欄位名稱

以上就是實現過程。

oracle 查詢表空間所有表 及表所有的表空間

查詢表空間所有表 select table name from all tables where tablespace name 表空間 表空間名字一定要大寫。查詢表所在的表空間 select from user tables where table name 表名 表名一定要大寫 建立表空間 cr...

MYSQL查詢表的字段和表名

2 查詢mysql是否包含某張表 1 drop table ifexists tablename 2 做乙個sql查詢,比如 select from tablename select count from tablename,如果返回值為空,則表不存在。3 查詢 show tables like t...

sql查詢所有表名及注釋

oracle查詢使用者下的所有表 select from all tab comments 查詢所有使用者的表,檢視等 select from user tab comments 查詢本使用者的表,檢視等 select from all col comments 查詢所有使用者的表的列名和注釋.se...