Skip to content

Instantly share code, notes, and snippets.

@Mirakurun
Mirakurun / react-notes.md
Last active October 11, 2022 03:07
React Notes
@Mirakurun
Mirakurun / docker-notes.md
Last active August 8, 2022 05:00
Docker Notes
@Mirakurun
Mirakurun / terraform-notes.md
Last active January 4, 2023 06:08
Terraform Notes
@Mirakurun
Mirakurun / git-notes.md
Last active February 18, 2022 19:05
Git Notes
@Mirakurun
Mirakurun / sql.md
Last active April 23, 2021 08:34
SQL Notes

SQL Notes

Section 1 - Simple SQL statements

# Create table
CREATE TABLE cities (
  name VARCHAR(50),
  country VARCHAR(50),
  population INTEGER,