Contents Index EXPLANATION function [Miscellaneous] FLOOR function [Numeric]

ASA SQL Reference
  SQL Functions
    Alphabetical list of functions

EXPRTYPE function [Miscellaneous]


Function 

This function returns a string that identifies the data type of an expression.

Syntax 

EXPRTYPE ( string-expressioninteger-expression )

Parameters 
Standards and compatibility 
See also 

SQL Data Types

Example 

The following statement returns smallint when executed against the sample database.

SELECT EXPRTYPE(
   'SELECT line_id FROM sales_order_items', 1 )

Contents Index EXPLANATION function [Miscellaneous] FLOOR function [Numeric]