Sophie

Sophie

distrib > Mageia > 3 > x86_64 > by-pkgid > 8c273c3e2ddd64f7bf5bf9fe1cfb9ddd > files > 112

firebird-2.5.2.26539-8.mga3.x86_64.rpm

Function:
    Specify the result data type of the result of an aggregation over values of 
    compatible data types, such as case expressions and columns at the same 
    position in a union query expression.

Author:
    Arno Brinkman <firebird@abvisie.nl>

Syntax Rules:

1) Let DTS be the set of data types over which we must determine the final 
   result data type.

2) All of the data types in DTS shall be comparable.

3) Case:

  a) If any of the data types in DTS is character string, then:

	1) If all data types in DTS are fixed-length character strings, then the result
	   is also a fixed-length character string, else a variable-length character
	   string. The resulting string length in characters is equal to the
	   maximum of the lengths in characters of the data types in DTS.

    2) The character set and collation are used from the first character string
       data type in DTS.

  b) If all of the data types in DTS are exact numeric, then the result data 
     type is exact numeric with scale equal to the maximum of the scales of 
     the data types in DTS and precision equal to the maximum precision of all
     data types in DTS. 

  c) If any data type in DTS is approximate numeric, then each data type in DTS 
     shall be numeric, else an error is thrown.

  d) If some data type in DTS is a datetime data type, then every data type in 
     DTS shall be a datetime data type having the same datetime type,
     else an error is thrown.

  e) If any data type in DTS is BLOB, then each data type in DTS shall be 
     BLOB and all with the same sub-type.