How to Install Hstore in Postgresql
Recently, we've use hstore data type in our database because of its key, value pair functionality and here's how I install hstore in...
https://www.czetsuyatech.com/2021/07/postgresql-install-hstore.html
Recently, we've use hstore data type in our database because of its key, value pair functionality and here's how I install hstore in my ubuntu 12.04:
1.) execute in terminal
2.) execute in the database/schema where you wanted to use hstore datatype:
1.) execute in terminal
>sudo apt-get update >sudo apt-get install postgresql-contrib-9.1
2.) execute in the database/schema where you wanted to use hstore datatype:
>create extension hstore;
1 comment
Thanks! I was looking for this.
Post a Comment