Skip to content

Instantly share code, notes, and snippets.

View ekamwalia's full-sized avatar
💻
Did you try turning it off and on again?

Ekam Walia ekamwalia

💻
Did you try turning it off and on again?
View GitHub Profile
@ekamwalia
ekamwalia / sql101.md
Last active June 6, 2020 12:03
SQL 101

SQL

SQL is used to store data and use data. All data in SQL is stored in the form of tables(think excel spreadsheet) and a group of tables is called a database.

Every table has rows and columns. THe columns represent the properties like Name, Age, Email etc. the rows contain the values for these properties.

Example

mysql> select * from profile;