|
|
Result Data Types
This section describes the syntax rules for, and the resulting data types of,
UNIONorUNION ALLoperations specified in aquery-expression(seeSELECT) andCASEexpressions, see CASE Expression.
- The data type of all specified expressions must be comparable.
- If any of the specified expressions is a variable-length (national) character string, then the data type of the result will be variable-length (national) character with maximum length equal to the largest of the specified expressions.
- If all specified expressions are fixed-length (national) character strings, then the data type of the result will be a fixed-length (national) character string with a length equal to the maximum length of the largest of the specified fixed-length character string values.
- If any of the specified expressions is variable-length binary, then the data type of the result will be variable-length binary with maximum length equal to the maximum length of the largest of the specified expressions.
- If all specified expressions are fixed-length binary, then the data type of the result will be fixed-length binary with the same length.
- If all specified expressions are exact numeric, then the data type of the result will be exact numeric with precision and scale equal to the maximum precision and scale of the specified expressions.
- If any of the specified expressions is approximate numeric, then the data type of the result will be approximate numeric with precision equal to the maximum precision of the specified expressions.
- If two numeric data types are specified, the precision and scale of the result is determined by the rules in the table below and which are described in the points that follow:
FLOAT(p")INTEGER(p")DECIMAL(p",s")FLOAT(p')FLOAT(p)1FLOAT(p)aFLOAT(p)aINTEGER(p')FLOAT(p)aINTEGER(p)aDECIMAL(p,s)2DECIMAL(p',s')FLOAT(p)aDECIMAL(p,s)bDECIMAL(p,s)b
- If either of the specified expressions is floating point, the result is floating point. The precision of the result is the highest operand precision.
- If both the specified expressions are integer, the result is integer. The precision of the result is the highest operand precision.
- If both the specified expressions are decimal, or one is decimal and the other is integer, the result is decimal. For expressions mixing decimal and integer operands,
INTEGER(p)is treated asDECIMAL(p,0).The number of positions to the left of the decimal point (i.e. the difference between precision and scale) in the result is the greatest number of positions in either operand. The scale of the result is the greatest scale of the operands. The precision may not exceed 45.
SMALLINT UNION DECIMAL(10,4)givesDECIMAL(10,4)
INTEGER UNION DECIMAL(10,4)givesDECIMAL(14,4)
DECIMAL(9,2) UNION DECIMAL(6,4)givesDECIMAL(9,4).
- For
INTERVALoperands, see Interval, the interval precision of the result is the combined interval precision of the two operands, the scale (seconds precision) is the greatest of the two operands and the leading precision of the result is the greatest of the two operands, expressed in terms of the most significant field of the result.
DAY TO HOUR UNION MINUTE TO SECONDgivesDAY TO SECOND
HOUR TO SECOND(2,2) UNION MINUTE TO SECOND(1,6)givesHOUR TO SECOND(2,6)
DAY(2) TO HOUR UNION HOUR(6) TO MINUTEgivesDAY(5) TO MINUTE.Standard Compliance
|
Mimer Information Technology AB Voice: +46 18 780 92 00 Fax: +46 18 780 92 40 info@mimer.se |
|
|