Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 248 Bytes

sql.md

File metadata and controls

11 lines (6 loc) · 248 Bytes

SQL

Common SQL operations:

  • filter: where gender = F
  • projection: select first_name, last_name from ...
  • join: select ... from employee t1, salary t2 where t1.emp_id = t2.id
  • aggregation: select count(*) from ... group by gender