SlideShare a Scribd company logo
@agatestudio
PostGreSQL
Aswin Juari
Knight
Agate Studio
@agatestudio@agatestudio@agatestudio
Overview
• Introduction
• Differences with MySQL
• Installation
• Unique Features
• Notes
@agatestudio@agatestudio@agatestudio
Introduction
• Advanced Open Source SQL
– More features
• Unique Features:
– Table Inherintance
– Create Customized Function
– Etc
@agatestudio@agatestudio@agatestudio
Differences With MySQL
PostgreSQL MySQL
Access defined by file configuration:
(Edit postgresql.conf to define who can
access database and from where)
Access is created by MySQL
(create user ‘something’@’some_ip’)
User defined by UNIX/Server User is created with MySQL
Port: 5432 Port: 3306
Can Store Array Cannot Store Array
@agatestudio@agatestudio@agatestudio
Installation
• What you need (Case : PHP – Postgresql)
– Postgresql
– Postgresql-server
– Php-postgresql
– Php-pdo
• Client Tools
– pgadmin
@agatestudio@agatestudio@agatestudio
Installation (2)
• Setting:
– Service postgresql initdb
– /var/lib/pgsql9/conf/pgsql.conf
• Listen address : *
– /var/lib/pgsql9/conf/pg_hba.conf
• Set which host/user that can access postgresql
• Create db
– su – postgres
– Create database something;
– Create user some_user with password ‘some_password’;
– Grant all privileges on database “something” to some_user;
@agatestudio@agatestudio@agatestudio
Unique Feature
• PL/PGSQL
– Scripting in database level
– Advantage:
• source code in application level looks more simpler.
• Extra round trips between client and server are eliminated
• Intermediate result that client doesn’t need do not have to be
transferred between client and server
• Multiple round of query parsing can be avoided.
@agatestudio@agatestudio@agatestudio
Basic Expression PLPGSL
[ <<label>> ]
[ DECLARE declarations ]
BEGIN
statements
END
[ label ];
@agatestudio@agatestudio@agatestudio
Sample PLSQL (Fibonacci)
CREATE OR REPLACE FUNCTION fib(
fib_for integer
) RETURNS integer AS $$
DECLARE
some_var integer := 1;
BEGIN
IF fib_for < 2 THEN
RETURN fib_for;
END IF;
ret := fib(fib_for - 2) + fib(fib_for - 1);
RETURN ret;
END;
$$ LANGUAGE plpgsql;
@agatestudio@agatestudio@agatestudio
• Capital
City_id Name State
1 Bandung Jawa Barat
2 Surabaya Jawa Timur
3 Manado Sulawesi Utara
@agatestudio@agatestudio@agatestudio
Sample PLPSQL (2)
CREATE OR REPLACE FUNCTION test4
(state_name character varying)
RETURNS SETOF character varying AS
$BODY$
BEGIN
return query SELECT name from capital where
"state"=state_name;
END;
$BODY$
LANGUAGE plpgsql;
Select test4(‘Jawa Barat’);
@agatestudio@agatestudio@agatestudio
Sample PGSQL (3)
CREATE TYPE my_type (f1 varchar(10), f2 varchar(10), ... );
CREATE OR REPLACE FUNCTION get_obj (name text)
RETURNS my_type
AS $$
DECLARE result_record my_type;
BEGIN
SELECT f1, f2 INTO result_record.f1, result_record.f2
FROM table1 WHERE pk_col = 42;
SELECT f3 INTO result_record.f3 FROM table2
WHERE pk_col = 24;
return result_record;
END
$$ language plpgsql;
@agatestudio@agatestudio@agatestudio
Unique Feature (2)
• Table Inheritance
– Like Class Inheritance and FOREIGN KEY
– Child Table akan mewarisi atribut dari parent table
– Table Entry (Row) in child table will be inserted to parent
table
– Can be multiple inheritance.
• Advantage:
– The number of rows that processed can be lower
@agatestudio@agatestudio@agatestudio
Example Table inheritance
CREATE TABLE cities (
name text,
population float,
);
CREATE TABLE capitals (
state char(2) )
INHERITS (cities);
@agatestudio@agatestudio@agatestudio
Table Inheritance
• DELETE/UPDATE
– Delete/Update will remove/update rows from original
table and child or parent table.
@agatestudio@agatestudio@agatestudio
Notes
• Utilize Firewall (iptables) to Restrict Access
• Be careful with 8.x. (This version has no ‘create table
A if not exists’
• Quote is different from double quote
• If using data binary, use ‘false’ not false, and ‘true’
not true (In PHP).
@agatestudio@agatestudio@agatestudio
Source
• http://www.postgresql.org/docs/9.2/
• http://www.codeproject.com/Articles/33734/How-
to-write-PL-pgSQL-functions-for-PostgreSQL

More Related Content

PPTX
19. CodeIgniter imagini in mysql
Razvan Raducanu, PhD
 
PDF
Future of HTTP in CakePHP
markstory
 
PDF
C* Summit EU 2013: Cassandra Made Simple with CQL Drivers and DevCenter
DataStax Academy
 
PDF
New in cakephp3
markstory
 
PPTX
2015 02-09 - NoSQL Vorlesung Mosbach
Johannes Hoppe
 
PDF
Advanced Querying with CakePHP 3
José Lorenzo Rodríguez Urdaneta
 
PPTX
NoSQL - Hands on
Johannes Hoppe
 
PDF
Redis the better NoSQL
OpenFest team
 
19. CodeIgniter imagini in mysql
Razvan Raducanu, PhD
 
Future of HTTP in CakePHP
markstory
 
C* Summit EU 2013: Cassandra Made Simple with CQL Drivers and DevCenter
DataStax Academy
 
New in cakephp3
markstory
 
2015 02-09 - NoSQL Vorlesung Mosbach
Johannes Hoppe
 
Advanced Querying with CakePHP 3
José Lorenzo Rodríguez Urdaneta
 
NoSQL - Hands on
Johannes Hoppe
 
Redis the better NoSQL
OpenFest team
 

What's hot (20)

DOCX
Get to know oracle apps username and pwd
Muqthiyar Pasha
 
PDF
2012-03-20 - Getting started with Node.js and MongoDB on MS Azure
Johannes Hoppe
 
PDF
2012-08-29 - NoSQL Bootcamp (Redis, RavenDB & MongoDB für .NET Entwickler)
Johannes Hoppe
 
PDF
Web2py
Lucas D
 
PDF
Using web2py's DAL in other projects or frameworks
Bruno Rocha
 
PDF
Any tutor
Yun-Yan Chi
 
PDF
mongodb-introduction
Tse-Ching Ho
 
KEY
jrubykaigi2010-lt-rubeus
Takeshi AKIMA
 
KEY
занятие8
Oleg Parinov
 
PDF
MongoDB: Replication,Sharding,MapReduce
Takahiro Inoue
 
PPTX
Sequelize
Tarek Raihan
 
PDF
Rob Sullivan at Heroku's Waza 2013: Your Database -- A Story of Indifference
Heroku
 
PDF
与 PHP 和 Perl 使用 MySQL 数据库
YUCHENG HU
 
PPTX
PostgreSQL's Secret NoSQL Superpowers
Amanda Gilmore
 
PPTX
10. CodeIgniter vederea inregistrarilor
Razvan Raducanu, PhD
 
PPTX
Scrap your query boilerplate with specql
Tatu Tarvainen
 
PDF
Couchdb
Brian Smith
 
PDF
ランダム文字ぽいものをつくる
Tetsuji Koyama
 
PPTX
15. CodeIgniter editarea inregistrarilor
Razvan Raducanu, PhD
 
PPTX
21. CodeIgniter search
Razvan Raducanu, PhD
 
Get to know oracle apps username and pwd
Muqthiyar Pasha
 
2012-03-20 - Getting started with Node.js and MongoDB on MS Azure
Johannes Hoppe
 
2012-08-29 - NoSQL Bootcamp (Redis, RavenDB & MongoDB für .NET Entwickler)
Johannes Hoppe
 
Web2py
Lucas D
 
Using web2py's DAL in other projects or frameworks
Bruno Rocha
 
Any tutor
Yun-Yan Chi
 
mongodb-introduction
Tse-Ching Ho
 
jrubykaigi2010-lt-rubeus
Takeshi AKIMA
 
занятие8
Oleg Parinov
 
MongoDB: Replication,Sharding,MapReduce
Takahiro Inoue
 
Sequelize
Tarek Raihan
 
Rob Sullivan at Heroku's Waza 2013: Your Database -- A Story of Indifference
Heroku
 
与 PHP 和 Perl 使用 MySQL 数据库
YUCHENG HU
 
PostgreSQL's Secret NoSQL Superpowers
Amanda Gilmore
 
10. CodeIgniter vederea inregistrarilor
Razvan Raducanu, PhD
 
Scrap your query boilerplate with specql
Tatu Tarvainen
 
Couchdb
Brian Smith
 
ランダム文字ぽいものをつくる
Tetsuji Koyama
 
15. CodeIgniter editarea inregistrarilor
Razvan Raducanu, PhD
 
21. CodeIgniter search
Razvan Raducanu, PhD
 
Ad

Viewers also liked (7)

PPT
Mysql
TSUBHASHRI
 
PPT
Mysql Introduction
hemant meena
 
PDF
BITS: Introduction to MySQL - Introduction and Installation
BITS
 
PDF
BITS: Introduction to relational databases and MySQL - SQL
BITS
 
PPT
MySql slides (ppt)
webhostingguy
 
PPS
Introduction to Mysql
Tushar Chauhan
 
PDF
MySQL partitions tutorial
Giuseppe Maxia
 
Mysql
TSUBHASHRI
 
Mysql Introduction
hemant meena
 
BITS: Introduction to MySQL - Introduction and Installation
BITS
 
BITS: Introduction to relational databases and MySQL - SQL
BITS
 
MySql slides (ppt)
webhostingguy
 
Introduction to Mysql
Tushar Chauhan
 
MySQL partitions tutorial
Giuseppe Maxia
 
Ad

Similar to PostgreSQL (2) by Aswin (20)

PPTX
Sqladria 2009 SRC
tepsum
 
PDF
Geospatial Graphs made easy with OrientDB - Codemotion Warsaw 2016
Luigi Dell'Aquila
 
PDF
Plpgsql internals
Pavel Stěhule
 
ODP
Msql
ksujitha
 
PPTX
DNN Database Tips & Tricks
Will Strohl
 
PDF
Internationalizing CakePHP Applications
Pierre MARTIN
 
PDF
Persistence with Ada Database Objects (ADO)
Stephane Carrez
 
ODP
Slickdemo
Knoldus Inc.
 
PPTX
Resource Routing in ExpressionEngine
MichaelRog
 
PPT
07 Using Oracle-Supported Package in Application Development
rehaniltifat
 
PPTX
Rapid postgresql learning, part 1
Ali MasudianPour
 
PDF
Getting Started with PL/Proxy
Peter Eisentraut
 
PPT
Micro-ORM Introduction - Don't overcomplicate
Kiev ALT.NET
 
PDF
JavaEE 8 on a diet with Payara Micro 5
Payara
 
PDF
Nko workshop - node js crud & deploy
Simon Su
 
PDF
Lazy vs. Eager Loading Strategies in JPA 2.1
Patrycja Wegrzynowicz
 
PPT
A brief introduction to PostgreSQL
Vu Hung Nguyen
 
PDF
NyaruDBにゃるものを使ってみた話 (+Realm比較)
Masaki Oshikawa
 
KEY
CoffeeScript - A Rubyist's Love Affair
Mark
 
PDF
Beginning icloud development - Cesare Rocchi - WhyMCA
Whymca
 
Sqladria 2009 SRC
tepsum
 
Geospatial Graphs made easy with OrientDB - Codemotion Warsaw 2016
Luigi Dell'Aquila
 
Plpgsql internals
Pavel Stěhule
 
Msql
ksujitha
 
DNN Database Tips & Tricks
Will Strohl
 
Internationalizing CakePHP Applications
Pierre MARTIN
 
Persistence with Ada Database Objects (ADO)
Stephane Carrez
 
Slickdemo
Knoldus Inc.
 
Resource Routing in ExpressionEngine
MichaelRog
 
07 Using Oracle-Supported Package in Application Development
rehaniltifat
 
Rapid postgresql learning, part 1
Ali MasudianPour
 
Getting Started with PL/Proxy
Peter Eisentraut
 
Micro-ORM Introduction - Don't overcomplicate
Kiev ALT.NET
 
JavaEE 8 on a diet with Payara Micro 5
Payara
 
Nko workshop - node js crud & deploy
Simon Su
 
Lazy vs. Eager Loading Strategies in JPA 2.1
Patrycja Wegrzynowicz
 
A brief introduction to PostgreSQL
Vu Hung Nguyen
 
NyaruDBにゃるものを使ってみた話 (+Realm比較)
Masaki Oshikawa
 
CoffeeScript - A Rubyist's Love Affair
Mark
 
Beginning icloud development - Cesare Rocchi - WhyMCA
Whymca
 

More from Agate Studio (20)

PDF
Digital Coloring by Raksa
Agate Studio
 
PDF
Computational Advertising by Icha
Agate Studio
 
PDF
Freemium conceptanalytics leemarvin
Agate Studio
 
PDF
Game Programming Pattern by Restya
Agate Studio
 
PDF
Community Management by Yudhit
Agate Studio
 
PDF
[Habli] tds agustus
Agate Studio
 
PDF
Wp quality bar tedy
Agate Studio
 
PDF
Toku DB by Aswin
Agate Studio
 
PDF
Lee marvin pitching-hacks
Agate Studio
 
PDF
Emotiv EPOC by Neneng
Agate Studio
 
PDF
Aksi – Koneksi – Deviasi by Valent
Agate Studio
 
PDF
MMO Design Architecture by Andrew
Agate Studio
 
PDF
How to Persuade People by Dave
Agate Studio
 
PDF
Eddie supersmash goodminton
Agate Studio
 
PDF
Satriyo digital audio gears
Agate Studio
 
PDF
Yinan heroes of-the_strom
Agate Studio
 
PDF
Advanced encryption standard (aes) epul
Agate Studio
 
PDF
Real Time Framework by Tonny
Agate Studio
 
PDF
Unity Camera & Simple Image Editing by Puthut
Agate Studio
 
PDF
Hibernate by Jason
Agate Studio
 
Digital Coloring by Raksa
Agate Studio
 
Computational Advertising by Icha
Agate Studio
 
Freemium conceptanalytics leemarvin
Agate Studio
 
Game Programming Pattern by Restya
Agate Studio
 
Community Management by Yudhit
Agate Studio
 
[Habli] tds agustus
Agate Studio
 
Wp quality bar tedy
Agate Studio
 
Toku DB by Aswin
Agate Studio
 
Lee marvin pitching-hacks
Agate Studio
 
Emotiv EPOC by Neneng
Agate Studio
 
Aksi – Koneksi – Deviasi by Valent
Agate Studio
 
MMO Design Architecture by Andrew
Agate Studio
 
How to Persuade People by Dave
Agate Studio
 
Eddie supersmash goodminton
Agate Studio
 
Satriyo digital audio gears
Agate Studio
 
Yinan heroes of-the_strom
Agate Studio
 
Advanced encryption standard (aes) epul
Agate Studio
 
Real Time Framework by Tonny
Agate Studio
 
Unity Camera & Simple Image Editing by Puthut
Agate Studio
 
Hibernate by Jason
Agate Studio
 

Recently uploaded (20)

PPTX
family health care settings home visit - unit 6 - chn 1 - gnm 1st year.pptx
Priyanshu Anand
 
PPTX
Five Point Someone – Chetan Bhagat | Book Summary & Analysis by Bhupesh Kushwaha
Bhupesh Kushwaha
 
PPTX
CDH. pptx
AneetaSharma15
 
PDF
2.Reshaping-Indias-Political-Map.ppt/pdf/8th class social science Exploring S...
Sandeep Swamy
 
PPTX
Cleaning Validation Ppt Pharmaceutical validation
Ms. Ashatai Patil
 
PDF
Review of Related Literature & Studies.pdf
Thelma Villaflores
 
PPTX
Care of patients with elImination deviation.pptx
AneetaSharma15
 
PPTX
Python-Application-in-Drug-Design by R D Jawarkar.pptx
Rahul Jawarkar
 
PDF
The Minister of Tourism, Culture and Creative Arts, Abla Dzifa Gomashie has e...
nservice241
 
PPTX
An introduction to Prepositions for beginners.pptx
drsiddhantnagine
 
PDF
BÀI TẬP TEST BỔ TRỢ THEO TỪNG CHỦ ĐỀ CỦA TỪNG UNIT KÈM BÀI TẬP NGHE - TIẾNG A...
Nguyen Thanh Tu Collection
 
PPTX
Dakar Framework Education For All- 2000(Act)
santoshmohalik1
 
PDF
Health-The-Ultimate-Treasure (1).pdf/8th class science curiosity /samyans edu...
Sandeep Swamy
 
PPTX
Measures_of_location_-_Averages_and__percentiles_by_DR SURYA K.pptx
Surya Ganesh
 
PPTX
CONCEPT OF CHILD CARE. pptx
AneetaSharma15
 
PPTX
Tips Management in Odoo 18 POS - Odoo Slides
Celine George
 
PDF
What is CFA?? Complete Guide to the Chartered Financial Analyst Program
sp4989653
 
PDF
Virat Kohli- the Pride of Indian cricket
kushpar147
 
PPTX
Kanban Cards _ Mass Action in Odoo 18.2 - Odoo Slides
Celine George
 
PPTX
Applications of matrices In Real Life_20250724_091307_0000.pptx
gehlotkrish03
 
family health care settings home visit - unit 6 - chn 1 - gnm 1st year.pptx
Priyanshu Anand
 
Five Point Someone – Chetan Bhagat | Book Summary & Analysis by Bhupesh Kushwaha
Bhupesh Kushwaha
 
CDH. pptx
AneetaSharma15
 
2.Reshaping-Indias-Political-Map.ppt/pdf/8th class social science Exploring S...
Sandeep Swamy
 
Cleaning Validation Ppt Pharmaceutical validation
Ms. Ashatai Patil
 
Review of Related Literature & Studies.pdf
Thelma Villaflores
 
Care of patients with elImination deviation.pptx
AneetaSharma15
 
Python-Application-in-Drug-Design by R D Jawarkar.pptx
Rahul Jawarkar
 
The Minister of Tourism, Culture and Creative Arts, Abla Dzifa Gomashie has e...
nservice241
 
An introduction to Prepositions for beginners.pptx
drsiddhantnagine
 
BÀI TẬP TEST BỔ TRỢ THEO TỪNG CHỦ ĐỀ CỦA TỪNG UNIT KÈM BÀI TẬP NGHE - TIẾNG A...
Nguyen Thanh Tu Collection
 
Dakar Framework Education For All- 2000(Act)
santoshmohalik1
 
Health-The-Ultimate-Treasure (1).pdf/8th class science curiosity /samyans edu...
Sandeep Swamy
 
Measures_of_location_-_Averages_and__percentiles_by_DR SURYA K.pptx
Surya Ganesh
 
CONCEPT OF CHILD CARE. pptx
AneetaSharma15
 
Tips Management in Odoo 18 POS - Odoo Slides
Celine George
 
What is CFA?? Complete Guide to the Chartered Financial Analyst Program
sp4989653
 
Virat Kohli- the Pride of Indian cricket
kushpar147
 
Kanban Cards _ Mass Action in Odoo 18.2 - Odoo Slides
Celine George
 
Applications of matrices In Real Life_20250724_091307_0000.pptx
gehlotkrish03
 

PostgreSQL (2) by Aswin