Database queries

Postgresql

Voorwoord

Een andere populaire database, die veel gebruikt wordt in combinatie met bijv. Python is Postgresql. Postgresql is o.a. populair als het gaat om het bouwen van ai-systemen. Postgresql kent een aantal extra data-typen waardoor het werken met LLM's en JSON makkelijker gaat.
Postgresql is een gratis open-source toepassing.

Installatie

Client applicatie

Postgresql is net als MySQL en MariaDB een client-server applicatie. Je gebruikt de client-applicatie om commando's naar de server te sturen.
Hieronder zie je hoe je voor de eerste keer kunt inloggen (standaard naam is postgres zonder wachtwoord)

psql postgres

Nieuwe superuser

CREATE ROLE mijngebruiker WITH LOGIN PASSWORD 'mijnwachtwoord' SUPERUSER;
CREATE DATABASE mijngebruiker;

Cursus bestanden

create database school;
psql postgres -f C:\school_pg.sql

Cheatsheet Postgresql

Option Example Description
[-d] psql -d mydb Connecting to database
-U psql -U john mydb Connecting as a specific user
-h -p psql -h localhost -p 5432 mydb Connecting to a host/port
-U -h -p -d psql -U admin -h 192.168.1.5 -p 2506 -d mydb Connect remote PostgreSQL
-W psql -W mydb Force password
-c psql -c '\c postgres' -c '\dt' Execute a SQL query or command
-H psql -c "\l+" -H postgres > database.html Generate HTML report
-l psql -l List all databases
-f psql mydb -f file.sql Execute commands from a file
-V psql -V Print the psql version