8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 20:03:02 +01:00
This commit is contained in:
robocop 2007-04-24 06:11:08 +00:00
parent 2d6898735d
commit fe757d1562

View File

@ -75,7 +75,7 @@ Format:
Notes:
1) Returns 0 if the string is empty.
2) Throw error if the first character is multi-byte.
2) Throws error if the first character is multi-byte.
Example:
select ascii_val(x) from y;
@ -769,4 +769,4 @@ Format:
Example:
1) select trunc(x) from y;
2) select trunc(-2.8), floor(2.8) from rdb$database; -- returns -2, 2
2) select trunc(-2.8), trunc(2.8) from rdb$database; -- returns -2, 2