Change link from group-by-functions to aggregate-functions

Signed-off-by: Liviu-Mihail Concioiu <liviu.concioiu@gmail.com>
This commit is contained in:
Liviu-Mihail Concioiu 2021-06-07 00:49:33 +02:00 committed by William Desportes
parent df76fac871
commit 6b995a7a7b
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889

View File

@ -112,15 +112,15 @@ var mysqlDocKeyword = {
'ASIN': ['mathematical-functions', 'function_asin'],
'ATAN2': ['mathematical-functions', 'function_atan2'],
'ATAN': ['mathematical-functions', 'function_atan'],
'AVG': ['group-by-functions', 'function_avg'],
'AVG': ['aggregate-functions', 'function_avg'],
'BENCHMARK': ['information-functions', 'function_benchmark'],
'BIN': ['string-functions', 'function_bin'],
'BINARY': ['cast-functions', 'operator_binary'],
'BIT_AND': ['group-by-functions', 'function_bit_and'],
'BIT_AND': ['aggregate-functions', 'function_bit_and'],
'BIT_COUNT': ['bit-functions', 'function_bit_count'],
'BIT_LENGTH': ['string-functions', 'function_bit_length'],
'BIT_OR': ['group-by-functions', 'function_bit_or'],
'BIT_XOR': ['group-by-functions', 'function_bit_xor'],
'BIT_OR': ['aggregate-functions', 'function_bit_or'],
'BIT_XOR': ['aggregate-functions', 'function_bit_xor'],
'CASE': ['control-flow-functions', 'operator_case'],
'CAST': ['cast-functions', 'function_cast'],
'CEIL': ['mathematical-functions', 'function_ceil'],
@ -141,7 +141,7 @@ var mysqlDocKeyword = {
'Convert': ['cast-functions', 'function_convert'],
'COS': ['mathematical-functions', 'function_cos'],
'COT': ['mathematical-functions', 'function_cot'],
'COUNT': ['group-by-functions', 'function_count'],
'COUNT': ['aggregate-functions', 'function_count'],
'CRC32': ['mathematical-functions', 'function_crc32'],
'CURDATE': ['date-and-time-functions', 'function_curdate'],
'CURRENT_DATE': ['date-and-time-functions', 'function_current_date'],
@ -184,7 +184,7 @@ var mysqlDocKeyword = {
'GET_FORMAT': ['date-and-time-functions', 'function_get_format'],
'GET_LOCK': ['miscellaneous-functions', 'function_get_lock'],
'GREATEST': ['comparison-operators', 'function_greatest'],
'GROUP_CONCAT': ['group-by-functions', 'function_group_concat'],
'GROUP_CONCAT': ['aggregate-functions', 'function_group_concat'],
'HEX': ['string-functions', 'function_hex'],
'HOUR': ['date-and-time-functions', 'function_hour'],
'IF': ['control-flow-functions', 'function_if'],
@ -221,11 +221,11 @@ var mysqlDocKeyword = {
'MAKETIME': ['date-and-time-functions', 'function_maketime'],
'MASTER_POS_WAIT': ['miscellaneous-functions', 'function_master_pos_wait'],
'MATCH': ['fulltext-search', 'function_match'],
'MAX': ['group-by-functions', 'function_max'],
'MAX': ['aggregate-functions', 'function_max'],
'MD5': ['encryption-functions', 'function_md5'],
'MICROSECOND': ['date-and-time-functions', 'function_microsecond'],
'MID': ['string-functions', 'function_mid'],
'MIN': ['group-by-functions', 'function_min'],
'MIN': ['aggregate-functions', 'function_min'],
'MINUTE': ['date-and-time-functions', 'function_minute'],
'MOD': ['mathematical-functions', 'function_mod'],
'MONTH': ['date-and-time-functions', 'function_month'],
@ -272,10 +272,10 @@ var mysqlDocKeyword = {
'SOUNDEX': ['string-functions', 'function_soundex'],
'SPACE': ['string-functions', 'function_space'],
'SQRT': ['mathematical-functions', 'function_sqrt'],
'STD': ['group-by-functions', 'function_std'],
'STDDEV_POP': ['group-by-functions', 'function_stddev_pop'],
'STDDEV_SAMP': ['group-by-functions', 'function_stddev_samp'],
'STDDEV': ['group-by-functions', 'function_stddev'],
'STD': ['aggregate-functions', 'function_std'],
'STDDEV_POP': ['aggregate-functions', 'function_stddev_pop'],
'STDDEV_SAMP': ['aggregate-functions', 'function_stddev_samp'],
'STDDEV': ['aggregate-functions', 'function_stddev'],
'STR_TO_DATE': ['date-and-time-functions', 'function_str_to_date'],
'STRCMP': ['string-comparison-functions', 'function_strcmp'],
'SUBDATE': ['date-and-time-functions', 'function_subdate'],
@ -283,7 +283,7 @@ var mysqlDocKeyword = {
'SUBSTRING_INDEX': ['string-functions', 'function_substring_index'],
'SUBSTRING': ['string-functions', 'function_substring'],
'SUBTIME': ['date-and-time-functions', 'function_subtime'],
'SUM': ['group-by-functions', 'function_sum'],
'SUM': ['aggregate-functions', 'function_sum'],
'SYSDATE': ['date-and-time-functions', 'function_sysdate'],
'SYSTEM_USER': ['information-functions', 'function_system_user'],
'TAN': ['mathematical-functions', 'function_tan'],
@ -311,9 +311,9 @@ var mysqlDocKeyword = {
'UUID_SHORT': ['miscellaneous-functions', 'function_uuid_short'],
'UUID': ['miscellaneous-functions', 'function_uuid'],
'VALUES': ['miscellaneous-functions', 'function_values'],
'VAR_POP': ['group-by-functions', 'function_var_pop'],
'VAR_SAMP': ['group-by-functions', 'function_var_samp'],
'VARIANCE': ['group-by-functions', 'function_variance'],
'VAR_POP': ['aggregate-functions', 'function_var_pop'],
'VAR_SAMP': ['aggregate-functions', 'function_var_samp'],
'VARIANCE': ['aggregate-functions', 'function_variance'],
'VERSION': ['information-functions', 'function_version'],
'WEEK': ['date-and-time-functions', 'function_week'],
'WEEKDAY': ['date-and-time-functions', 'function_weekday'],
@ -327,7 +327,7 @@ var mysqlDocKeyword = {
'IS_NULL': ['comparison-operators', 'operator_is-null'],
'NOT_LIKE': ['string-comparison-functions', 'operator_not-like'],
'NOT_REGEXP': ['regexp', 'operator_not-regexp'],
'COUNT_DISTINCT': ['group-by-functions', 'function_count-distinct'],
'COUNT_DISTINCT': ['aggregate-functions', 'function_count-distinct'],
'NOT_IN': ['comparison-operators', 'function_not-in']
};