Questions tagged «psql»

PostgreSQL的主要交互式shell。不是PostgreSQL的同义词。

7
Psql列出所有表
我想liferay在我的PostgreSQL安装中列出数据库中的所有表。我怎么做? 我想SELECT * FROM applications;在liferay数据库中执行。applications是我liferay数据库中的一个表。怎么做? 这是我所有数据库的列表: postgres=# \list List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges -----------+----------+----------+-------------+-------------+----------------------- liferay | postgres | UTF8 | en_GB.UTF-8 | en_GB.UTF-8 | =Tc/postgres + | | | | | postgres=CTc/postgres+ | | | | | liferay=CTc/postgres lportal | …
125 postgresql  psql 



5
PostgreSQL不能以“ createdb”作为超级用户创建数据库,但不会输出错误[重复]
这个问题已经在这里有了答案: 在psql中,为什么某些命令无效? (2个答案) 上个月关闭。 我正在使用'postgres'超级用户重新安装Postgresql。通过以下方式登录: sudo -u postgres psql postgres=# createdb database postgres-# \list List of databases Name | Owner | Encoding | Collation | Ctype | Access privileges -----------+----------+----------+-------------+-------------+----------------------- postgres | postgres | UTF8 | en_GB.UTF-8 | en_GB.UTF-8 | template0 | postgres | UTF8 | en_GB.UTF-8 | en_GB.UTF-8 | …
100 postgresql  psql 



11
psql:找不到命令Mac
我通过http://www.postgresql.org/download/macosx/上的图形安装安装了PostgreSQL 。 我在应用程序中看到了它,在应用程序中也有psql终端。我需要psql在常规终端中为另一个正在为应用程序运行的bash脚本工作。 由于某种原因,当我跑步时 psql 在Mac终端中,我的输出是 -bash: psql: command not found 我在终端中运行以下命令: locate psql | grep /bin 和输出是 /Library/PostgreSQL/9.5/bin/psql 然后,我编辑〜/ .bash_profile并将其添加到路径中,如下所示: export PATH = /Library/PostgreSQL/9.5/bin/psql:$PATH 〜/ .bash_profile中唯一的另一件事是SDK man,它位于脚本的底部,正如它应该说的那样。我尝试将浴池设置为/Library/PostgreSQL/9.5/bin/。我也重新启动了终端。 如何使psql工作? 编辑 添加到.bashrc后,当我打开终端时返回此输出 -bash: export: `/Library/PostgreSQL/9.5/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin': not a valid identifier
77 macos  bash  postgresql  psql 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.