https://github.com/martinmorando/sql
Notes, code, and experiments with SQL
https://github.com/martinmorando/sql
sql
Last synced: about 2 months ago
JSON representation
Notes, code, and experiments with SQL
- Host: GitHub
- URL: https://github.com/martinmorando/sql
- Owner: martinmorando
- License: mit
- Created: 2025-03-27T14:25:21.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-04T18:11:39.000Z (about 1 year ago)
- Last Synced: 2025-10-07T19:45:28.686Z (6 months ago)
- Topics: sql
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Notes, Code, and Experiments with SQL
## Quick Overview
- SQL: **S**tructured **Q**uery **L**anguage
- Programming language designed for manipulating relational databases
## Motivations for Mastering SQL
I have used SQL in several projects, such as Resumenes.org, YouShare.TV and [BitcoinArgy.com](https://bitcoinargy.com), specifically with MySQL and SQLite. Now, I'm engaging in a systematic exploration to learn more techniques for optimizing my programs and to incorporate **PostgreSQL** into my skill set.
## Contents
- **PostgreSQL**
- **CLI.md**
- **001-DDL**
- 001-create-table.sql
- 002-alter-table.sql
- 003-drop-table.sql
- 004-truncate-table.sql
- 005-rename-table.sql
- 006-create-user.sql
- **002-DML**
- 001-insert-into.sql
- 002-update.sql
- 003-delete-from.sql
- **003-DQL**
- 001-select.sql
- **004-DCL**
- 001-grant.sql
- 002-revoke.sql