Data Query

Select

Select statements is used to query data from tables and views. Example: Column Concatenation The SQL statement returns the values of the first_name and last_name lines in one column, and the email column in the other line. SELECT first_name || ‘ ‘ || last_name, email FROM customer; Alias An alias is given to the column Select