SlideShare a Scribd company logo
1 of 25
Rapid POSTGRESQL
learning, PART-1
BY: ALI MASUDIANPOUR MASUD.AMP@GMAIL.COM
RAPID POSTGRESQL LEARNING. 1
Introduction
In this manual, my assumption is that reader knows basic concepts of database topic.
RAPID POSTGRESQL LEARNING. 2
Introduction
Postgresql
Powerfull OOP relational DBMS
Large community
Open Source
All major Operating Systems such as Linux/ Windows/ Solaris/ Mac and so on…
Started in 1995
Latest version at this moment (June 2013) is 9.2
RAPID POSTGRESQL LEARNING. 3
Features
Supports Procedure languages [pl, pgsql, pljava, plphp, plperl]
Supports multi-version concurrency control (MCC or MVCC)
◦ More details on: https://en.wikipedia.org/wiki/Multiversion_concurrency_control
Supports variety of DATA TYPES including INTEGER, CHARARCTER, BOOLEAN, DATE, INTERVAL, TIMESTAMP
Allows users to define their own objects such as:
◦ DATA TYPES
◦ FUNCTIONS
Supports data integrity such as PK, FK, Restrictions, Cascading and Constraint
Supports binary objects such as pictures, sounds, videos
Open source and free
Main users:
◦ Yahoo, Skype, imtv.com and so on…
RAPID POSTGRESQL LEARNING. 4
Installation
Postgresql is available to download on http://postgresql.org . So you can download it from the
mentioned internet address. (the latest one at writing this document is 9.2)
On my assumption you have an Ubuntu distribution installed on your computer, so to install
Postgresql we can use the following statement:
◦ Sudo apt-get install postgres-9.2
After all processes you can enter to postrgresql shell using the following command:
◦ Sudo –u postgres psql postgres
◦ Note that postgres user is the super user of our installed postgresql
◦ After above command you are logged in to postgresql command line.
RAPID POSTGRESQL LEARNING. 5
Start Up Commands
Basic settings and commands would be like the following lines:
CREATE DATABASE
◦ To create Database in postgresql we use the following command
◦ CREATE DATABASE [database name];
◦ Example: CREATE DATABASE testName;
◦ Or you may be not in postgresql command line, so creating database will be accomplished with the following
statement:
◦ Sudo –u postgres created [table name]
◦ For example: sudo –u postgres created testName
CREATE USER
◦ To create user in postgres, we use the following command:
◦ CREATE USER [username] WITH PASSWORD [password];
◦ For instance: CREATE USER masud WITH PASSWORD ‘masudpassword’;
◦ Other way is outside of postgres command line:
◦ Sudo –u postgres createuser ‘masud’
RAPID POSTGRESQL LEARNING. 6
Start Up Commands
DROP USER
◦ TO drop user the first way would be like below in postgresql command line:
◦ DROP USER [username];
◦ For example: DROP USER masud;
◦ The second way is outside of postgres command line:
◦ Sudo –u postgres dropuser ‘username’
◦ For example: sudo –u postgres dropuser ‘masud’
DROP DATABASE
◦ To drop a database first way would be like bellow in postgresql command line:
◦ DROP DATABASE [database name]
◦ for example: DROP DATABASE ‘testName’;
◦ The second way is outside of postgres command line:
◦ Sudo –u postgres dropdb [db name]
◦ For example: sudo –u postgres dropdb ‘testName’
RAPID POSTGRESQL LEARNING. 7
Start Up Commands
CHANGE PASSWORD OF USER
◦ We can do it by:
◦ Way1: In psql shell type : password username
◦ Example: password masud
◦ Way2: in psql shell type: ALTER USER [username] WITH PASSWORD [new password]
◦ Example: ALTER USER masud WITH PASSWORD ‘masudsnewPassword’
RAPID POSTGRESQL LEARNING. 8
Manage POSTGRESQL Service
In order to handle postgresql services we can use the following commands to [start/ stop/
restart] postgresql service:
◦ Sudo service postgresql start
◦ Sudo service postgresql stop
◦ Sudo service postgresql restart
RAPID POSTGRESQL LEARNING. 9
Important Commands in
POSTGRESQL
There are some short commands in postgresql that each one performs an specific task. In continue I
will introduce you some of them:
◦ i
◦ Imports a dump into database
◦ l
◦ List of databases
◦ d
◦ List of tables
◦ dt
◦ List of tables and relations
◦ h
◦ help
◦ ?
◦ help
◦ df
◦ List of functions
RAPID POSTGRESQL LEARNING. 10
Important Commands in
POSTGRESQL
◦ df+
◦ Same df but with source
◦ timing
◦ Turn on/off timing
◦ Timing shows execution time of a query
◦ password
◦ Change password
◦ q
◦ Quite
◦ c
◦ Change database connection [switch between databases]
◦ dp
◦ Access privileges
◦ conninfo
◦ Current Connection Info
◦ e
◦ Execute command
RAPID POSTGRESQL LEARNING. 11
Important Commands in
POSTGRESQL
◦ pset format [html/ aligned/ unaligned/ wrapped/ html/ latex]
◦ Changes the output format
◦ For instance if we change output format to HTML, any result after that time will be shown in HTML format
◦ pset border [0/1/2]
◦ Set border of result [ for instance border around result table]
◦ 0: none border
◦ 1: normal border
◦ 2: whole table has a border
◦ pset null null
◦ It will write null instead of nothing when found a null value in a query
◦ In order to find out which version of postgres we are using we can use the following command:
◦ SELECT VERSION();
RAPID POSTGRESQL LEARNING. 12
Keywords and Identifiers
◦ Keywords are words that are available in SQL, for instance:
◦ CREATE
◦ DATABASE
◦ ORDER
◦ Identifiers are used to identify objects such as:
◦ TABLE
◦ COLUMN
◦ Note that keywords can not be used as identifiers
◦ Identifiers can be up to 63 characters
◦ Identifiers and Keywords are case insensitive
RAPID POSTGRESQL LEARNING. 13
Comments
◦ In order to comment one line in postgresql we can use -- (two-dash signs)
◦ --this is a comment in psql
◦ For multiline commands we use /* */
◦ /* This is a multiline command in postgresql
postgresql or postgres or psql are same
*/
RAPID POSTGRESQL LEARNING. 14
Data Types
Data types in postgresql
◦ INTEGER
◦ Including 3 size variations:
◦ 2bytes (smallint)
◦ 4bytes (integer)
◦ 8bytes(bigint)
◦ SERIAL
◦ it is used to create unique identifier columns
◦ It will generate a sequence automatically
◦ NUMERIC
◦ Stores large numbers that need exact calculations
RAPID POSTGRESQL LEARNING. 15
Data Types
◦ FLOATING POINT
◦ REAL
◦ DOUBLE
This data types accepts some special non-numeric values such as:
Infinity
-Infinity
NaN(Not a Number)
◦ CHAR
◦ VARCHAR
◦ Varying character
◦ TEXT
◦ Stores strings of any length
RAPID POSTGRESQL LEARNING. 16
Data Types
◦ DATE
◦ Dates must be between single quotes
◦ TIME
◦ TIMESTAMP
◦ Without time zone
◦ With time zone
◦ INTERVAL
◦ POSTGRES SUPPORTS THE FOLLOWING SPECIAL VALUES:
◦ Today
◦ Tomorrow
◦ Yesterday
◦ Infinity
◦ -infinity
RAPID POSTGRESQL LEARNING. 17
Date Style in Postgresql
Postgresql supports 3 different DATESTYLE containing:
◦ ISO
◦ SQL
◦ POSTGRES
We can change DATESTYLE with the following statements:
◦ SET DATESTYLE TO ISO,MDY
◦ Which means ISO and MONTH - DAY – YEAR
◦ SET DATESTYLE TO SQL, MDY
◦ SET DATESTYLE TO POSTGRES,MDY
RAPID POSTGRESQL LEARNING. 18
INTERVALS
Intervals represent a duration of a time
Unites in interval include:
◦ DAY
◦ HOUR
◦ MINUTE
◦ SECOND
◦ YEAR TO MONTH
◦ DAY TO HOUR
◦ DAY TO MINUTE
◦ DAY TO SECOND
◦ HOUR TO MINUTE
◦ HOUR TO SECOND
◦ MINUTE TO SECOND
◦ …
RAPID POSTGRESQL LEARNING. 19
INTERVALS
◦ Example:
◦ SET INTERVALSTYLE TO sql_standard
◦ Now try to type: SELECT INTERVAL ‘1 14:13:15’;
◦ RESULT: 1 14:13:15
◦ SET INTERVALSTYLE TO postgres;
◦ Now try to type: SELECT INTERVAL ‘1 14:13:15’;
◦ RESULT: 1 day 14:13:15
◦ SET INTERVALSTYLE TO iso_8601
◦ Now try to type: SELECT INTERVAL ‘1 14:13:15’;
◦ RESULT: P1 DT 14H13M15S
RAPID POSTGRESQL LEARNING. 20
Boolean Data Type
It holds three values
◦ True
◦ False
◦ Unknown
◦ TRUE [can be one of the following values]
◦ T
◦ True
◦ Yes
◦ Y
◦ On
◦ 1
◦ False [can be one of the following values]
◦ False
◦ F
◦ NO
◦ Off
◦ 0
All Values except true and false should be between single quotes.
RAPID POSTGRESQL LEARNING. 21
Enumerated Data Types
Enums are not predefined in postgresql, this means that Postgresql does not officially supports
mysql’s ENUM data type. In order to achieve an Enumeration data type we must create our own.
CREATE ENUM
◦ CREATE TYPE [type name] AS ENUM([data array])
◦ For example: CREATE TYPE colors AS ENUM(‘red’,’blue’,’green’);
HOW TO USE
◦ Just like another data types
◦ If an integer is: INTEGER variable name -> it would be: colors color
◦ [ENUM NAME] [variable name]
Notes:
◦ Enums are case sensitive
◦ Sort is important in enums, for instance we must start with smallest values to the largest. For instance it is
better to use ENUM(‘red’,’blue’,’green’) instead of ENUM(‘green’,’red’,’blue’)
RAPID POSTGRESQL LEARNING. 22
GEOMETRIC Data Types
These data types are used to represent two dimensional objects
◦ Objects can be point, box, line, polygon, circle, path
◦ POINT
◦ To define a point (x,y)
◦ Example: (‘2,3’) or (‘(2,3)’)
◦ LINE
◦ To define a line using 2 points
◦ Example: ((x1,y1),(x2,y2))
◦ PATH
◦ Represented by lists of connected points
◦ Example: (‘(2,3,4,5)’) or (‘*2,3,4,5+’)
◦ CIRCLE
◦ For a circle
◦ Example: (‘2,3,4’) -> in this example 4 is radius
◦ BOX
◦ To define a rectangle for instance : ((x1,y1),(x2,y2))
RAPID POSTGRESQL LEARNING. 23
Arrays
To define an array we add brackets after data type or we can use from array keyword.
◦ Test INTEGER[]
◦ Test INTEGER[][]
◦ Test INTEGER ARRAY
◦ In insert mode:
◦ In one-dimension: (‘,1,2,3,4,5,6,7-’)
◦ In two-dimension: (‘,1,2,3,4-,,5,6,7,8-’)
RAPID POSTGRESQL LEARNING. 24
End of part 1
This is the end of part 1
◦ In the next part following topics will be covered
◦ Creating tables
◦ PRIMARY and FORIGN Keys
◦ Check Constraint
◦ NOT NULL Constraint
◦ UNIQUE Constraint
◦ DEFAULT values
◦ CASCADE
◦ CRUD
◦ INSERT
◦ UPDATE
◦ DELETE
◦ DELETE CASCADE
◦ ON DELETE CASCADE
◦ ON UPDATE CASCADE
◦ TRUNCATE
◦ QUERIES
◦ …
RAPID POSTGRESQL LEARNING. 25

More Related Content

What's hot

BITS: Introduction to relational databases and MySQL - SQL
BITS: Introduction to relational databases and MySQL - SQLBITS: Introduction to relational databases and MySQL - SQL
BITS: Introduction to relational databases and MySQL - SQLBITS
 
Scaling Databases with DBIx::Router
Scaling Databases with DBIx::RouterScaling Databases with DBIx::Router
Scaling Databases with DBIx::RouterPerrin Harkins
 
2015 02-09 - NoSQL Vorlesung Mosbach
2015 02-09 - NoSQL Vorlesung Mosbach2015 02-09 - NoSQL Vorlesung Mosbach
2015 02-09 - NoSQL Vorlesung MosbachJohannes Hoppe
 
PostgreSQL- An Introduction
PostgreSQL- An IntroductionPostgreSQL- An Introduction
PostgreSQL- An IntroductionSmita Prasad
 
Store and Process Big Data with Hadoop and Cassandra
Store and Process Big Data with Hadoop and CassandraStore and Process Big Data with Hadoop and Cassandra
Store and Process Big Data with Hadoop and CassandraDeependra Ariyadewa
 
Data Processing Inside PostgreSQL
Data Processing Inside PostgreSQLData Processing Inside PostgreSQL
Data Processing Inside PostgreSQLEDB
 
Lab1-DB-Cassandra
Lab1-DB-CassandraLab1-DB-Cassandra
Lab1-DB-CassandraLilia Sfaxi
 
2012-08-29 - NoSQL Bootcamp (Redis, RavenDB & MongoDB für .NET Entwickler)
2012-08-29 - NoSQL Bootcamp (Redis, RavenDB & MongoDB für .NET Entwickler)2012-08-29 - NoSQL Bootcamp (Redis, RavenDB & MongoDB für .NET Entwickler)
2012-08-29 - NoSQL Bootcamp (Redis, RavenDB & MongoDB für .NET Entwickler)Johannes Hoppe
 

What's hot (20)

My sql.ppt
My sql.pptMy sql.ppt
My sql.ppt
 
BITS: Introduction to relational databases and MySQL - SQL
BITS: Introduction to relational databases and MySQL - SQLBITS: Introduction to relational databases and MySQL - SQL
BITS: Introduction to relational databases and MySQL - SQL
 
Sql tutorial
Sql tutorialSql tutorial
Sql tutorial
 
Scaling Databases with DBIx::Router
Scaling Databases with DBIx::RouterScaling Databases with DBIx::Router
Scaling Databases with DBIx::Router
 
MySql:Basics
MySql:BasicsMySql:Basics
MySql:Basics
 
2015 02-09 - NoSQL Vorlesung Mosbach
2015 02-09 - NoSQL Vorlesung Mosbach2015 02-09 - NoSQL Vorlesung Mosbach
2015 02-09 - NoSQL Vorlesung Mosbach
 
MYSQL
MYSQLMYSQL
MYSQL
 
Django - sql alchemy - jquery
Django - sql alchemy - jqueryDjango - sql alchemy - jquery
Django - sql alchemy - jquery
 
MongoDB-SESSION03
MongoDB-SESSION03MongoDB-SESSION03
MongoDB-SESSION03
 
PostgreSQL- An Introduction
PostgreSQL- An IntroductionPostgreSQL- An Introduction
PostgreSQL- An Introduction
 
Store and Process Big Data with Hadoop and Cassandra
Store and Process Big Data with Hadoop and CassandraStore and Process Big Data with Hadoop and Cassandra
Store and Process Big Data with Hadoop and Cassandra
 
Data Processing Inside PostgreSQL
Data Processing Inside PostgreSQLData Processing Inside PostgreSQL
Data Processing Inside PostgreSQL
 
Html web sql database
Html web sql databaseHtml web sql database
Html web sql database
 
Cassandra 2.2 & 3.0
Cassandra 2.2 & 3.0Cassandra 2.2 & 3.0
Cassandra 2.2 & 3.0
 
Msql
Msql Msql
Msql
 
Lab1-DB-Cassandra
Lab1-DB-CassandraLab1-DB-Cassandra
Lab1-DB-Cassandra
 
2012-08-29 - NoSQL Bootcamp (Redis, RavenDB & MongoDB für .NET Entwickler)
2012-08-29 - NoSQL Bootcamp (Redis, RavenDB & MongoDB für .NET Entwickler)2012-08-29 - NoSQL Bootcamp (Redis, RavenDB & MongoDB für .NET Entwickler)
2012-08-29 - NoSQL Bootcamp (Redis, RavenDB & MongoDB für .NET Entwickler)
 
Oracle PL-SQL
Oracle PL-SQLOracle PL-SQL
Oracle PL-SQL
 
Mysql Ppt
Mysql PptMysql Ppt
Mysql Ppt
 
Lobos Introduction
Lobos IntroductionLobos Introduction
Lobos Introduction
 

Similar to Rapid PostgreSQL Learning Guide

What’s New In PostgreSQL 9.3
What’s New In PostgreSQL 9.3What’s New In PostgreSQL 9.3
What’s New In PostgreSQL 9.3Pavan Deolasee
 
Postgresql quick guide
Postgresql quick guidePostgresql quick guide
Postgresql quick guideAshoka Vanjare
 
Beyond Wordcount with spark datasets (and scalaing) - Nide PDX Jan 2018
Beyond Wordcount  with spark datasets (and scalaing) - Nide PDX Jan 2018Beyond Wordcount  with spark datasets (and scalaing) - Nide PDX Jan 2018
Beyond Wordcount with spark datasets (and scalaing) - Nide PDX Jan 2018Holden Karau
 
PostgreSQL Database Slides
PostgreSQL Database SlidesPostgreSQL Database Slides
PostgreSQL Database Slidesmetsarin
 
MySQL up and running 30 minutes.pdf
MySQL up and running 30 minutes.pdfMySQL up and running 30 minutes.pdf
MySQL up and running 30 minutes.pdfVinicius M Grippa
 
A brief introduction to PostgreSQL
A brief introduction to PostgreSQLA brief introduction to PostgreSQL
A brief introduction to PostgreSQLVu Hung Nguyen
 
Connecting and using PostgreSQL database with psycopg2 [Python 2.7]
Connecting and using PostgreSQL database with psycopg2 [Python 2.7]Connecting and using PostgreSQL database with psycopg2 [Python 2.7]
Connecting and using PostgreSQL database with psycopg2 [Python 2.7]Dinesh Neupane
 
Introducing Apache Spark's Data Frames and Dataset APIs workshop series
Introducing Apache Spark's Data Frames and Dataset APIs workshop seriesIntroducing Apache Spark's Data Frames and Dataset APIs workshop series
Introducing Apache Spark's Data Frames and Dataset APIs workshop seriesHolden Karau
 
Dynamic websites lec3
Dynamic websites lec3Dynamic websites lec3
Dynamic websites lec3Belal Arfa
 
PostgreSQL 9.5 - Major Features
PostgreSQL 9.5 - Major FeaturesPostgreSQL 9.5 - Major Features
PostgreSQL 9.5 - Major FeaturesInMobi Technology
 
Postgresql Database Administration- Day3
Postgresql Database Administration- Day3Postgresql Database Administration- Day3
Postgresql Database Administration- Day3PoguttuezhiniVP
 
OpenGurukul : Database : PostgreSQL
OpenGurukul : Database : PostgreSQLOpenGurukul : Database : PostgreSQL
OpenGurukul : Database : PostgreSQLOpen Gurukul
 
My SQL Skills Killed the Server
My SQL Skills Killed the ServerMy SQL Skills Killed the Server
My SQL Skills Killed the ServerdevObjective
 
OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...
OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...
OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...Alex Zaballa
 

Similar to Rapid PostgreSQL Learning Guide (20)

Postgresql
PostgresqlPostgresql
Postgresql
 
DataBase Management System Lab File
DataBase Management System Lab FileDataBase Management System Lab File
DataBase Management System Lab File
 
What’s New In PostgreSQL 9.3
What’s New In PostgreSQL 9.3What’s New In PostgreSQL 9.3
What’s New In PostgreSQL 9.3
 
Postgresql quick guide
Postgresql quick guidePostgresql quick guide
Postgresql quick guide
 
Beyond Wordcount with spark datasets (and scalaing) - Nide PDX Jan 2018
Beyond Wordcount  with spark datasets (and scalaing) - Nide PDX Jan 2018Beyond Wordcount  with spark datasets (and scalaing) - Nide PDX Jan 2018
Beyond Wordcount with spark datasets (and scalaing) - Nide PDX Jan 2018
 
PostgreSQL Database Slides
PostgreSQL Database SlidesPostgreSQL Database Slides
PostgreSQL Database Slides
 
MySQL up and running 30 minutes.pdf
MySQL up and running 30 minutes.pdfMySQL up and running 30 minutes.pdf
MySQL up and running 30 minutes.pdf
 
A brief introduction to PostgreSQL
A brief introduction to PostgreSQLA brief introduction to PostgreSQL
A brief introduction to PostgreSQL
 
Connecting and using PostgreSQL database with psycopg2 [Python 2.7]
Connecting and using PostgreSQL database with psycopg2 [Python 2.7]Connecting and using PostgreSQL database with psycopg2 [Python 2.7]
Connecting and using PostgreSQL database with psycopg2 [Python 2.7]
 
PLSQL
PLSQLPLSQL
PLSQL
 
SQL - RDBMS Concepts
SQL - RDBMS ConceptsSQL - RDBMS Concepts
SQL - RDBMS Concepts
 
Introducing Apache Spark's Data Frames and Dataset APIs workshop series
Introducing Apache Spark's Data Frames and Dataset APIs workshop seriesIntroducing Apache Spark's Data Frames and Dataset APIs workshop series
Introducing Apache Spark's Data Frames and Dataset APIs workshop series
 
Dynamic websites lec3
Dynamic websites lec3Dynamic websites lec3
Dynamic websites lec3
 
PostgreSQL 9.5 - Major Features
PostgreSQL 9.5 - Major FeaturesPostgreSQL 9.5 - Major Features
PostgreSQL 9.5 - Major Features
 
Postgresql Database Administration- Day3
Postgresql Database Administration- Day3Postgresql Database Administration- Day3
Postgresql Database Administration- Day3
 
OpenGurukul : Database : PostgreSQL
OpenGurukul : Database : PostgreSQLOpenGurukul : Database : PostgreSQL
OpenGurukul : Database : PostgreSQL
 
My SQL Skills Killed the Server
My SQL Skills Killed the ServerMy SQL Skills Killed the Server
My SQL Skills Killed the Server
 
Sql killedserver
Sql killedserverSql killedserver
Sql killedserver
 
Cassandra
CassandraCassandra
Cassandra
 
OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...
OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...
OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...
 

More from Ali MasudianPour

An Introduction to REDIS NoSQL database
An Introduction to REDIS NoSQL databaseAn Introduction to REDIS NoSQL database
An Introduction to REDIS NoSQL databaseAli MasudianPour
 
Rapid postgresql learning, part 4
Rapid postgresql learning, part 4Rapid postgresql learning, part 4
Rapid postgresql learning, part 4Ali MasudianPour
 
Rapid postgresql learning, part 3
Rapid postgresql learning, part 3Rapid postgresql learning, part 3
Rapid postgresql learning, part 3Ali MasudianPour
 
A comparison between C# and Java
A comparison between C# and JavaA comparison between C# and Java
A comparison between C# and JavaAli MasudianPour
 
Xp exterme-programming-model
Xp exterme-programming-modelXp exterme-programming-model
Xp exterme-programming-modelAli MasudianPour
 

More from Ali MasudianPour (6)

Start using less css
Start using less cssStart using less css
Start using less css
 
An Introduction to REDIS NoSQL database
An Introduction to REDIS NoSQL databaseAn Introduction to REDIS NoSQL database
An Introduction to REDIS NoSQL database
 
Rapid postgresql learning, part 4
Rapid postgresql learning, part 4Rapid postgresql learning, part 4
Rapid postgresql learning, part 4
 
Rapid postgresql learning, part 3
Rapid postgresql learning, part 3Rapid postgresql learning, part 3
Rapid postgresql learning, part 3
 
A comparison between C# and Java
A comparison between C# and JavaA comparison between C# and Java
A comparison between C# and Java
 
Xp exterme-programming-model
Xp exterme-programming-modelXp exterme-programming-model
Xp exterme-programming-model
 

Recently uploaded

Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 

Recently uploaded (20)

Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 

Rapid PostgreSQL Learning Guide

  • 1. Rapid POSTGRESQL learning, PART-1 BY: ALI MASUDIANPOUR MASUD.AMP@GMAIL.COM RAPID POSTGRESQL LEARNING. 1
  • 2. Introduction In this manual, my assumption is that reader knows basic concepts of database topic. RAPID POSTGRESQL LEARNING. 2
  • 3. Introduction Postgresql Powerfull OOP relational DBMS Large community Open Source All major Operating Systems such as Linux/ Windows/ Solaris/ Mac and so on… Started in 1995 Latest version at this moment (June 2013) is 9.2 RAPID POSTGRESQL LEARNING. 3
  • 4. Features Supports Procedure languages [pl, pgsql, pljava, plphp, plperl] Supports multi-version concurrency control (MCC or MVCC) ◦ More details on: https://en.wikipedia.org/wiki/Multiversion_concurrency_control Supports variety of DATA TYPES including INTEGER, CHARARCTER, BOOLEAN, DATE, INTERVAL, TIMESTAMP Allows users to define their own objects such as: ◦ DATA TYPES ◦ FUNCTIONS Supports data integrity such as PK, FK, Restrictions, Cascading and Constraint Supports binary objects such as pictures, sounds, videos Open source and free Main users: ◦ Yahoo, Skype, imtv.com and so on… RAPID POSTGRESQL LEARNING. 4
  • 5. Installation Postgresql is available to download on http://postgresql.org . So you can download it from the mentioned internet address. (the latest one at writing this document is 9.2) On my assumption you have an Ubuntu distribution installed on your computer, so to install Postgresql we can use the following statement: ◦ Sudo apt-get install postgres-9.2 After all processes you can enter to postrgresql shell using the following command: ◦ Sudo –u postgres psql postgres ◦ Note that postgres user is the super user of our installed postgresql ◦ After above command you are logged in to postgresql command line. RAPID POSTGRESQL LEARNING. 5
  • 6. Start Up Commands Basic settings and commands would be like the following lines: CREATE DATABASE ◦ To create Database in postgresql we use the following command ◦ CREATE DATABASE [database name]; ◦ Example: CREATE DATABASE testName; ◦ Or you may be not in postgresql command line, so creating database will be accomplished with the following statement: ◦ Sudo –u postgres created [table name] ◦ For example: sudo –u postgres created testName CREATE USER ◦ To create user in postgres, we use the following command: ◦ CREATE USER [username] WITH PASSWORD [password]; ◦ For instance: CREATE USER masud WITH PASSWORD ‘masudpassword’; ◦ Other way is outside of postgres command line: ◦ Sudo –u postgres createuser ‘masud’ RAPID POSTGRESQL LEARNING. 6
  • 7. Start Up Commands DROP USER ◦ TO drop user the first way would be like below in postgresql command line: ◦ DROP USER [username]; ◦ For example: DROP USER masud; ◦ The second way is outside of postgres command line: ◦ Sudo –u postgres dropuser ‘username’ ◦ For example: sudo –u postgres dropuser ‘masud’ DROP DATABASE ◦ To drop a database first way would be like bellow in postgresql command line: ◦ DROP DATABASE [database name] ◦ for example: DROP DATABASE ‘testName’; ◦ The second way is outside of postgres command line: ◦ Sudo –u postgres dropdb [db name] ◦ For example: sudo –u postgres dropdb ‘testName’ RAPID POSTGRESQL LEARNING. 7
  • 8. Start Up Commands CHANGE PASSWORD OF USER ◦ We can do it by: ◦ Way1: In psql shell type : password username ◦ Example: password masud ◦ Way2: in psql shell type: ALTER USER [username] WITH PASSWORD [new password] ◦ Example: ALTER USER masud WITH PASSWORD ‘masudsnewPassword’ RAPID POSTGRESQL LEARNING. 8
  • 9. Manage POSTGRESQL Service In order to handle postgresql services we can use the following commands to [start/ stop/ restart] postgresql service: ◦ Sudo service postgresql start ◦ Sudo service postgresql stop ◦ Sudo service postgresql restart RAPID POSTGRESQL LEARNING. 9
  • 10. Important Commands in POSTGRESQL There are some short commands in postgresql that each one performs an specific task. In continue I will introduce you some of them: ◦ i ◦ Imports a dump into database ◦ l ◦ List of databases ◦ d ◦ List of tables ◦ dt ◦ List of tables and relations ◦ h ◦ help ◦ ? ◦ help ◦ df ◦ List of functions RAPID POSTGRESQL LEARNING. 10
  • 11. Important Commands in POSTGRESQL ◦ df+ ◦ Same df but with source ◦ timing ◦ Turn on/off timing ◦ Timing shows execution time of a query ◦ password ◦ Change password ◦ q ◦ Quite ◦ c ◦ Change database connection [switch between databases] ◦ dp ◦ Access privileges ◦ conninfo ◦ Current Connection Info ◦ e ◦ Execute command RAPID POSTGRESQL LEARNING. 11
  • 12. Important Commands in POSTGRESQL ◦ pset format [html/ aligned/ unaligned/ wrapped/ html/ latex] ◦ Changes the output format ◦ For instance if we change output format to HTML, any result after that time will be shown in HTML format ◦ pset border [0/1/2] ◦ Set border of result [ for instance border around result table] ◦ 0: none border ◦ 1: normal border ◦ 2: whole table has a border ◦ pset null null ◦ It will write null instead of nothing when found a null value in a query ◦ In order to find out which version of postgres we are using we can use the following command: ◦ SELECT VERSION(); RAPID POSTGRESQL LEARNING. 12
  • 13. Keywords and Identifiers ◦ Keywords are words that are available in SQL, for instance: ◦ CREATE ◦ DATABASE ◦ ORDER ◦ Identifiers are used to identify objects such as: ◦ TABLE ◦ COLUMN ◦ Note that keywords can not be used as identifiers ◦ Identifiers can be up to 63 characters ◦ Identifiers and Keywords are case insensitive RAPID POSTGRESQL LEARNING. 13
  • 14. Comments ◦ In order to comment one line in postgresql we can use -- (two-dash signs) ◦ --this is a comment in psql ◦ For multiline commands we use /* */ ◦ /* This is a multiline command in postgresql postgresql or postgres or psql are same */ RAPID POSTGRESQL LEARNING. 14
  • 15. Data Types Data types in postgresql ◦ INTEGER ◦ Including 3 size variations: ◦ 2bytes (smallint) ◦ 4bytes (integer) ◦ 8bytes(bigint) ◦ SERIAL ◦ it is used to create unique identifier columns ◦ It will generate a sequence automatically ◦ NUMERIC ◦ Stores large numbers that need exact calculations RAPID POSTGRESQL LEARNING. 15
  • 16. Data Types ◦ FLOATING POINT ◦ REAL ◦ DOUBLE This data types accepts some special non-numeric values such as: Infinity -Infinity NaN(Not a Number) ◦ CHAR ◦ VARCHAR ◦ Varying character ◦ TEXT ◦ Stores strings of any length RAPID POSTGRESQL LEARNING. 16
  • 17. Data Types ◦ DATE ◦ Dates must be between single quotes ◦ TIME ◦ TIMESTAMP ◦ Without time zone ◦ With time zone ◦ INTERVAL ◦ POSTGRES SUPPORTS THE FOLLOWING SPECIAL VALUES: ◦ Today ◦ Tomorrow ◦ Yesterday ◦ Infinity ◦ -infinity RAPID POSTGRESQL LEARNING. 17
  • 18. Date Style in Postgresql Postgresql supports 3 different DATESTYLE containing: ◦ ISO ◦ SQL ◦ POSTGRES We can change DATESTYLE with the following statements: ◦ SET DATESTYLE TO ISO,MDY ◦ Which means ISO and MONTH - DAY – YEAR ◦ SET DATESTYLE TO SQL, MDY ◦ SET DATESTYLE TO POSTGRES,MDY RAPID POSTGRESQL LEARNING. 18
  • 19. INTERVALS Intervals represent a duration of a time Unites in interval include: ◦ DAY ◦ HOUR ◦ MINUTE ◦ SECOND ◦ YEAR TO MONTH ◦ DAY TO HOUR ◦ DAY TO MINUTE ◦ DAY TO SECOND ◦ HOUR TO MINUTE ◦ HOUR TO SECOND ◦ MINUTE TO SECOND ◦ … RAPID POSTGRESQL LEARNING. 19
  • 20. INTERVALS ◦ Example: ◦ SET INTERVALSTYLE TO sql_standard ◦ Now try to type: SELECT INTERVAL ‘1 14:13:15’; ◦ RESULT: 1 14:13:15 ◦ SET INTERVALSTYLE TO postgres; ◦ Now try to type: SELECT INTERVAL ‘1 14:13:15’; ◦ RESULT: 1 day 14:13:15 ◦ SET INTERVALSTYLE TO iso_8601 ◦ Now try to type: SELECT INTERVAL ‘1 14:13:15’; ◦ RESULT: P1 DT 14H13M15S RAPID POSTGRESQL LEARNING. 20
  • 21. Boolean Data Type It holds three values ◦ True ◦ False ◦ Unknown ◦ TRUE [can be one of the following values] ◦ T ◦ True ◦ Yes ◦ Y ◦ On ◦ 1 ◦ False [can be one of the following values] ◦ False ◦ F ◦ NO ◦ Off ◦ 0 All Values except true and false should be between single quotes. RAPID POSTGRESQL LEARNING. 21
  • 22. Enumerated Data Types Enums are not predefined in postgresql, this means that Postgresql does not officially supports mysql’s ENUM data type. In order to achieve an Enumeration data type we must create our own. CREATE ENUM ◦ CREATE TYPE [type name] AS ENUM([data array]) ◦ For example: CREATE TYPE colors AS ENUM(‘red’,’blue’,’green’); HOW TO USE ◦ Just like another data types ◦ If an integer is: INTEGER variable name -> it would be: colors color ◦ [ENUM NAME] [variable name] Notes: ◦ Enums are case sensitive ◦ Sort is important in enums, for instance we must start with smallest values to the largest. For instance it is better to use ENUM(‘red’,’blue’,’green’) instead of ENUM(‘green’,’red’,’blue’) RAPID POSTGRESQL LEARNING. 22
  • 23. GEOMETRIC Data Types These data types are used to represent two dimensional objects ◦ Objects can be point, box, line, polygon, circle, path ◦ POINT ◦ To define a point (x,y) ◦ Example: (‘2,3’) or (‘(2,3)’) ◦ LINE ◦ To define a line using 2 points ◦ Example: ((x1,y1),(x2,y2)) ◦ PATH ◦ Represented by lists of connected points ◦ Example: (‘(2,3,4,5)’) or (‘*2,3,4,5+’) ◦ CIRCLE ◦ For a circle ◦ Example: (‘2,3,4’) -> in this example 4 is radius ◦ BOX ◦ To define a rectangle for instance : ((x1,y1),(x2,y2)) RAPID POSTGRESQL LEARNING. 23
  • 24. Arrays To define an array we add brackets after data type or we can use from array keyword. ◦ Test INTEGER[] ◦ Test INTEGER[][] ◦ Test INTEGER ARRAY ◦ In insert mode: ◦ In one-dimension: (‘,1,2,3,4,5,6,7-’) ◦ In two-dimension: (‘,1,2,3,4-,,5,6,7,8-’) RAPID POSTGRESQL LEARNING. 24
  • 25. End of part 1 This is the end of part 1 ◦ In the next part following topics will be covered ◦ Creating tables ◦ PRIMARY and FORIGN Keys ◦ Check Constraint ◦ NOT NULL Constraint ◦ UNIQUE Constraint ◦ DEFAULT values ◦ CASCADE ◦ CRUD ◦ INSERT ◦ UPDATE ◦ DELETE ◦ DELETE CASCADE ◦ ON DELETE CASCADE ◦ ON UPDATE CASCADE ◦ TRUNCATE ◦ QUERIES ◦ … RAPID POSTGRESQL LEARNING. 25