mysql知識積累 慢慢登記防止忘記

2021-10-09 21:42:00 字數 417 閱讀 4698

mysql 的整體架構分為如下幾個部分:

(1)mysql 向外提供的互動介面(connectors)

(2)管理服務元件和工具元件(management service & utilities)

(3)連線池元件(connection pool)

(4)sql 介面元件(sql inte***ce)

(5)查詢分析器元件(parser)

(6)優化器元件(optimizer)

(7)快取主件(caches & buffers)

(8)外掛程式式儲存引擎(pluggable storage engines)

(9)物理檔案(file system)

mysql知識積累

c表的部分資料如下 o表的資料如下 通過mysql語句 update orderpritb o,china jw c set o.longitude c.longitude,o.latitude c.latitude where o.city like c.city and o.province l...

知識積累 MYSQL之索引

檢視索引 show index from tablename 建立復合索引 create unique index indexname on tablename column1,column2,column3 建立復合唯一索引 alter table tablename add unique ind...

簡單小知識 記錄一下 慢慢更新積累

oracle中int型別和number型別區別 一句話 int型別是number型別的子型別。下面簡要說明 1 number p,s 該資料型別用於定義數字型別的資料,其中p表示數字的總位數 最大位元組個數 而s則表示小數點後面的位數。假設定義sal列為number 6,2 則整數最大位數為4位 6...