An open API service indexing awesome lists of open source software.

https://github.com/ccnokes/learn-sql

This is where I'm learning SQL because I'm not great at it
https://github.com/ccnokes/learn-sql

Last synced: over 1 year ago
JSON representation

This is where I'm learning SQL because I'm not great at it

Awesome Lists containing this project

README

          

# My attempt to learn SQL

Probably going to use local sqlite DBs as much as possible to do this, even though it's not as robust as Postgres or mySQL.

## SQLite notes

### Create db

Can use the CLI or from a file:

```
sqlite3 < sql-file-name.sql
```

### Get nicely formatted output

in sqlite CLI, run:

```
.mode column
```