DB2Strings_en.xml 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. BI and PM: QECL
  5. (C) Copyright IBM Corp. 2005, 2021
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <stringTable xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CCLMessageFile.xsd" usage="String">
  9. <component name="DB2">
  10. <section name="DB1" type="UI">
  11. <string id="DB2" type="String">DB2</string>
  12. </section>
  13. <section name="CMN" type="UI">
  14. <string id="db2_common" type="String">DB2 Common</string>
  15. <string id="V_DB2" type="String">DB2</string>
  16. <string id="db2_add_months.syntax" type="String" usage="Do not translate: add_months">add_months (&#160;date_expression|datetime_expression&#160;,&#160;integer_expression&#160;)</string>
  17. <string id="db2_add_months.tip" type="String">Returns the date resulting from adding integer_expression months to date_expression or datetime_expression. Date_expression and datetime_expression can be a date or datetime value or a string representation of a date or a datetime.</string>
  18. <string id="db2_add_months.example.1" type="String" usage="Do not translate: add_months, current_date">add_months (&#160;current_date&#160;,&#160;3&#160;)</string>
  19. <string id="db2_add_months.result.1" type="String">Result: Returns the date that is three months later than the current date.</string>
  20. <string id="db2_ascii.syntax" type="String" usage="Do not translate: ascii">ascii (&#160;string_expression&#160;)</string>
  21. <string id="db2_ascii.tip" type="String">Returns the ASCII code value of the leftmost character of the argument as an integer.</string>
  22. <string id="db2_ascii.example.1" type="String" usage="Do not translate: ascii">ascii (&#160;a&#160;)</string>
  23. <string id="db2_ascii.result.1" type="String">Result: Returns 65, the ASCII code value of "a".</string>
  24. <string id="db2_chr.syntax" type="String" usage="Do not translate: chr">chr (&#160;integer_expression&#160;)</string>
  25. <string id="db2_chr.tip" type="String">Returns the character that has the ASCII code value specified by "integer_expression". "Integer_expression" should be between 0 and 255.</string>
  26. <string id="db2_chr.example.1" type="String" usage="Do not translate: chr">chr (&#160;65&#160;)</string>
  27. <string id="db2_chr.result.1" type="String">Result: Returns a, the character for the ASCII code value of 65.</string>
  28. <string id="db2_char.syntax" type="String" usage="Do not translate: char">char (&#160;expression&#160;)
  29. &#160;
  30. Alternate syntax:
  31. char (&#160;string_expression &#160;,&#160;integer_expression&#160;)
  32. Returns a fixed-length string representation of "string_expression" with a length of "integer_expression".
  33. &#160;
  34. Alternate syntax 2:
  35. char (&#160;decimal_expression &#160;,&#160;character_expression&#160;)
  36. Returns a string representation of "decimal_expression" using the decimal separator "character_expression".
  37. </string>
  38. <string id="db2_char.tip" type="String">Returns a string representation of a date/time value or a decimal number.</string>
  39. <string id="db2_ceiling.syntax" type="String" usage="Do not translate: ceiling">ceiling (&#160;numeric_expression&#160;)</string>
  40. <string id="db2_ceiling.tip" type="String">Returns the smallest integer greater than or equal to "numeric_expression".</string>
  41. <string id="db2_ceiling.example.1" type="String" usage="Do not translate: ceiling">ceiling (&#160;0.75&#160;)</string>
  42. <string id="db2_ceiling.result.1" type="String">Result: Returns 0.8.</string>
  43. <string id="db2_coalesce" type="String" usage="Do not translate: coalesce">coalesce</string>
  44. <string id="db2_coalesce.syntax" type="String" usage="Do not translate: coalesce">coalesce (&#160;expression_list&#160;)</string>
  45. <string id="db2_coalesce.tip" type="String" usage="Do not translate: Coalesce">Returns the first non-null argument (or null if all arguments are null). The Coalesce function takes two or more arguments.</string>
  46. <string id="db2_coalesce.example.1" type="String" usage="Do not translate: coalesce">coalesce (&#160;[Unit price], [Unit sale price]&#160;)</string>
  47. <string id="db2_coalesce.result.1" type="String">Result: Returns the unit price, or the unit sale price if the unit price is null.</string>
  48. <string id="db2_concat.syntax" type="String" usage="Do not translate: concat">concat (&#160;string_expression1, string_expression2&#160;)</string>
  49. <string id="db2_concat.tip" type="String">Returns a string that is the result of concatenating "string_expression1" with "string_expression2".</string>
  50. <string id="db2_concat.example.1" type="String" usage="Do not translate: concat">concat (&#160;[Sales target (query)].[Sales staff].[First name], [Sales target (query)].[Sales staff].[Last name]&#160;)</string>
  51. <string id="db2_concat.result.1" type="String">Result: Returns the first name and family name; e.g., Bob Smith.</string>
  52. <string id="db2_date.syntax" type="String" usage="Do not translate: date">date (&#160;expression&#160;)</string>
  53. <string id="db2_date.tip" type="String">Returns a date from a single input value. "Expression" can be a string or integer representation of a date.</string>
  54. <string id="db2_date.example.1" type="String" usage="Do not translate: date">date (&#160;'1998-01-08'&#160;)</string>
  55. <string id="db2_date.result.1" type="String">Result: Returns 8 January 1998.</string>
  56. <string id="db2_day.syntax" type="String" usage="Do not translate: day">day (&#160;date_expression&#160;)</string>
  57. <string id="db2_day.tip" type="String">Returns the day of the month (1-31) from "date_expression". "Date_expression" can be a date value or a string representation of a date.</string>
  58. <string id="db2_day.example.1" type="String" usage="Do not translate: day">day (&#160;'1998-01-08'&#160;)</string>
  59. <string id="db2_day.result.1" type="String">Result: Returns 8.</string>
  60. <string id="db2_dayname.syntax" type="String" usage="Do not translate: dayname">dayname (&#160;date_expression&#160;)</string>
  61. <string id="db2_dayname.tip" type="String">Returns a character string containing the data source-specific name of the day (for example, Sunday through Saturday or Sun. through Sat. for a data source that uses English, or Sonntag through Samstag for a data source that uses German) for the day portion of "date_expression". "Date_expression" can be a date value or a string representation of a date.</string>
  62. <string id="db2_dayname.example.1" type="String" usage="Do not translate: dayname">dayname (&#160;'1998-01-08'&#160;)</string>
  63. <string id="db2_dayname.result.1" type="String">Result: Returns Thursday.</string>
  64. <string id="db2_dayofweek.syntax" type="String" usage="Do not translate: dayofweek">dayofweek (&#160;date_expression&#160;)</string>
  65. <string id="db2_dayofweek.tip" type="String">Returns the day of the week in "date_expression" as an integer in the range 1 to 7, where 1 represents Sunday. "date_expression" can be a date value or a string representation of a date.</string>
  66. <string id="db2_dayofweek.example.1" type="String" usage="Do not translate: dayofweek">dayofweek (&#160;'1998-01-08'&#160;)</string>
  67. <string id="db2_dayofweek.result.1" type="String">Result: Returns 5.</string>
  68. <string id="db2_dayofweek_iso.syntax" type="String" usage="Do not translate: dayofweek_iso">dayofweek_iso (&#160;date_expression&#160;)</string>
  69. <string id="db2_dayofweek_iso.tip" type="String">Returns the day of the week in "date_expression" as an integer in the range 1 to 7, where 1 represents Monday. "date_expression" can be a date value or a string representation of a date.</string>
  70. <string id="db2_dayofweek_iso.example.1" type="String" usage="Do not translate: dayofweek_iso">dayofweek_iso (&#160;'1998-01-08'&#160;)</string>
  71. <string id="db2_dayofweek_iso.result.1" type="String">Result: Returns 4.</string>
  72. <string id="db2_dayofyear.syntax" type="String" usage="Do not translate: dayofyear">dayofyear (&#160;date_expression&#160;)</string>
  73. <string id="db2_dayofyear.tip" type="String">Returns the day of the year in "date_expression" as an integer in the range 1 to 366. "Date_expression" can be a date value or a string representation of a date.</string>
  74. <string id="db2_dayofyear.example.1" type="String" usage="Do not translate: dayofyear, current_date">dayofyear (&#160;current_date&#160;)</string>
  75. <string id="db2_dayofyear.result.1" type="String">Result: Returns the day of the year for the current date; e.g., if it was January 28, the expression would return 28.</string>
  76. <string id="db2_days.syntax" type="String" usage="Do not translate: days">days (&#160;expression&#160;)</string>
  77. <string id="db2_days.tip" type="String">Returns an integer representation of a date. "Expression" can be a date value or a string representation of a date.</string>
  78. <string id="db2_dec.syntax" type="String" usage="Do not translate: dec">dec (&#160;string-expression [&#160;,&#160;precision-integer [&#160;,&#160;scale-integer [&#160;,&#160;decimal-character&#160;]&#160;]&#160;]&#160;)</string>
  79. <string id="db2_dec.tip" type="String" usage="Do not translate: dec">Returns the decimal representation of "string-expression" using "precision-integer" and "scale-integer". The "decimal-character" can be used to specify the single-byte character constant used to delimit the decimal digits in "string-expression". The "string-expression" must be formatted as an SQL Integer or Decimal constant.
  80. &#160;
  81. Alternate syntax:
  82. dec (&#160;numeric-expression [&#160;,&#160;precision-integer [&#160;,&#160;scale-integer&#160;]&#160;]&#160;)
  83. Returns the decimal representation of "numeric-expression" using "precision-integer" and "scale-integer".
  84. &#160;
  85. Alternate syntax 2:
  86. dec (&#160;datetime-expression [&#160;,&#160;precision-integer [&#160;,&#160;scale-integer&#160;]&#160;]&#160;)
  87. Returns the decimal representation of "datetime-expression" using "precision-integer" and "scale-integer".
  88. </string>
  89. <string id="db2_decimal.syntax" type="String" usage="Do not translate: decimal">decimal (&#160;string-expression [&#160;,&#160;precision-integer [&#160;,&#160;scale-integer [&#160;,&#160;decimal-character&#160;]&#160;]&#160;]&#160;)</string>
  90. <string id="db2_decimal.tip" type="String">Returns the decimal representation of "string-expression" using "precision-integer" and "scale-integer". The "decimal-character" can be used to specify the single-byte character constant used to delimit the decimal digits in "string-expression". The "string-expression" must be formatted as an SQL Integer or Decimal constant.
  91. &#160;
  92. Alternate syntax:
  93. decimal (&#160;numeric-expression [&#160;,&#160;precision-integer [&#160;,&#160;scale-integer&#160;]&#160;]&#160;)
  94. Returns the decimal representation of "numeric-expression" using "precision-integer" and "scale-integer".
  95. &#160;
  96. Alternate syntax 2:
  97. decimal (&#160;datetime-expression [&#160;,&#160;precision-integer [&#160;,&#160;scale-integer&#160;]&#160;]&#160;)
  98. Returns the decimal representation of "datetime-expression" using "precision-integer" and "scale-integer".
  99. </string>
  100. <string id="db2_difference.syntax" type="String" usage="Do not translate: difference">difference (&#160;string_expression1&#160;, string_expression2&#160;)</string>
  101. <string id="db2_difference.tip" type="String">Returns an integer value representing the difference between the values returned by the data source-specific soundex function for "string_expression1" and "string_expression2". The value returned ranges from 0 to 4, with 4 indicating the best match. Note that 4 does not mean that the strings are equal.</string>
  102. <string id="db2_difference.example.1" type="String" usage="Do not translate: difference">Example: difference ([Sales target (query)].[Sales staff].[First name],[Sales (query)].[Retailers].[Contact first name])</string>
  103. <string id="db2_difference.result.1" type="String">Result: 0</string>
  104. <string id="db2_difference.example.2" type="String" usage="Do not translate: difference">Example: difference ([Sales target (query)].[Sales staff].[First name],[Sales target (query)].[Sales staff].[First name])</string>
  105. <string id="db2_difference.result.2" type="String">Result: 4</string>
  106. <string id="db2_digits.syntax" type="String" usage="Do not translate: digits">digits (&#160;numeric_expression&#160;)</string>
  107. <string id="db2_digits.tip" type="String">Returns the character string representation of a non-floating point number.</string>
  108. <string id="db2_double.syntax" type="String" usage="Do not translate: double">double (&#160;expression&#160;)</string>
  109. <string id="db2_double.tip" type="String">Returns the floating-point representation of an expression. "Expression" can either be a numeric or string expression.</string>
  110. <string id="db2_event_mon_state.syntax" type="String" usage="Do not translate: event_mon_state">event_mon_state (&#160;string_expression&#160;)</string>
  111. <string id="db2_event_mon_state.tip" type="String">Returns the operational state of a particular state monitor.</string>
  112. <string id="db2_float.syntax" type="String" usage="Do not translate: float">float (&#160;numeric_expression&#160;)</string>
  113. <string id="db2_float.tip" type="String">Returns the floating-point representation of a number.</string>
  114. <string id="db2_hex.syntax" type="String" usage="Do not translate: hex">hex (&#160;expression&#160;)</string>
  115. <string id="db2_hex.tip" type="String">Returns the hexadecimal representation of a value.</string>
  116. <string id="db2_hour.syntax" type="String" usage="Do not translate: hour">hour (&#160;time_expression&#160;)</string>
  117. <string id="db2_hour.tip" type="String">Returns the hour, an integer from 0 (midnight) to 23 (11:00 pm), from "time_expression". "Time_expression" can be a time value or a string representation of a time.</string>
  118. <string id="db2_hour.example.1" type="String" usage="Do not translate: hour">hour (&#160;01:22:45&#160;)</string>
  119. <string id="db2_hour.result.1" type="String">Result: Returns 1.</string>
  120. <string id="db2_insert.syntax" type="String" usage="Do not translate: insert">insert (&#160;string_expression1, integer_expression1, integer_expression2, string_expression2&#160;)</string>
  121. <string id="db2_insert.tip" type="String">Returns a string where "integer_expression2" characters have been deleted from "string_expression1" beginning at "integer_expression1" and where "string_expression2" has been inserted into "string_expression1" at its start. The first character in the string is at position 1.</string>
  122. <string id="db2_integer.syntax" type="String" usage="Do not translate: integer">integer (&#160;expression&#160;)</string>
  123. <string id="db2_integer.tip" type="String">Returns the integer representation of an expression. "Expression" can be a numeric value or a string representation of a number.</string>
  124. <string id="db2_integer.example.1" type="String" usage="Do not translate: integer">Example: integer (&#160;84.95&#160;)</string>
  125. <string id="db2_integer.result.1" type="String">Result: 84</string>
  126. <string id="db2_int.syntax" type="String" usage="Do not translate: int">int (&#160;expression&#160;)</string>
  127. <string id="db2_int.tip" type="String">Returns the integer representation of an expression. "Expression" can be a numeric value or a string representation of a number.</string>
  128. <string id="db2_int.example.1" type="String" usage="Do not translate: int">Example: int (&#160;84.95&#160;)</string>
  129. <string id="db2_int.result.1" type="String">Result: 84</string>
  130. <string id="db2_julian_day.syntax" type="String" usage="Do not translate: julian_day">julian_day (&#160;expression&#160;)</string>
  131. <string id="db2_julian_day.tip" type="String">Returns an integer value representing the number of days from January 1, 4712 BC (the start of the Julian date calendar) to the date value specified in "expression". "Expression" can be a date value or a string representation of a date.</string>
  132. <string id="db2_julian_day.example.1" type="String" usage="Do not translate: julian_day">julian_day (&#160;'2009-06-29'&#160;)</string>
  133. <string id="db2_julian_day.result.1" type="String">Result: 2455012.22130739595741034</string>
  134. <string id="db2_lcase.syntax" type="String" usage="Do not translate: lcase">lcase (&#160;string_expression&#160;)</string>
  135. <string id="db2_lcase.tip" type="String">Returns "string_expression" with all uppercase characters shifted to lowercase.</string>
  136. <string id="db2_lcase.example.1" type="String" usage="Do not translate: lcase">lcase (&#160;[Sales (query)].[Sales staff].[Last name]&#160;)</string>
  137. <string id="db2_lcase.result.1" type="String">Result: Returns family names with no uppercase letters.</string>
  138. <string id="db2_left.syntax" type="String" usage="Do not translate: left">left (&#160;string_expression, integer_expression&#160;)</string>
  139. <string id="db2_left.tip" type="String">Returns the leftmost "integer_expression" characters of "string_expression".</string>
  140. <string id="db2_left.example.1" type="String" usage="Do not translate: left">left (&#160;[Sales (query)].[Sales staff].[Last name]&#160;,&#160;3&#160;)</string>
  141. <string id="db2_left.result.1" type="String">Result: Returns the first three characters of each family name.</string>
  142. <string id="db2_length.syntax" type="String" usage="Do not translate: length">length (&#160;expression&#160;)</string>
  143. <string id="db2_length.tip" type="String">Returns the length of the operand in bytes. Exception: double byte string types return the length in characters.</string>
  144. <string id="db2_length.example.1" type="String" usage="Do not translate: length">length (&#160;[Sales (query)].[Sales staff].[Record start date]&#160;)</string>
  145. <string id="db2_length.result.1" type="String">Result: Returns 4; dates always return a value of 4.</string>
  146. <string id="db2_locate.syntax" type="String" usage="Do not translate: locate">locate (&#160;string_expression1, string_expression2 [&#160;,&#160;integer_expression&#160;]&#160;)</string>
  147. <string id="db2_locate.tip" type="String">Returns the starting position of the first occurrence of "string_expression1" within "string_expression2". The search starts at position start "integer_expression" of "string_expression2". The first character in a string is at position 1. If "string_expression1" is not found, zero is returned.</string>
  148. <string id="db2_locate.example.1" type="String" usage="Do not translate: locate">locate (&#160;A, [Sales (query)].[Sales staff].[Last name]&#160;,&#160;2&#160;)</string>
  149. <string id="db2_locate.result.1" type="String">Result: Returns the position of the character A in the family names starting at the second character of the family name.</string>
  150. <string id="db2_long_varchar.syntax" type="String" usage="Do not translate: long_varchar">long_varchar (&#160;string_expression&#160;)</string>
  151. <string id="db2_long_varchar.tip" type="String">Returns a long string.</string>
  152. <string id="db2_ltrim.syntax" type="String" usage="Do not translate: ltrim">ltrim (&#160;string_expression&#160;)</string>
  153. <string id="db2_ltrim.tip" type="String">Returns "string_expression" with leading spaces removed.</string>
  154. <string id="db2_ltrim.example.1" type="String" usage="Do not translate: ltrim">ltrim (&#160;[Sales (query)].[Sales staff].[Last name]&#160;)</string>
  155. <string id="db2_ltrim.result.1" type="String">Result: Returns family names with any leading spaces removed.</string>
  156. <string id="db2_microsecond.syntax" type="String" usage="Do not translate: microsecond">microsecond (&#160;expression&#160;)</string>
  157. <string id="db2_microsecond.tip" type="String">Returns the microsecond (time-unit) part of a value. "Expression" can be a timestamp or a string representation of a timestamp.</string>
  158. <string id="db2_microsecond.example.1" type="String" usage="Do not translate: microsecond">microsecond (&#160;01:45:34.056&#160;)</string>
  159. <string id="db2_microsecond.result.1" type="String">Result: Returns 056.</string>
  160. <string id="db2_midnight_seconds.syntax" type="String" usage="Do not translate: midnight_seconds">midnight_seconds (&#160;expression&#160;)</string>
  161. <string id="db2_midnight_seconds.tip" type="String">Returns an integer value in the range 0 to 86400 representing the number of seconds between midnight and time value specified in the argument. "Expression" can be a time value, a timestamp or a string representation of a time.</string>
  162. <string id="db2_midnight_seconds.example.1" type="String" usage="Do not translate: midnight_seconds">midnight_seconds (&#160;01:45:34.056&#160;)</string>
  163. <string id="db2_midnight_seconds.result.1" type="String">Result: Returns 6334.</string>
  164. <string id="db2_minute.syntax" type="String" usage="Do not translate: minute">minute (&#160;time_expression&#160;)</string>
  165. <string id="db2_minute.tip" type="String">Returns the minute (an integer from 0-59) from "time_expression". "Time_expression" can be a time value, a timestamp, or a string representation of a time.</string>
  166. <string id="db2_minute.example.1" type="String" usage="Do not translate: minute">minute (&#160;01:45:34.056&#160;)</string>
  167. <string id="db2_minute.result.1" type="String">Result: Returns 45.</string>
  168. <string id="db2_month.syntax" type="String" usage="Do not translate: month">month (&#160;date_expression&#160;)</string>
  169. <string id="db2_month.tip" type="String">Returns the month (an integer from 1-12) from "date_expression".</string>
  170. <string id="db2_month.example.1" type="String" usage="Do not translate: month">month (&#160;2005-11-01&#160;)</string>
  171. <string id="db2_month.result.1" type="String">Result: Returns 11.</string>
  172. <string id="db2_monthname.syntax" type="String" usage="Do not translate: monthname">monthname (&#160;date_expression&#160;)</string>
  173. <string id="db2_monthname.tip" type="String">Returns a character string containing the data source-specific name of the month (for example, January through December or Jan. through Dec. for an English data source, or Januar through Dezember for a German data source) for the month portion of "date_expression".</string>
  174. <string id="db2_monthname.example.1" type="String" usage="Do not translate: monthname">monthname (&#160;2005-11-01&#160;)</string>
  175. <string id="db2_monthname.result.1" type="String">Result: November</string>
  176. <string id="db2_quarter.syntax" type="String" usage="Do not translate: quarter">quarter (&#160;date_expression&#160;)</string>
  177. <string id="db2_quarter.tip" type="String">Returns the quarter in "date_expression" as a number in the range 1 to 4, where 1 represents January 1 through March 31.</string>
  178. <string id="db2_quarter.example.1" type="String" usage="Do not translate: quarter">quarter (&#160;2005-11-01&#160;)</string>
  179. <string id="db2_quarter.result.1" type="String">Result: Returns 4.</string>
  180. <string id="db2_radians.syntax" type="String" usage="Do not translate: radians">radians (&#160;numeric_expression&#160;)</string>
  181. <string id="db2_radians.tip" type="String">Returns the number of radians converted from "numeric_expression" degrees.</string>
  182. <string id="db2_repeat.syntax" type="String" usage="Do not translate: repeat">repeat (&#160;string_expression, integer_expression&#160;)</string>
  183. <string id="db2_repeat.tip" type="String">Returns a string consisting of "string_expression" repeated "integer_expression" times.</string>
  184. <string id="db2_repeat.example.1" type="String" usage="Do not translate: repeat">repeat (&#160;XYZ, 3&#160;)</string>
  185. <string id="db2_repeat.result.1" type="String">Result: Returns XYZXYZXYZ.</string>
  186. <string id="db2_replace.syntax" type="String" usage="Do not translate: replace">replace (&#160;string_expression1, string_expression2, string_expression3&#160;)</string>
  187. <string id="db2_replace.tip" type="String">Replaces all occurrences of "string_expression2" in "string_expression1" with "string_expression3".</string>
  188. <string id="db2_replace.example.1" type="String" usage="Do not translate: replace">replace (&#160;[Sales (query)].[Sales staff].[Position code], A, a&#160;)</string>
  189. <string id="db2_replace.result.1" type="String">Result: Returns position codes with all occurrences of "A" replaced by "a".</string>
  190. <string id="db2_right.syntax" type="String" usage="Do not translate: right">right (&#160;string_expression, integer_expression&#160;)</string>
  191. <string id="db2_right.tip" type="String">Returns the rightmost "integer_expression" characters of "string_expression".</string>
  192. <string id="db2_right.example.1" type="String" usage="Do not translate: right">right (&#160;[Sales (query)].[Sales staff].[Position code], 3&#160;)</string>
  193. <string id="db2_right.result.1" type="String">Result: Returns the rightmost 3 characters of each position code.</string>
  194. <string id="db2_round.syntax" type="String" usage="Do not translate: round">round (&#160;numeric_expression, integer_expression&#160;)</string>
  195. <string id="db2_round.tip" type="String">Returns "numeric_expression" rounded to "integer_expression" places to the right of the decimal point. If "integer_expression" is negative, "numeric_expression" is rounded to the nearest absolute value "integer_expression" places to the left of the decimal point. Rounding takes place before data formatting is applied.</string>
  196. <string id="db2_round.example.1" type="String" usage="Do not translate: round">round (&#160;3.14159265, 3&#160;)</string>
  197. <string id="db2_round.result.1" type="String">Result: Returns 3.142.</string>
  198. <string id="db2_rtrim.syntax" type="String" usage="Do not translate: rtrim">rtrim (&#160;string_expression&#160;)</string>
  199. <string id="db2_rtrim.tip" type="String">Returns "string_expression" with trailing spaces removed.</string>
  200. <string id="db2_rtrim.example.1" type="String" usage="Do not translate: rtrim">rtrim (&#160;[Sales (query)].[Sales staff].[Last name]&#160;)</string>
  201. <string id="db2_rtrim.result.1" type="String">Result: Returns family names with any spaces at the end of the name removed.</string>
  202. <string id="db2_second.syntax" type="String" usage="Do not translate: second">second (&#160;time_expression&#160;)</string>
  203. <string id="db2_second.tip" type="String">Returns the second (an integer from 0-59) from "time_expression".</string>
  204. <string id="db2_second.example.1" type="String" usage="Do not translate: second">second (&#160;01:45:34.056&#160;)</string>
  205. <string id="db2_second.result.1" type="String">Result: Returns 34.</string>
  206. <string id="db2_sign.syntax" type="String" usage="Do not translate: sign">sign (&#160;numeric_expression&#160;)</string>
  207. <string id="db2_sign.tip" type="String">Returns an indicator of the sign of "numeric_expression": +1 if "numeric_expression" is positive, 0 if zero, or -1 if negative.</string>
  208. <string id="db2_sign.example.1" type="String" usage="Do not translate: sign">sign (&#160;[Revenue]&#160;)</string>
  209. <string id="db2_sign.result.1" type="String">Result: Returns + for positive values and - for negative values.</string>
  210. <string id="db2_smallint.syntax" type="String" usage="Do not translate: smallint">smallint (&#160;expression&#160;)</string>
  211. <string id="db2_smallint.tip" type="String">Returns the small integer representation of a number.</string>
  212. <string id="db2_soundex.syntax" type="String" usage="Do not translate: soundex">soundex (&#160;string_expression&#160;)</string>
  213. <string id="db2_soundex.tip" type="String">Returns a 4 character string code obtained by systematically abbreviating words and names in "string_expression" according to phonetics. Can be used to determine if two strings sound the same. For example, does sound-of ('SMITH') = sound-of ('SMYTH').</string>
  214. <string id="db2_space.syntax" type="String" usage="Do not translate: space">space (&#160;integer_expression&#160;)</string>
  215. <string id="db2_space.tip" type="String">Returns a string consisting of "integer_expression" spaces.</string>
  216. <string id="db2_space.example.1" type="String" usage="Do not translate: space">space (&#160;5&#160;)</string>
  217. <string id="db2_space.result.1" type="String">Result: Returns 5 spaces.</string>
  218. <string id="db2_substr.syntax" type="String" usage="Do not translate: substr">substr (&#160;string_expression&#160;,&#160;integer_expression1 [&#160;,&#160;integer_expression2&#160;]&#160;)</string>
  219. <string id="db2_substr.tip" type="String">Returns the substring of "string_expression" that starts at position "integer_expression1" for "integer_expression2" characters. The first character in "string_expression" is at position 1.</string>
  220. <string id="db2_substr.example.1" type="String" usage="Do not translate: substr">substr (&#160;[Sales (query)].[Sales staff].[Position code], 3&#160;,&#160;5&#160;)</string>
  221. <string id="db2_substr.result.1" type="String">Result: Returns characters 3 to 7 of the position codes.</string>
  222. <string id="db2_table_name.syntax" type="String" usage="Do not translate: table_name">table_name (&#160;string_expression1 [&#160;,&#160;string_expression2&#160;]&#160;)</string>
  223. <string id="db2_table_name.tip" type="String">Returns an unqualified name of a table or view based on the object name in "string_expression1" and the schema name given in "string_expression2". It is used to resolve aliases.</string>
  224. <string id="db2_table_schema.syntax" type="String" usage="Do not translate: table_schema">table_schema (&#160;string_expression1 [&#160;,&#160;string_expression2&#160;]&#160;)</string>
  225. <string id="db2_table_schema.tip" type="String">Returns the schema name portion of the two-part table or view name based on the object name in "string_expression1" and the schema name in "string_expression2". It is used to resolve aliases.</string>
  226. <string id="db2_time.syntax" type="String" usage="Do not translate: time">time (&#160;expression&#160;)</string>
  227. <string id="db2_time.tip" type="String">Returns a time from a value.</string>
  228. <string id="db2_timestamp.syntax" type="String" usage="Do not translate: timestamp">timestamp (&#160;expression1 [&#160;,&#160;expression2&#160;]&#160;)</string>
  229. <string id="db2_timestamp.tip" type="String">Returns a timestamp from a value or a pair of values. "Expression1" must represent a date value, and "expression2" must represent a time value.</string>
  230. <string id="db2_timestamp.example.1" type="String" usage="Do not translate: timestamp">timestamp (&#160;11 November 2005&#160;,&#160;12:00:00.000000&#160;)</string>
  231. <string id="db2_timestamp.result.1" type="String">Result: Returns 2005-11-11-12:00:00.000000.</string>
  232. <string id="db2_timestamp_iso.syntax" type="String" usage="Do not translate: timestamp_iso">timestamp_iso (&#160;expression&#160;)</string>
  233. <string id="db2_timestamp_iso.tip" type="String">Returns a datetime in the ISO format (yyyy-mm-dd hh:mm:ss.nnnnnn) converted from the IBM format (yyyy-mm-dd-hh.mm.ss.nnnnnn). If "expression" is a time, it inserts the value of the CURRENT DATE for the date elements and zero for the fractional time element.</string>
  234. <string id="db2_timestamp_iso.example.1" type="String" usage="Do not translate: timestamp_iso">timestamp_iso (&#160;11 November 2005&#160;,&#160;12:00:00.000000&#160;)</string>
  235. <string id="db2_timestamp_iso.result.1" type="String">Result: Returns 2005-11-11 12:00:00.000000.</string>
  236. <string id="db2_timestampdiff.syntax" type="String" usage="Do not translate: timestampdiff">timestampdiff (&#160;expression1, expression2&#160;)</string>
  237. <string id="db2_timestampdiff.tip" type="String">Returns an estimated number of intervals of type "expression1" based on the difference between two timestamps. "Expression2" is the result of subtracting two timestamp types and converting the result to CHAR. Valid values of "expression1" are: 1 Fractions of a second; 2 Seconds; 4 Minutes; 8 Hours; 16 Days; 32 Weeks; 64 Months; 128 Quarters; 256 Years.</string>
  238. <string id="db2_to_char1.syntax" type="String" usage="Do not translate: to_char">to_char (&#160;timestamp_expression&#160;,&#160;format_string&#160;)</string>
  239. <string id="db2_to_char1.tip" type="String">Returns the string representation of a timestamp with the format of "format_string".</string>
  240. <string id="db2_to_char2.syntax" type="String" usage="Do not translate: to_char">to_char (&#160;numeric_expression&#160;,&#160;format_string&#160;)</string>
  241. <string id="db2_to_char2.tip" type="String">Returns the string representation of a numeric value with the format of "format_string".</string>
  242. <string id="db2_to_char3.syntax" type="String" usage="Do not translate: to_char">to_char (&#160;character_expression&#160;)</string>
  243. <string id="db2_to_char3.tip" type="String">Returns the varchar string representation of character_expression.</string>
  244. <string id="db2_to_date.syntax" type="String" usage="Do not translate: to_date">to_date (&#160;expression1&#160;,&#160;string_expression2&#160;)</string>
  245. <string id="db2_to_date.tip" type="String">Converts "expression1" to a datetime value as specified by the format "string_expression2". The first argument "expression1" may be of type string or numeric.</string>
  246. <string id="db2_to_date.example.1" type="String" usage="Do not translate: to_date">to_date (&#160;'2013-02-27 15:13:14'&#160;,&#160;'YYYY-MM-DD HH24:MI:SS'&#160;)</string>
  247. <string id="db2_to_date.result.1" type="String">Result: Returns datetime with value '2013-02-27 15:13:14'.</string>
  248. <string id="db2_translate.syntax" type="String" usage="Do not translate: translate">translate (&#160;string_expression1 [&#160;,&#160;string_expression2, string_expression3 [&#160;,&#160;string_expression4&#160;]&#160;]&#160;)</string>
  249. <string id="db2_translate.tip" type="String">Returns "string_expression1" in which characters from "string_expression3" are translated to the equivalent characters in "string_expression2". "String_expression4" is a single character that is used to pad "string_expression2" if it is shorter than "string_expression3". If only "string_expression1" is present, then this function translates it to uppercase characters.</string>
  250. <string id="db2_translate.example.1" type="String" usage="Do not translate: translate">translate (&#160;'abcdefg'&#160;)</string>
  251. <string id="db2_translate.result.1" type="String">Result: Returns ABCDEFG.</string>
  252. <string id="db2_translate.example.2" type="String" usage="Do not translate: translate">translate (&#160;'mnlop'&#160;,&#160;n, m&#160;,&#160;-&#160;)</string>
  253. <string id="db2_translate.result.2" type="String">Result: Returns n-nlop.</string>
  254. <string id="db2_trunc1.syntax" type="String" usage="Do not translate: trunc">trunc (&#160;numeric_expression1 [&#160;,&#160;numeric_expression2&#160;]&#160;)</string>
  255. <string id="db2_trunc1.tip" type="String">Returns "numeric_expression1" truncated to "numeric_expression2" places to the right of the decimal point. If "numeric_expression2" is negative, "numeric_expression1" is truncated to the absolute value of "numeric_expression2" places to the left of the decimal point. If "numeric_expression2" is not specified, "numeric_expression1" is truncated at the decimal point.</string>
  256. <string id="db2_trunc1.example.1" type="String" usage="Do not translate: trunc">Example: trunc (&#160;3.14159265, 3&#160;)</string>
  257. <string id="db2_trunc1.result.1" type="String">Result: 3.141.</string>
  258. <string id="db2_trunc1.example.2" type="String" usage="Do not translate: trunc">Example: trunc (&#160;3.14159265&#160;)</string>
  259. <string id="db2_trunc1.result.2" type="String">Result: 3</string>
  260. <string id="db2_trunc2.syntax" type="String" usage="Do not translate: trunc">trunc (&#160;datetime_expression [,&#160;format_string [,&#160;locale_name&#160;]&#160;]&#160;)</string>
  261. <string id="db2_trunc2.tip" type="String" usage="Do not translate: CURRENT, LOCALE, LC_TIME">Returns "datetime_expression" rounded to the unit specified by format_string. If format_string is not specified, datetime_expression is rounded to the nearest day as if 'DD' were specified for format_string. locale_name is a string constant specifying the locale used to determine the first day of the week. If locale_name is not specified, the value of CURRENT LOCALE LC_TIME is used.</string>
  262. <string id="db2_trunc2.example.1" type="String" usage="Do not translate: trunc, TIMESTAMP">Example: trunc (&#160;TIMESTAMP('2000-07-31 15:05:05.123456'),&#160;'DD'&#160;)</string>
  263. <string id="db2_trunc2.result.1" type="String">Result: 2000-07-31 00:00:00.0</string>
  264. <string id="db2_truncate1.syntax" type="String" usage="Do not translate: truncate">truncate (&#160;numeric_expression1 [&#160;,&#160;numeric_expression2&#160;]&#160;)</string>
  265. <string id="db2_truncate1.tip" type="String">Returns "numeric_expression1" truncated to "numeric_expression2" places to the right of the decimal point. If "numeric_expression2" is negative, "numeric_expression1" is truncated to the absolute value of "numeric_expression2" places to the left of the decimal point. If "numeric_expression2" is not specified, "numeric_expression1" is truncated at the decimal point.</string>
  266. <string id="db2_truncate1.example.1" type="String" usage="Do not translate: truncate">Example: truncate (&#160;3141.59265, -3&#160;)</string>
  267. <string id="db2_truncate1.result.1" type="String">Result: 3.</string>
  268. <string id="db2_truncate1.example.2" type="String" usage="Do not translate: truncate">Example: truncate (&#160;3141.59265&#160;)</string>
  269. <string id="db2_truncate1.result.2" type="String">Result: 3141</string>
  270. <string id="db2_truncate2.syntax" type="String" usage="Do not translate: truncate">truncate (&#160;datetime_expression [,&#160;format_string [,&#160;locale_name&#160;]&#160;]&#160;)</string>
  271. <string id="db2_truncate2.tip" type="String" usage="Do not translate: CURRENT, LOCALE, LC_TIME">Returns "datetime_expression" rounded to the unit specified by format_string. If format_string is not specified, datetime_expression is rounded to the nearest day as if 'DD' were specified for format_string. locale_name is a string constant specifying the locale used to determine the first day of the week. If locale_name is not specified, the value of CURRENT LOCALE LC_TIME is used.</string>
  272. <string id="db2_truncate2.example.1" type="String" usage="Do not translate: truncate, TIMESTAMP">Example: truncate (&#160;TIMESTAMP('2000-07-31 15:05:05.123456'),&#160;'DD'&#160;)</string>
  273. <string id="db2_truncate2.result.1" type="String">Result: 2000-07-31 00:00:00.0</string>
  274. <string id="db2_ucase.syntax" type="String" usage="Do not translate: ucase">ucase (&#160;string_expression&#160;)</string>
  275. <string id="db2_ucase.tip" type="String">Returns "string_expression" with all lowercase characters shifted to uppercase.</string>
  276. <string id="db2_ucase.example.1" type="String" usage="Do not translate: ucase">ucase (&#160;XY896Zbced789&#160;)</string>
  277. <string id="db2_ucase.result.1" type="String">Result: Returns XY896ZBCED789.</string>
  278. <string id="db2_value.syntax" type="String" usage="Do not translate: value">value (&#160;expression_list&#160;)</string>
  279. <string id="db2_value.tip" type="String">Returns the first non-null argument (or null if all arguments are null). The Value function takes two or more arguments.</string>
  280. <string id="db2_value.example.1" type="String" usage="Do not translate: value">value (&#160;[Unit cost], [Unit price], [Unit sale price]&#160;)</string>
  281. <string id="db2_value.result.1" type="String">Result: Returns the first non-null value.</string>
  282. <string id="db2_varchar.syntax" type="String" usage="Do not translate: varchar">varchar (&#160;expression [&#160;,&#160;numeric_expression&#160;]&#160;)</string>
  283. <string id="db2_varchar.tip" type="String">Returns a VARCHAR representation of expression, with length numeric_expression.</string>
  284. <string id="db2_week.syntax" type="String" usage="Do not translate: week">week (&#160;date_expression&#160;)</string>
  285. <string id="db2_week.tip" type="String">Returns the week of the year in "date_expression" as an integer value in the range 1 to 53.</string>
  286. <string id="db2_week.example.1" type="String" usage="Do not translate: week">week (&#160;11 November 2005&#160;)</string>
  287. <string id="db2_week.result.1" type="String">Result: Returns 45.</string>
  288. <string id="db2_year.syntax" type="String" usage="Do not translate: year">year (&#160;date_expression&#160;)</string>
  289. <string id="db2_year.tip" type="String">Returns the year from "date_expression".</string>
  290. <string id="db2_year.example.1" type="String" usage="Do not translate: year">year (&#160;11 November 2005&#160;)</string>
  291. <string id="db2_year.result.1" type="String">Result: Returns 2005.</string>
  292. </section>
  293. <section name="CST" type="UI">
  294. <string id="db2_cast" type="String">DB2 Cast</string>
  295. <string id="db2_cast_char.syntax" type="String" usage="Do not translate: cast_char">cast_char (&#160;expression [&#160;,&#160;numeric_expression&#160;]&#160;)</string>
  296. <string id="db2_cast_char.tip" type="String">Returns the first "numeric_expression" characters of the value of "expression" cast as a string. The whole string is returned when the second argument is not specified.</string>
  297. <string id="db2_cast_char.example.1" type="String" usage="Do not translate: cast_char">Example: cast_char ([Inventory (query)].[Inventory].[Quantity shipped])</string>
  298. <string id="db2_cast_char.result.1" type="String">Result: 53730</string>
  299. <string id="db2_cast_date.syntax" type="String" usage="Do not translate: cast_date">cast_date (&#160;expression&#160;)</string>
  300. <string id="db2_cast_date.tip" type="String">Returns the value of "expression" cast as a date.</string>
  301. <string id="db2_cast_decimal.syntax" type="String" usage="Do not translate: cast_decimal">cast_decimal (&#160;expression [&#160;,&#160;numeric_expression1, numeric_expression2&#160;]&#160;)</string>
  302. <string id="db2_cast_decimal.tip" type="String">Returns the value of "expression" cast as a decimal with the precision of "numeric_expression1" and scale of "numeric_expression2".</string>
  303. <string id="db2_cast_double.syntax" type="String" usage="Do not translate: cast_double">cast_double (&#160;expression&#160;)</string>
  304. <string id="db2_cast_double.tip" type="String">Returns the value of "expression" cast as a double.</string>
  305. <string id="db2_cast_double_precision.syntax" type="String" usage="Do not translate: cast_double_precision">cast_double_precision (&#160;expression&#160;)</string>
  306. <string id="db2_cast_double_precision.tip" type="String">Returns the value of "expression" cast as a double.</string>
  307. <string id="db2_cast_float.syntax" type="String" usage="Do not translate: cast_float">cast_float (&#160;expression&#160;)</string>
  308. <string id="db2_cast_float.tip" type="String">Returns the value of "expression" cast as a float.</string>
  309. <string id="db2_cast_integer.syntax" type="String" usage="Do not translate: cast_integer">cast_integer (&#160;expression&#160;)</string>
  310. <string id="db2_cast_integer.tip" type="String">Returns the value of "expression" cast as a integer.</string>
  311. <string id="db2_cast_integer.example.1" type="String" usage="Do not translate: cast_integer">cast_integer (&#160;84.95&#160;)</string>
  312. <string id="db2_cast_integer.result.1" type="String">Result: 84</string>
  313. <string id="db2_cast_longvarchar.syntax" type="String" usage="Do not translate: cast_longvarchar">cast_longvarchar (&#160;string_expression&#160;)</string>
  314. <string id="db2_cast_longvarchar.tip" type="String">Returns the value of "string_expression" cast as a longvarchar. </string>
  315. <string id="db2_cast_smallint.syntax" type="String" usage="Do not translate: cast_smallint">cast_smallint (&#160;expression&#160;)</string>
  316. <string id="db2_cast_smallint.tip" type="String">Returns the value of "expression" cast as a smallint.</string>
  317. <string id="db2_cast_time.syntax" type="String" usage="Do not translate: cast_time">cast_time (&#160;string_expression&#160;)</string>
  318. <string id="db2_cast_time.tip" type="String">Returns the value of "string_expression" cast as a time value.</string>
  319. <string id="db2_cast_timestamp.syntax" type="String" usage="Do not translate: cast_timestamp">cast_timestamp (&#160;expression&#160;)</string>
  320. <string id="db2_cast_timestamp.tip" type="String">Returns the value of "expression" cast as a datetime.</string>
  321. <string id="db2_cast_varchar.syntax" type="String" usage="Do not translate: cast_varchar">cast_varchar (&#160;expression, integer_expression&#160;)</string>
  322. <string id="db2_cast_varchar.tip" type="String">Returns the value of "expression" cast as a varchar with length "integer_expression".</string>
  323. </section>
  324. <section name="MTH" type="UI">
  325. <string id="db2_math" type="String">DB2 Math</string>
  326. <string id="db2_log.syntax" type="String" usage="Do not translate: log">log (&#160;numeric_expression&#160;)</string>
  327. <string id="db2_log.tip" type="String">Returns the natural logarithm of "numeric_expression".</string>
  328. <string id="db2_log10.syntax" type="String" usage="Do not translate: log10">log10 (&#160;numeric_expression&#160;)</string>
  329. <string id="db2_log10.tip" type="String">Returns the base ten logarithm of "numeric_expression".</string>
  330. <string id="db2_rand.syntax" type="String" usage="Do not translate: rand">rand ([&#160;integer_expression&#160;])</string>
  331. <string id="db2_rand.tip" type="String">Generates a random number. Optional argument "integer_expression" may be used as a seed value.</string>
  332. </section>
  333. <section name="TRG" type="UI">
  334. <string id="db2_trig" type="String">DB2 Trigonometry</string>
  335. <string id="db2_acos.syntax" type="String" usage="Do not translate: acos">acos (&#160;numeric_expression&#160;)</string>
  336. <string id="db2_acos.tip" type="String">Returns the arccosine of "numeric_expression" in radians. The arccosine is the angle whose cosine is "numeric_expression".</string>
  337. <string id="db2_asin.syntax" type="String" usage="Do not translate: asin">asin (&#160;numeric_expression&#160;)</string>
  338. <string id="db2_asin.tip" type="String">Returns the arcsine of "numeric_expression" in radians. The arcsine is the angle whose sine is "numeric_expression".</string>
  339. <string id="db2_atan.syntax" type="String" usage="Do not translate: atan">atan (&#160;numeric_expression&#160;)</string>
  340. <string id="db2_atan.tip" type="String">Returns the arctangent of "numeric_expression" in radians. The arctangent is the angle whose tangent is "numeric_expression".</string>
  341. <string id="db2_atan2.syntax" type="String" usage="Do not translate: atan2">atan2 (&#160;numeric_expression1&#160;,&#160;numeric_expression2&#160;)</string>
  342. <string id="db2_atan2.tip" type="String">Returns the arctangent of the x and y coordinates specified by "numeric_expression1" and "numeric_expression2", respectively, in radians. The arctangent is the angle whose tangent is "numeric_expression2" / "numeric_expression1".</string>
  343. <string id="db2_atanh.syntax" type="String" usage="Do not translate: atanh">atanh (&#160;numeric_expression&#160;)</string>
  344. <string id="db2_atanh.tip" type="String">Returns the hyperbolic arctangent of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  345. <string id="db2_cos.syntax" type="String" usage="Do not translate: cos">cos (&#160;numeric_expression&#160;)</string>
  346. <string id="db2_cos.tip" type="String">Returns the cosine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  347. <string id="db2_cosh.syntax" type="String" usage="Do not translate: cosh">cosh (&#160;numeric_expression&#160;)</string>
  348. <string id="db2_cosh.tip" type="String">Returns the hyperbolic cosine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  349. <string id="db2_cot.syntax" type="String" usage="Do not translate: cot">cot (&#160;numeric_expression&#160;)</string>
  350. <string id="db2_cot.tip" type="String">Returns the cotangent of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  351. <string id="db2_degrees.syntax" type="String" usage="Do not translate: degrees">degrees (&#160;numeric_expression&#160;)</string>
  352. <string id="db2_degrees.tip" type="String">Returns "numeric_expression" radians converted to degrees.</string>
  353. <string id="db2_sin.syntax" type="String" usage="Do not translate: sin">sin (&#160;numeric_expression&#160;)</string>
  354. <string id="db2_sin.tip" type="String">Returns the sine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  355. <string id="db2_sinh.syntax" type="String" usage="Do not translate: sinh">sinh (&#160;numeric_expression&#160;)</string>
  356. <string id="db2_sinh.tip" type="String">Returns the hyperbolic sine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  357. <string id="db2_tan.syntax" type="String" usage="Do not translate: tan">tan (&#160;numeric_expression&#160;)</string>
  358. <string id="db2_tan.tip" type="String">Returns the tangent of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  359. <string id="db2_tanh.syntax" type="String" usage="Do not translate: tanh">tanh (&#160;numeric_expression&#160;)</string>
  360. <string id="db2_tanh.tip" type="String">Returns the hyperbolic tangent of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  361. </section>
  362. </component>
  363. </stringTable>