SQL
The structured query language is the
industry standard query language
“Structured” means the queries have a
standard form
Common clauses --
   SELECT <fields desired>
   FROM  <list of tables>
   INNER JOIN <table> ON <conditions>
   WHERE <criterion>
SQL is not case sensitive