qt 獲取sql資料表的所有的字段

2022-08-02 11:15:09 字數 1021 閱讀 2796

1、 mysql 資料庫;

**: 

mysql安裝成功後可以看到已經存在mysql、information_schema和test這個幾個資料庫。

information_schema庫中有乙個名為columns的表,這個表中記錄了資料庫中所有表的字段資訊。

知道這個表後,獲取任意表的字段就只需要一條select語句即可。例如:

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

上述的做法有一點問題,如果多個資料庫中存在你想要查詢的表名,那麼查詢的結果會包括全部的字段資訊。

通過desc information_schema.columns可以看到該表中列名為table_schema是記錄資料庫名,因此下面的寫法更為嚴格

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

取字段注釋 

select column_name 列名, data_type 字段型別, column_comment 字段注釋  

from information_schema.columns

where table_name = 'companies' ##表名

and table_schema = 'testhuicard'##資料庫名

and column_name like 'c_name' ##欄位名

2、sqllite資料庫

獲取sqlite資料庫的資料表字段的關鍵是 pragma table_info('tablename')

bool outputtableinfo(qstring tabnmae)   

}else

}

mysql下備份所有的資料庫和資料表

要求 1 mysql下的資料庫的表要以table name.sql備份儲存 2 儲存在當前目錄下,並以當天時間命名 bin bash myuser root mypass 123456 host localhost backupdir backup mysql date date f 判斷備份目錄是...

Mysql獲取資料庫的所有表,以及表所有字段資訊

在許多時候,我們需要獲取資料庫中所有的表,比如常見的 生成,腳手架之類的,通過選擇庫中的表,配置幾個類屬性,自動生成實體類,dao,service等。下面是mysql獲取資料庫所有表的語句。select table name tablename,engine,table comment tablec...

SQL語句 清除資料表的所有記錄

對資料庫進行清空,要求高效 快速。以下是比較有效的解決方法。truncate table name 還有乙個排重的sql解決方法 alter ignore table dict add unique index content 建乙個索引。truncate table truncate是sql中的乙...