📊
Database
CtrlK
  • 目錄
  • 連線池
  • XXX
  • Names
    • ORM(O/R Mapping)
    • 資料來源(DataSource)
    • Metadata(Data about data)
    • OLAP / OLTP
  • Transaction Managemet
    • ACID
      • 資料庫隔離級別
        • N 快照隔離
        • 更新遺失(Lost update)
        • 髒讀(Dirty Read)
        • 無法重複的讀取(Unrepeatable Read)
        • 幻讀(Phantom read)
    • 鎖(Lock)
    • N 交易型態
      • Flat Transaction
      • Nested transaction
      • Chanied Transaction
      • Conversational Transaction
    • 分佈式事務
  • RDBMS
    • 正規化
    • 反正規化
    • SQL
      • 鍵值(KEY)
        • Primary Key
        • 自增主鍵(auto increment)
      • 限制(constraints)
    • N+1 問題
    • 索引(Index)
    • 執行計劃(Explain)
    • 樹狀結構(Tree structure)
    • Hint
  • Design
Powered by GitBook
On this page
  • 種類
  • DDL - 資料定義語言
  • DML - 資料處理語言
  • DCL - 資料控制語言

Was this helpful?

  1. RDBMS

SQL

Structured Query Language 結構化查詢語言

種類

DDL - 資料定義語言

Data Definition Language,

DML - 資料處理語言

Data Manipulation Language,

DCL - 資料控制語言

Data Control Language,

Previous反正規化Next鍵值(KEY)

Last updated 5 years ago

Was this helpful?