FROM Clause

Specifies the database tables or views involved in a SELECT statement.

Syntax

...FROM table-expression [,...]

Parameters

Examples

Usage

The SELECT statement requires a table list to specify which tables are used by the statement.

Note: Although this description refers to tables, it also applies to views unless otherwise noted.

The FROM table list creates a result set consisting of all the columns from all the tables specified. Initially, all combinations of rows in the component tables are in the result set, and the number of combinations is usually reduced by join conditions and/or WHERE conditions.

  • SCALARscalar-parameter are any objects of a valid SQL datatype.
  • TABLE – A TABLE parameter can be specified using a table, view or common table-expression name which are treated as new instance of this object if the object is also used outside the TABLE parameter.
    This query illustrates a valid FROM clause where the two references to the same table T are treated as two different instances of the same table T.
    SELECT * FROM T, my_proc(TABLE(SELECT T.Z, T.X FROM T)
    OVER(PARTITION BY T.Z));
    Table Parameterized Function (TPF) Example—This query illustrates a valid FROM clause.
    SELECT * FROM R, SELECT * FROM my_udf(1);
    SELECT * FROM my_tpf(1, TABLE(SELECT c1, c2 FROM t))
       (my_proc(R.X, TABLE T OVER PARTITION BY T.X)) AS XX;

    If a subquery is used to define the TABLE parameter, then the following restrictions must hold:
    • The TABLE parameter must be of type IN.

    • PARTITION BY or ORDER BY clauses must refer to the columns of the derived table and outer references. An expression in the expression-list can be an integer K which refers to the Kth column of the TABLE input parameter.

    Note: A Table UDF can only be referenced in a FROM clause of a SQL statement.
  • PARTITION BY – The PARTITION BY clause logically specifies how the invocation of the function will be performed by the execution engine. The execution engine must invoke the function for each partition and the function must process a whole partition in each invocation.

    PARTITION BY also specifies how the input data must be partitioned such that each invocation of the function will process exactly one partition of data. The function must be invoked the number of times equal to the number of partitions. For TPF, the parallelism characteristics are established through dynamic negotiation between the server and the UDF at the runtime. If the TPF can be executed in parallel, for N input partitions, the function can be instantiated M times, with M <=N. Each instantiation of the function can be invoked more than once, each invocation consuming exactly one partition.

    Note: The execution engine can invoke the function in any order of the partitions and the function is assumed to return the same result sets regardless of the partitions order. Partitions cannot be split among two invocations of the function.

    You can specify only one TABLE input parameter for PARTITION BY expression-list or PARTITION BY ANY clause. For all other TABLE input parameters you must specify, explicit or implicit PARTITION BY NONE clause.

  • ORDER BY – The ORDER BY clause specifies that the input data in each partition is expected to be sorted by expression-list by the execution engine. The UDF expects each partition to have this physical property. If only one partition exists, the whole input data is ordered based on the ORDER BY specification. ORDER BY clause can be specified for any of the TABLE input parameters with PARTITION BY NONE or without PARTITION BY clause.
  • Joins – The join-type keywords are:
    FROM clause join-type keywords

    join-type keyword

    Description

    CROSS JOIN

    Returns the Cartesian product (cross product) of the two source tables

    NATURAL JOIN

    Compares for equality all corresponding columns with the same names in two tables (a special case equijoin; columns are of same length and data type)

    KEY JOIN

    Restricts foreign-key values in the first table to be equal to the primary-key values in the second table

    INNER JOIN

    Discards all rows from the result table that do not have corresponding rows in both tables

    LEFT OUTER JOIN

    Preserves unmatched rows from the left table, but discards unmatched rows from the right table

    RIGHT OUTER JOIN

    Preserves unmatched rows from the right table, but discards unmatched rows from the left table

    FULL OUTER JOIN

    Retains unmatched rows from both the left and the right tables

    Do not mix comma-style joins and keyword-style joins in the FROM clause. The same query can be written two ways, each using one of the join styles. The ANSI syntax keyword style join is preferable.

    This query uses a comma-style join:
    SELECT *
      FROM Products pr, SalesOrders so, SalesOrderItems si
      WHERE pr.ProductID = so.ProductID
        AND pr.ProductID = si.ProductID;
    The same query can use the preferable keyword-style join:
    SELECT *
      FROM Products pr INNER JOIN SalesOrders so
        ON (pr.ProductID = so.ProductID)
      INNER JOIN SalesOrderItems si
        ON (pr.ProductID = si.ProductID);

    The ON clause filters the data of inner, left, right, and full joins. Cross joins do not have an ON clause. In an inner join, the ON clause is equivalent to a WHERE clause. In outer joins, however, the ON and WHERE clauses are different. The ON clause in an outer join filters the rows of a cross product and then includes in the result the unmatched rows extended with nulls. The WHERE clause then eliminates rows from both the matched and unmatched rows produced by the outer join. You must take care to ensure that unmatched rows you want are not eliminated by the predicates in the WHERE clause.

    You cannot use subqueries inside an outer join ON clause.

    Tables owned by a different user can be qualified by specifying the userid. Tables owned by roles to which the current user belongs are found by default without specifying the user ID.

    The correlation name is used to give a temporary name to the table for this SQL statement only. This is useful when referencing columns that must be qualified by a table name but the table name is long and cumbersome to type. The correlation name is also necessary to distinguish between table instances when referencing the same table more than once in the same query. If no correlation name is specified, then the table name is used as the correlation name for the current statement.

    If the same correlation name is used twice for the same table in a table expression, that table is treated as if it were only listed once. For example, in:

    SELECT *
    FROM SalesOrders
    KEY JOIN SalesOrderItems,
    SalesOrders
    KEY JOIN Employees

    The two instances of the SalesOrders table are treated as one instance that is equivalent to:

    SELECT *
    FROM SalesOrderItems
    KEY JOIN SalesOrders
    KEY JOIN Employees

    By contrast, the following is treated as two instances of the Person table, with different correlation names HUSBAND and WIFE.

    SELECT *
    FROM Person HUSBAND, Person WIFE

    You can supply a SELECT statement instead of one or more tables or views in the FROM clause, letting you use groups on groups, or joins with groups, without creating a view. This use of SELECT statements is called derived tables.

    Join columns require like data types for optimal performance.

  • Performance Considerations – Depending on the query, SAP Sybase IQ allows between 16 and 64 tables in the FROM clause with the optimizer turned on; however, performance might suffer if you have more than 16 to 18 tables in the FROM clause in very complex queries.
    Note: If you omit the FROM clause, or if all tables in the query are in the SYSTEM dbspace, the query is processed by SQL Anywhere instead of SAP Sybase IQ and might behave differently, especially with respect to syntactic and semantic restrictions and the effects of option settings.

    If you have a query that does not require a FROM clause, you can force the query to be processed by SAP Sybase IQ by adding the clause FROM iq_dummy, where iq_dummy is a one-row, one-column table that you create in your database.

Standards

  • SQL—ISO/ANSI SQL compliant.

  • Sybase—The JOIN clause is not supported in some versions of Adaptive Server Enterprise. Instead, you must use the WHERE clause to build joins.

Permissions

Must be connected to the database.

Related reference
DELETE Statement
SELECT Statement