postgresql@16

Object-relational database system with SQL support

brewmacoslinux
Try with needOr install directly
Source

About

Object-relational database system

Commands

psqlcreatedbdropdbcreateuserdropuserpg_dumppg_restorepostgres

Examples

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