Selecting and Projecting Data in PostgreSQL
Selecting or Projecting Data¶ Let us understand different aspects of projecting data. We primarily using SELECT to project the data. We can project all columns using * or some columns using column names. We can provide aliases to a column or expression using AS in SELECT clause. DISTINCT can be used to get the distinct …