/
Overview of the Structure of eSQL Statements
Overview of the Structure of eSQL Statements
The structure of statements in eSQL hardly differs from SQL. An eSQL statement consists of three parts, the SELECT clause, the FROM clause, and the WHERE clause. The SELECT clause is mandatory; both other clauses are optional. However, omitting the FROM clause is only rarely sensible. Thus
Select 1
is a valid statement.
All three clauses can become very complex and also contain other statements as subselects. The clauses are covered in more detail in separate sections.
Several statements can be linked with the keyword UNION and EXCEPT as in SQL.
, multiple selections available,
Related content
SELECT Clause
SELECT Clause
More like this
eSQL – Reference
eSQL – Reference
More like this
Literals
Literals
More like this
Using eSQL
Using eSQL
More like this
WHERE Clause
WHERE Clause
More like this
References
References
More like this