🐘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 columnSelect first_name, last_name from customer2) Using PostgreSQL SELECT statement to query data from all columns
SELECT statement to query data from all columnsSelect * from customer3) Using PostgreSQL SELECT statement with expressions
SELECT statement with expressions Select first_name || ' ' || last_name as full_name, email FROM customerLast updated