postgresql@13

Object-relational database system with SQL support

brewmacoslinux
Try with needOr install directly
Source

About

Object-relational database system

Commands

psqlcreatedbdropdbpg_dumppg_restorepostgres

Examples

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