mysql學習記錄 Archive儲存引擎

2021-09-28 14:15:01 字數 361 閱讀 3752

檔案系統儲存特點:

以zlib對錶資料進行壓縮,磁碟i/o更少,乙個幾t的innodb表如果把資料儲存到archive儲存引擎中只需要幾百m的儲存空間。

資料儲存在arz為字尾的檔案中

1 只支援insert 和 select 操作

2 只允許在自增id列上加索引

create table myarchive(id int auto_increment not null,c1 varchar(10),c2 char(10),key(id)) engine = archive;

create index idx_ci on myarchive(c1);  ---- 新增索引

適用場景:日誌和資料採集類應用

mysql學習記錄 MySQL學習記錄 2

in 子查詢 select from student where id in 1,2 not in 不在其中 select from student where id not in 1,2 is null 是空 select from student where age is null is not...

學習記錄 Mysql

mysql 是官方發布的 乙個為mysql設計的c 語言的api,這個api的作用是使工作更加簡單且容易。mysql 為mysql的c api的再次封裝,它用stl standard template language 開發並編寫,並為c 開發程式設計師提供象操作stl容器一樣方便的運算元據庫的一套...

Mysql 學習記錄

本篇部落格主要記錄一些開發中使用的到一些知識點。cdata 這是乙個xml語法 是的所有在cdata中的資料都不會被解析詳細描述參見 cdata語法 concat 函式用於將多個字串連線成乙個字串注意 如有任何乙個引數為null 則返回值為 null。或許有乙個或多個引數。如果所有引數均為非二進位制...