PostgreSQL – SELECT FROM Table Query
In this tutorial, we will learn to query rows of a PostgreSQL table using SELECT FROM query statement.
PostgreSQL SELECT – All columns and all rows
The syntax of a simple SELECT FROM query is:
</>
Copy
SELECT *
FROM tablename;
This query returns all the columns and all the rows of the table.
