Table

Creating Table

image

Altering Table

image

Add Column

image

Delete

Select

The SELECT statement has the following clauses:

  • Select distinct rows using DISTINCT operator.

  • Sort rows using ORDER BY clause.

  • Filter rows using WHERE clause.

  • Select a subset of rows from a table using LIMIT or FETCH clause.

  • Group rows into groups using GROUP BY clause.

  • Filter groups using HAVING clause.

  • Join with other tables using joins such as INNER JOIN, LEFT JOIN, FULL OUTER JOIN, CROSS JOIN clauses.

  • Perform set operations using UNION, INTERSECT, and EXCEPT.

Representation
Function

ASC

Ascending

DESC

Descending

Column Alias

Insert

Updating

Upsert

Last updated

Was this helpful?