PostgreSQL: Which version of PostgreSQL am I running?

后端 未结 16 890
迷失自我
迷失自我 2020-12-02 03:22

I\'m in a corporate environment (running Debian Linux) and didn\'t install it myself. I access the databases using Navicat or phpPgAdmin (if that helps). I also don\'t have

16条回答
  •  情话喂你
    2020-12-02 03:52

    If Select version() returns with Memo try using the command this way:

    Select version::char(100) 
    

    or

    Select version::varchar(100)
    

提交回复
热议问题