🐘SELECT
Describe about SELECT command
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