πSELECT
Describe about SELECT command
SELECT
command is a command that retrieve data from a single table. The basic syntax will be SELECT <colum_name> FROM <table_name>
PostgreSQL evaluates the FROM
clause before the SELECT
clause .
We can query with all of this way
1) Using PostgreSQL SELECT
statement to query data from one or multiple column
SELECT
statement to query data from one or multiple column2) Using PostgreSQL SELECT
statement to query data from all columns
SELECT
statement to query data from all columns3) Using PostgreSQL SELECT
statement with expressions
SELECT
statement with expressions Last updated