資料庫資訊查詢語句記錄 引擎,隔離級別等

2021-10-19 18:48:28 字數 709 閱讀 5171

mysql 版本: 8.0 +

檢視資料庫列表:show databases;

檢視資料庫中的所有表:show tables;

檢視資料表的建表語句:show create table [table_name];

檢視資料表的結構:desc [table_name];

檢視資料表使用的引擎:

show create table [your table name];show table status from [db name] where name='[your table name]';select table_schema,table_name,engine from information_schema.tables where table_name='[your table name]';

檢視資料庫的隔離級別:select @@global.transaction_isolation,@@transaction_isolation;

檢視正在執行的語句:show processlist;

檢視正在執行的事務:select * from information_schema.innodb_trx

MySQL資料庫查詢語句記錄學習

以上圖資料庫表為例,表名moncenter data air,表結構如下圖 1.查詢今天資料指令 select datatime from moncenter data air where to days datatime to days now 2.查詢昨天資料指令 select datatime...

sequoiadb 資料庫引擎處理查詢語句流程

按照它官網上的技術文件,在pc機上安裝並成功部署乙個集群,文件還算詳細,也沒遇到什麼問題。接著嘗試在本地命令列上,連線資料庫,建立資料庫,建立 插入資料,查詢資料,玩法基本與mongodb沒啥大的區別,感覺還行。然後再看了下它的基礎架構,從官方文件上得知,乙個集群主要由三個部分組成,協調節點,編目節...

跨資料庫引擎 資料庫查詢

包含訪問 ole db 資料來源中的遠端資料所需的全部連線資訊。當訪問鏈結伺服器中的表時,這種方法是一種替代方法,並且是一種使用 ole db 連線並訪問遠端資料的一次性的 特殊的方法。可以在查詢的 from 子句中像引用表名那樣引用 openrowset 函式。依據 ole db 提供程式的能力,...