Answers for "postgres version command"

CSS
12

check postgres version

psql --version
Posted by: Guest on May-12-2020
1

check postgres version in ubuntu

$ locate bin/postgres
/usr/lib/postgresql/9.3/bin/postgres
Posted by: Guest on December-16-2020
0

get postgres version

postgres -V
// or 
psql --version
Posted by: Guest on October-01-2020
0

postgresql version command

# SSH
psql --version
# SQL
SELECT version();
Posted by: Guest on March-20-2021
1

postgres version command

SELECT version();
Posted by: Guest on January-13-2021

Code answers related to "postgres version command"

Browse Popular Code Answers by Language