https://github.com/andrewjbateman/postgres-database-resources
:clipboard: Resources to learn and use the PostgreSQL database
https://github.com/andrewjbateman/postgres-database-resources
database information postgresql postgresql-database resources
Last synced: 3 months ago
JSON representation
:clipboard: Resources to learn and use the PostgreSQL database
- Host: GitHub
- URL: https://github.com/andrewjbateman/postgres-database-resources
- Owner: AndrewJBateman
- License: mit
- Created: 2020-04-12T20:04:04.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-06-20T06:23:23.000Z (about 5 years ago)
- Last Synced: 2024-12-27T02:44:49.904Z (over 1 year ago)
- Topics: database, information, postgresql, postgresql-database, resources
- Homepage:
- Size: 57.8 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# :zap: PostgreSQL Database Resources
* Information on PostgreSQL v12
* **Note:** to open web links in a new window use: _ctrl+click on link_




## :clipboard: GitHub Repos
* [dhamaniasad: curated list of awesome PostgreSQL software, libraries, tools and resources](https://github.com/dhamaniasad/awesome-postgres)
## :computer: Websites
* [Official website](https://www.postgresql.org/)
* [Postgres interactive terminal](http://postgresguide.com/utilities/psql.html)
* [node-postgres](https://node-postgres.com/) collection of node.js modules for interfacing with a PostgreSQL database. Installed using `npm install pg`. Less code than using callbacks
* [mockaroo](https://www.mockaroo.com/) data generator
## :clipboard: Popular Postgresql shell commands
* `\l` list all databases
* `CREATE DATABASE database1` create a database. `\c database1` connect to database1
* `\d` describe - list of relations .`\dt` inspect tables. `\d+` inspect table & show relation information. `\d table1` shows details of table
* `\q` to quit
* `DROP TABLE table1;` will delete table1
* `\?` list of commands
* `\i c:/filepath` will insert all contents of the file into the database
## :cool: Links
* [PostgREST standalone web server](http://postgrest.org/en/v6.0/) turns a PostgreSQL database directly into a RESTful API.
## :books: Courses
* [Amigoscode/FreeCodeCamp, Learn PostgreSQL Tutorial 4hrs - Full Course for Beginners](https://www.youtube.com/watch?v=qw--VYLpxG4)
## :file_folder: License
* This project is licensed under the terms of the MIT license.
## :envelope: Contact
* Repo created by [ABateman](https://github.com/AndrewJBateman), email: gomezbateman@yahoo.com