aboutsummaryrefslogtreecommitdiff
path: root/postgresql
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2021-04-03 00:37:03 +0200
committerMateja <mail@matejamaric.com>2021-04-03 00:37:03 +0200
commita945feb02f6d64df2219ea1044251a7fe2ea98fc (patch)
treefe0242495eb35317fd5358e403a047657dfa04b5 /postgresql
downloadmisc-a945feb02f6d64df2219ea1044251a7fe2ea98fc.tar.gz
misc-a945feb02f6d64df2219ea1044251a7fe2ea98fc.zip
Initial commit.
Diffstat (limited to 'postgresql')
-rw-r--r--postgresql50
1 files changed, 50 insertions, 0 deletions
diff --git a/postgresql b/postgresql
new file mode 100644
index 0000000..63b2dc2
--- /dev/null
+++ b/postgresql
@@ -0,0 +1,50 @@
+pacman -S postgresql
+chmod postgres:postgres /var/lib/postgres
+
+sudo -iu postgres
+initdb -D /var/lib/postgres/data
+
+vim data/pg_hba.conf
+vim data/postgresql.conf
+
+'''
+exit
+systemd restart postgres
+sudo -iu postgres
+'''
+
+createuser user_name
+createdb -O db_owner db_name
+psql db_name db_user
+
+\du
+\l
+\c db
+\dt
+\q
+
+
+End everything with ;
+
+CREATE DATABASE d
+USE d
+DROP DATABASE d
+CREATE TABLE t(...)
+DROP TABLE t
+TRUNCATE TABLE t
+
+INSERT INTO t VALUES(...)
+SELECT ... FROM t [WHERE ...]
+UPDATE t SET ... WHERE ...
+DELETE FROM t WHERE ...
+
+ALTER DATABASE name RENAME TO new_name
+ALTER DATABASE name OWNER TO new_owner
+
+ALTER TABLE name RENAME TO new_name
+ALTER TABLE name SET SCHEMA new_schema
+
+SQL DDL (Date Definition Language) - create, alter, drop, rename, truncate, comment
+SQL DQL (Date Query Language) - select
+SQL DML (Date Manipulation Language) - insert, update, delete, merge, call, explain plan, lock table
+SQL DCL (Date Control Language) - grant, revoke