Monday, March 25, 2019

SQL Documentation (From the Khan Academy)

SQL development

If you're new to SQL, you can learn more from this course: SQL.

Creating tables

  • CREATE TABLE customers (id INTEGER PRIMARY KEY, name TEXT, age INTEGER, weight REAL);
    Many data types
  • CREATE TABLE customers (id INTEGER PRIMARY KEY, age INTEGER);
    Using primary keys

Inserting data

Querying data

Aggregating data

Updating and deleting data

Our implementation of SQL is based on a popular dialect of SQL known as SQLite.
To run SQL in the browser, we make use of these technologies:

No comments:

Post a Comment

SQL

I've hit a wall in my SQL studies via the Khan Academy, and as such, I am engaging in additional studies prior to attempting to move for...