Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 359 Bytes

sql_terminology.md

File metadata and controls

23 lines (19 loc) · 359 Bytes

SQL Terminology

Data Definition Language (DDL)

  • create table,
  • drop table,
  • and other creates and drops of other components.

Data Manipulation Language (DML)

  • select,
  • insert,
  • delete,
  • update. Querying and modifying the database.

Other Commands

  • indexes,
  • constraints,
  • views,
  • triggers,
  • transactions,
  • authorization,
  • etc.