您好,登錄后才能下訂單哦!
如何進行Mac單機MySQL數據庫記錄插入時間比較,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
mysql> mysql> show create database test\G;
*************************** 1. row ***************************
Database: test
Create Database: CREATE DATABASE `test` /*!40100 DEFAULT CHARACTER SET utf8 */
1 row in set (0.00 sec)
mysql> show create table test1\G;
*************************** 1. row ***************************
Table: test1
Create Table: CREATE TABLE `test1` (
`a` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)
百萬級插入測試,花費4.3秒----秒級響應
mysql> insert into test1(a) select a from test1;
Query OK, 1048576 rows affected (4.30 sec)
Records: 1048576 Duplicates: 0 Warnings: 0
千萬級插入測試,花費1分鐘18.32秒----分鐘級響應
mysql> insert into test1(a) select a from test1;
Query OK, 16777216 rows affected (1 min 18.32 sec)
Records: 16777216 Duplicates: 0 Warnings: 0
三千萬級別測試,花費2分鐘38.10描述----分鐘級響應
mysql> insert into test1(a) select a from test1;
Query OK, 33554432 rows affected (2 min 38.10 sec)
Records: 33554432 Duplicates: 0 Warnings: 0
查看當前表狀態
mysql> SHOW TABLE STATUS LIKE "TEST1" \G;
*************************** 1. row ***************************
Name: test1
Engine: InnoDB
Version: 10
Row_format: Dynamic
Rows: 112834468
Avg_row_length: 32
Data_length: 3633315840
Max_data_length: 0
Index_length: 0
Data_free: 1518338048
Auto_increment: NULL
Create_time: 2017-08-31 22:30:19
Update_time: 2017-08-31 22:40:46
Check_time: NULL
Collation: utf8_general_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec)
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。