specifies the name of the function.
specifies an expression that evaluates to a column name. The expression can include one of the following forms:
is a qualified column that identifies the table that is being processed by the FedSQL statement followed by a period and the name of the column.
Example | select avg(densities.density)from densities; |
is an unqualified column name that has an implicit table qualifier. The implicit table qualifier is the table that FedSQL is processing.
Example | select avg(density)from densities; |
specifies the name of the function.
can be a variable name, constant, or any FedSQL expression, including another function. The number and type of arguments that FedSQL allows are described with individual functions. Separate multiple arguments by a comma.
Examples | select sqrt(1500); |
select ifnull(AvgHigh, 0) from worldtemps; |