3

在命令行中使用 psql 时,如何查看数据表中的所有条目?

数据库名称是 newproject。

newproject=#

我试过 \l (但这个列出所有数据库)

我正在尝试查看数据表中的所有条目。我正在尝试验证我从我的网络应用程序中输入的测试条目是否正确存储。

4

1 回答 1

24

If I recall correctly, \dt will show all tables in the database. Anyway, you can type \? to show available commands.

Selecting every row in a table is just a basic SQL command :

SELECT * FROM your_table;
于 2012-10-15T19:33:27.667 回答