postgresql@14

Object-relational database system with SQL support

brewmacoslinux
Try with needOr install directly
Source

About

Object-relational database system

Commands

psqlcreatedbdropdbpg_dumppg_restorecreateuserdropuserinitdb

Examples

Connect to a PostgreSQL database$ psql -U username -d database_name -h localhost
Create a new database$ createdb -U username my_database
Dump a database to a file for backup$ pg_dump -U username database_name > backup.sql