~ubuntu-branches/ubuntu/trusty/mysql-5.5/trusty-security

« back to all changes in this revision

Viewing changes to scripts/fill_help_tables.sql

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2017-01-18 07:41:29 UTC
  • mfrom: (1.1.30)
  • Revision ID: package-import@ubuntu.com-20170118074129-gyilougbokbprl1p
Tags: 5.5.54-0ubuntu0.14.04.1
* SECURITY UPDATE: Update to 5.5.54 to fix security issues
  - CVE-2017-3238
  - CVE-2017-3243
  - CVE-2017-3244
  - CVE-2017-3258
  - CVE-2017-3265
  - CVE-2017-3291
  - CVE-2017-3312
  - CVE-2017-3313
  - CVE-2017-3317
  - CVE-2017-3318 
* debian/patches/fix_test_events_2.patch: fix date in test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
-- team. If you require changes to the format of this file, contact the
18
18
-- docs team.
19
19
 
 
20
-- File generation date: 2016-11-26
20
21
-- MySQL series: 5.5
 
22
-- Document repository revision: 49971
21
23
 
22
24
-- To use this file, load its contents into the mysql database. For example,
23
25
-- with the mysql client program, process the file like this, where
96
96
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (16,32,'MONTH','Syntax:\nMONTH(date)\n\nReturns the month for date, in the range 1 to 12 for January to\nDecember, or 0 for dates such as \'0000-00-00\' or \'2008-00-00\' that have\na zero month part.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT MONTH(\'2008-02-03\');\n        -> 2\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
97
97
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (17,27,'SHOW TRIGGERS','Syntax:\nSHOW TRIGGERS [{FROM | IN} db_name]\n    [LIKE \'pattern\' | WHERE expr]\n\nSHOW TRIGGERS lists the triggers currently defined for tables in a\ndatabase (the default database unless a FROM clause is given). This\nstatement returns results only for databases and tables for which you\nhave the TRIGGER privilege. The LIKE clause, if present, indicates\nwhich table names to match (not trigger names) and causes the statement\nto display triggers for those tables. The WHERE clause can be given to\nselect rows using more general conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nFor the trigger ins_sum as defined in\nhttp://dev.mysql.com/doc/refman/5.5/en/triggers.html, the output of\nthis statement is as shown here:\n\nmysql> SHOW TRIGGERS LIKE \'acc%\'\\G\n*************************** 1. row ***************************\n             Trigger: ins_sum\n               Event: INSERT\n               Table: account\n           Statement: SET @sum = @sum + NEW.amount\n              Timing: BEFORE\n             Created: NULL\n            sql_mode:\n             Definer: myname@localhost\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n  Database Collation: latin1_swedish_ci\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-triggers.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-triggers.html');
98
98
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (18,13,'ISCLOSED','IsClosed(ls)\n\nFor a LineString value ls, IsClosed() returns 1 if ls is closed (that\nis, its StartPoint() and EndPoint() values are the same).\n\nFor a MultiLineString value ls, IsClosed() returns 1 if ls is closed\n(that is, the StartPoint() and EndPoint() values are the same for each\nLineString in ls).\n\nIsClosed() returns 0 if ls is not closed, and NULL if ls is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls1 = \'LineString(1 1,2 2,3 3,2 2)\';\nmysql> SET @ls2 = \'LineString(1 1,2 2,3 3,1 1)\';\n\nmysql> SELECT IsClosed(GeomFromText(@ls1));\n+------------------------------+\n| IsClosed(GeomFromText(@ls1)) |\n+------------------------------+\n|                            0 |\n+------------------------------+\n\nmysql> SELECT IsClosed(GeomFromText(@ls2));\n+------------------------------+\n| IsClosed(GeomFromText(@ls2)) |\n+------------------------------+\n|                            1 |\n+------------------------------+\n\nmysql> SET @ls3 = \'MultiLineString((1 1,2 2,3 3),(4 4,5 5))\';\n\nmysql> SELECT IsClosed(GeomFromText(@ls3));\n+------------------------------+\n| IsClosed(GeomFromText(@ls3)) |\n+------------------------------+\n|                            0 |\n+------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html');
99
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (19,38,'REGEXP','Syntax:\nexpr REGEXP pat, expr RLIKE pat\n\nPerforms a pattern match of a string expression expr against a pattern\npat. The pattern can be an extended regular expression, the syntax for\nwhich is discussed later in this section. Returns 1 if expr matches\npat; otherwise it returns 0. If either expr or pat is NULL, the result\nis NULL. RLIKE is a synonym for REGEXP, provided for mSQL\ncompatibility.\n\nThe pattern need not be a literal string. For example, it can be\nspecified as a string expression or table column.\n\n*Note*: Because MySQL uses the C escape syntax in strings (for example,\n"\\n" to represent the newline character), you must double any "\\" that\nyou use in your REGEXP strings.\n\nREGEXP is not case sensitive, except when used with binary strings.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/regexp.html\n\n','mysql> SELECT \'Monty!\' REGEXP \'.*\';\n        -> 1\nmysql> SELECT \'new*\\n*line\' REGEXP \'new\\\\*.\\\\*line\';\n        -> 1\nmysql> SELECT \'a\' REGEXP \'A\', \'a\' REGEXP BINARY \'A\';\n        -> 1  0\nmysql> SELECT \'a\' REGEXP \'^[a-d]\';\n        -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/regexp.html');
 
99
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (19,38,'REGEXP','Syntax:\nexpr REGEXP pat, expr RLIKE pat\n\nPerforms a pattern match of a string expression expr against a pattern\npat. The pattern can be an extended regular expression, the syntax for\nwhich is discussed later in this section. Returns 1 if expr matches\npat; otherwise it returns 0. If either expr or pat is NULL, the result\nis NULL. RLIKE is a synonym for REGEXP, provided for mSQL\ncompatibility.\n\nThe pattern need not be a literal string. For example, it can be\nspecified as a string expression or table column.\n\n*Note*: Because MySQL uses the C escape syntax in strings (for example,\n\\n to represent the newline character), you must double any \\ that you\nuse in your REGEXP strings.\n\nREGEXP is not case sensitive, except when used with binary strings.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/regexp.html\n\n','mysql> SELECT \'Monty!\' REGEXP \'.*\';\n        -> 1\nmysql> SELECT \'new*\\n*line\' REGEXP \'new\\\\*.\\\\*line\';\n        -> 1\nmysql> SELECT \'a\' REGEXP \'A\', \'a\' REGEXP BINARY \'A\';\n        -> 1  0\nmysql> SELECT \'a\' REGEXP \'^[a-d]\';\n        -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/regexp.html');
100
100
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (20,24,'IF STATEMENT','Syntax:\nIF search_condition THEN statement_list\n    [ELSEIF search_condition THEN statement_list] ...\n    [ELSE statement_list]\nEND IF\n\nThe IF statement for stored programs implements a basic conditional\nconstruct.\n\n*Note*: There is also an IF() function, which differs from the IF\nstatement described here. See\nhttp://dev.mysql.com/doc/refman/5.5/en/control-flow-functions.html. The\nIF statement can have THEN, ELSE, and ELSEIF clauses, and it is\nterminated with END IF.\n\nIf the search_condition evaluates to true, the corresponding THEN or\nELSEIF clause statement_list executes. If no search_condition matches,\nthe ELSE clause statement_list executes.\n\nEach statement_list consists of one or more SQL statements; an empty\nstatement_list is not permitted.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/if.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/if.html');
101
101
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (21,31,'WITHIN','Within(g1,g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially within g2. This\ntests the opposite relationship as Contains().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mbr.html');
102
102
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (22,27,'SHOW PLUGINS','Syntax:\nSHOW PLUGINS\n\nSHOW PLUGINS displays information about server plugins. Plugin\ninformation is also available in the INFORMATION_SCHEMA.PLUGINS table.\nSee http://dev.mysql.com/doc/refman/5.5/en/plugins-table.html.\n\nExample of SHOW PLUGINS output:\n\nmysql> SHOW PLUGINS\\G\n*************************** 1. row ***************************\n   Name: binlog\n Status: ACTIVE\n   Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n*************************** 2. row ***************************\n   Name: CSV\n Status: ACTIVE\n   Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n*************************** 3. row ***************************\n   Name: MEMORY\n Status: ACTIVE\n   Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n*************************** 4. row ***************************\n   Name: MyISAM\n Status: ACTIVE\n   Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n...\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-plugins.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-plugins.html');
137
137
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (57,27,'CACHE INDEX','Syntax:\nCACHE INDEX\n  tbl_index_list [, tbl_index_list] ...\n  [PARTITION (partition_list | ALL)]\n  IN key_cache_name\n\ntbl_index_list:\n  tbl_name [[INDEX|KEY] (index_name[, index_name] ...)]\n\npartition_list:\n  partition_name[, partition_name][, ...]\n\nThe CACHE INDEX statement assigns table indexes to a specific key\ncache. It is used only for MyISAM tables. After the indexes have been\nassigned, they can be preloaded into the cache if desired with LOAD\nINDEX INTO CACHE.\n\nThe following statement assigns indexes from the tables t1, t2, and t3\nto the key cache named hot_cache:\n\nmysql> CACHE INDEX t1, t2, t3 IN hot_cache;\n+---------+--------------------+----------+----------+\n| Table   | Op                 | Msg_type | Msg_text |\n+---------+--------------------+----------+----------+\n| test.t1 | assign_to_keycache | status   | OK       |\n| test.t2 | assign_to_keycache | status   | OK       |\n| test.t3 | assign_to_keycache | status   | OK       |\n+---------+--------------------+----------+----------+\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/cache-index.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/cache-index.html');
138
138
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (58,12,'COMPRESS','Syntax:\nCOMPRESS(string_to_compress)\n\nCompresses a string and returns the result as a binary string. This\nfunction requires MySQL to have been compiled with a compression\nlibrary such as zlib. Otherwise, the return value is always NULL. The\ncompressed string can be uncompressed with UNCOMPRESS().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','mysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',1000)));\n        -> 21\nmysql> SELECT LENGTH(COMPRESS(\'\'));\n        -> 0\nmysql> SELECT LENGTH(COMPRESS(\'a\'));\n        -> 13\nmysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',16)));\n        -> 15\n','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html');
139
139
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (59,28,'HANDLER','Syntax:\nHANDLER tbl_name OPEN [ [AS] alias]\n\nHANDLER tbl_name READ index_name { = | <= | >= | < | > } (value1,value2,...)\n    [ WHERE where_condition ] [LIMIT ... ]\nHANDLER tbl_name READ index_name { FIRST | NEXT | PREV | LAST }\n    [ WHERE where_condition ] [LIMIT ... ]\nHANDLER tbl_name READ { FIRST | NEXT }\n    [ WHERE where_condition ] [LIMIT ... ]\n\nHANDLER tbl_name CLOSE\n\nThe HANDLER statement provides direct access to table storage engine\ninterfaces. It is available for InnoDB and MyISAM tables.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/handler.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/handler.html');
140
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (60,9,'HELP_DATE','This help information was generated from the MySQL 5.5 Reference Manual\non: 2016-09-28\n','','');
 
140
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (60,9,'HELP_DATE','This help information was generated from the MySQL 5.5 Reference Manual\non: 2016-11-26\n','','');
141
141
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (61,40,'RENAME TABLE','Syntax:\nRENAME TABLE tbl_name TO new_tbl_name\n    [, tbl_name2 TO new_tbl_name2] ...\n\nThis statement renames one or more tables. The rename operation is done\natomically, which means that no other session can access any of the\ntables while the rename is running.\n\nFor example, a table named old_table can be renamed to new_table as\nshown here:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/rename-table.html\n\n','RENAME TABLE old_table TO new_table;\n','http://dev.mysql.com/doc/refman/5.5/en/rename-table.html');
142
142
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (62,23,'BOOLEAN','BOOL, BOOLEAN\n\nThese types are synonyms for TINYINT(1). A value of zero is considered\nfalse. Nonzero values are considered true:\n\nmysql> SELECT IF(0, \'true\', \'false\');\n+------------------------+\n| IF(0, \'true\', \'false\') |\n+------------------------+\n| false                  |\n+------------------------+\n\nmysql> SELECT IF(1, \'true\', \'false\');\n+------------------------+\n| IF(1, \'true\', \'false\') |\n+------------------------+\n| true                   |\n+------------------------+\n\nmysql> SELECT IF(2, \'true\', \'false\');\n+------------------------+\n| IF(2, \'true\', \'false\') |\n+------------------------+\n| true                   |\n+------------------------+\n\nHowever, the values TRUE and FALSE are merely aliases for 1 and 0,\nrespectively, as shown here:\n\nmysql> SELECT IF(0 = FALSE, \'true\', \'false\');\n+--------------------------------+\n| IF(0 = FALSE, \'true\', \'false\') |\n+--------------------------------+\n| true                           |\n+--------------------------------+\n\nmysql> SELECT IF(1 = TRUE, \'true\', \'false\');\n+-------------------------------+\n| IF(1 = TRUE, \'true\', \'false\') |\n+-------------------------------+\n| true                          |\n+-------------------------------+\n\nmysql> SELECT IF(2 = TRUE, \'true\', \'false\');\n+-------------------------------+\n| IF(2 = TRUE, \'true\', \'false\') |\n+-------------------------------+\n| false                         |\n+-------------------------------+\n\nmysql> SELECT IF(2 = FALSE, \'true\', \'false\');\n+--------------------------------+\n| IF(2 = FALSE, \'true\', \'false\') |\n+--------------------------------+\n| false                          |\n+--------------------------------+\n\nThe last two statements display the results shown because 2 is equal to\nneither 1 nor 0.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html');
143
143
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (63,3,'MOD','Syntax:\nMOD(N,M), N % M, N MOD M\n\nModulo operation. Returns the remainder of N divided by M.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT MOD(234, 10);\n        -> 4\nmysql> SELECT 253 % 7;\n        -> 1\nmysql> SELECT MOD(29,9);\n        -> 2\nmysql> SELECT 29 MOD 9;\n        -> 2\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html');
144
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (64,29,'HELP STATEMENT','Syntax:\nHELP \'search_string\'\n\nThe HELP statement returns online information from the MySQL Reference\nmanual. Its proper operation requires that the help tables in the mysql\ndatabase be initialized with help topic information (see\nhttp://dev.mysql.com/doc/refman/5.5/en/server-side-help-support.html).\n\nThe HELP statement searches the help tables for the given search string\nand displays the result of the search. The search string is not case\nsensitive.\n\nThe search string can contain the wildcard characters "%" and "_".\nThese have the same meaning as for pattern-matching operations\nperformed with the LIKE operator. For example, HELP \'rep%\' returns a\nlist of topics that begin with rep.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/help.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/help.html');
 
144
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (64,29,'HELP STATEMENT','Syntax:\nHELP \'search_string\'\n\nThe HELP statement returns online information from the MySQL Reference\nmanual. Its proper operation requires that the help tables in the mysql\ndatabase be initialized with help topic information (see\nhttp://dev.mysql.com/doc/refman/5.5/en/server-side-help-support.html).\n\nThe HELP statement searches the help tables for the given search string\nand displays the result of the search. The search string is not case\nsensitive.\n\nThe search string can contain the wildcard characters % and _. These\nhave the same meaning as for pattern-matching operations performed with\nthe LIKE operator. For example, HELP \'rep%\' returns a list of topics\nthat begin with rep.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/help.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/help.html');
145
145
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (65,38,'UCASE','Syntax:\nUCASE(str)\n\nUCASE() is a synonym for UPPER().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
146
146
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (66,27,'SHOW BINLOG EVENTS','Syntax:\nSHOW BINLOG EVENTS\n   [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\n\nShows the events in the binary log. If you do not specify \'log_name\',\nthe first binary log is displayed.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-binlog-events.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-binlog-events.html');
147
147
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (67,33,'MPOLYFROMWKB','MPolyFromWKB(wkb[,srid]), MultiPolygonFromWKB(wkb[,srid])\n\nConstructs a MultiPolygon value using its WKB representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html');
167
167
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (87,40,'ALTER VIEW','Syntax:\nALTER\n    [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n    [DEFINER = { user | CURRENT_USER }]\n    [SQL SECURITY { DEFINER | INVOKER }]\n    VIEW view_name [(column_list)]\n    AS select_statement\n    [WITH [CASCADED | LOCAL] CHECK OPTION]\n\nThis statement changes the definition of a view, which must exist. The\nsyntax is similar to that for CREATE VIEW and the effect is the same as\nfor CREATE OR REPLACE VIEW. See [HELP CREATE VIEW]. This statement\nrequires the CREATE VIEW and DROP privileges for the view, and some\nprivilege for each column referred to in the SELECT statement. ALTER\nVIEW is permitted only to the definer or users with the SUPER\nprivilege.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/alter-view.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/alter-view.html');
168
168
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (88,27,'SHOW DATABASES','Syntax:\nSHOW {DATABASES | SCHEMAS}\n    [LIKE \'pattern\' | WHERE expr]\n\nSHOW DATABASES lists the databases on the MySQL server host. SHOW\nSCHEMAS is a synonym for SHOW DATABASES. The LIKE clause, if present,\nindicates which database names to match. The WHERE clause can be given\nto select rows using more general conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nYou see only those databases for which you have some kind of privilege,\nunless you have the global SHOW DATABASES privilege. You can also get\nthis list using the mysqlshow command.\n\nIf the server was started with the --skip-show-database option, you\ncannot use this statement at all unless you have the SHOW DATABASES\nprivilege.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-databases.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-databases.html');
169
169
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (89,32,'SEC_TO_TIME','Syntax:\nSEC_TO_TIME(seconds)\n\nReturns the seconds argument, converted to hours, minutes, and seconds,\nas a TIME value. The range of the result is constrained to that of the\nTIME data type. A warning occurs if the argument corresponds to a value\noutside that range.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT SEC_TO_TIME(2378);\n        -> \'00:39:38\'\nmysql> SELECT SEC_TO_TIME(2378) + 0;\n        -> 3938\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
170
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (90,38,'LOCATE','Syntax:\nLOCATE(substr,str), LOCATE(substr,str,pos)\n\nThe first syntax returns the position of the first occurrence of\nsubstring substr in string str. The second syntax returns the position\nof the first occurrence of substring substr in string str, starting at\nposition pos. Returns 0 if substr is not in str.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT LOCATE(\'bar\', \'foobarbar\');\n        -> 4\nmysql> SELECT LOCATE(\'xbar\', \'foobar\');\n        -> 0\nmysql> SELECT LOCATE(\'bar\', \'foobarbar\', 5);\n        -> 7\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
 
170
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (90,38,'LOCATE','Syntax:\nLOCATE(substr,str), LOCATE(substr,str,pos)\n\nThe first syntax returns the position of the first occurrence of\nsubstring substr in string str. The second syntax returns the position\nof the first occurrence of substring substr in string str, starting at\nposition pos. Returns 0 if substr is not in str. Returns NULL if substr\nor str is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT LOCATE(\'bar\', \'foobarbar\');\n        -> 4\nmysql> SELECT LOCATE(\'xbar\', \'foobar\');\n        -> 0\nmysql> SELECT LOCATE(\'bar\', \'foobarbar\', 5);\n        -> 7\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
171
171
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (91,27,'SHOW EVENTS','Syntax:\nSHOW EVENTS [{FROM | IN} schema_name]\n    [LIKE \'pattern\' | WHERE expr]\n\nThis statement displays information about Event Manager events. It\nrequires the EVENT privilege for the database from which the events are\nto be shown.\n\nIn its simplest form, SHOW EVENTS lists all of the events in the\ncurrent schema:\n\nmysql> SELECT CURRENT_USER(), SCHEMA();\n+----------------+----------+\n| CURRENT_USER() | SCHEMA() |\n+----------------+----------+\n| jon@ghidora    | myschema |\n+----------------+----------+\n1 row in set (0.00 sec)\n\nmysql> SHOW EVENTS\\G\n*************************** 1. row ***************************\n                  Db: myschema\n                Name: e_daily\n             Definer: jon@ghidora\n           Time zone: SYSTEM\n                Type: RECURRING\n          Execute at: NULL\n      Interval value: 10\n      Interval field: SECOND\n              Starts: 2006-02-09 10:41:23\n                Ends: NULL\n              Status: ENABLED\n          Originator: 0\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n  Database Collation: latin1_swedish_ci\n\nTo see events for a specific schema, use the FROM clause. For example,\nto see events for the test schema, use the following statement:\n\nSHOW EVENTS FROM test;\n\nThe LIKE clause, if present, indicates which event names to match. The\nWHERE clause can be given to select rows using more general conditions,\nas discussed in\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-events.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-events.html');
172
172
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (92,23,'LONGTEXT','LONGTEXT [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 4,294,967,295 or 4GB (232 − 1)\ncharacters. The effective maximum length is less if the value contains\nmultibyte characters. The effective maximum length of LONGTEXT columns\nalso depends on the configured maximum packet size in the client/server\nprotocol and available memory. Each LONGTEXT value is stored using a\n4-byte length prefix that indicates the number of bytes in the value.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html');
173
173
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (93,27,'KILL','Syntax:\nKILL [CONNECTION | QUERY] processlist_id\n\nEach connection to mysqld runs in a separate thread. You can kill a\nthread with the KILL processlist_id statement.\n\nThread processlist identifiers can be determined from the ID column of\nthe INFORMATION_SCHEMA.PROCESSLIST table, the Id column of SHOW\nPROCESSLIST output, and the PROCESSLIST_ID column of the Performance\nSchema threads table. The value for the current thread is returned by\nthe CONNECTION_ID() function.\n\nKILL permits an optional CONNECTION or QUERY modifier:\n\no KILL CONNECTION is the same as KILL with no modifier: It terminates\n  the connection associated with the given processlist_id, after\n  terminating any statement the connection is executing.\n\no KILL QUERY terminates the statement the connection is currently\n  executing, but leaves the connection itself intact.\n\nIf you have the PROCESS privilege, you can see all threads. If you have\nthe SUPER privilege, you can kill all threads and statements.\nOtherwise, you can see and kill only your own threads and statements.\n\nYou can also use the mysqladmin processlist and mysqladmin kill\ncommands to examine and kill threads.\n\n*Note*: You cannot use KILL with the Embedded MySQL Server library\nbecause the embedded server merely runs inside the threads of the host\napplication. It does not create any connection threads of its own.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/kill.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/kill.html');
177
177
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (97,8,'SET GLOBAL SQL_SLAVE_SKIP_COUNTER','Syntax:\nSET GLOBAL sql_slave_skip_counter = N\n\nThis statement skips the next N events from the master. This is useful\nfor recovering from replication stops caused by a statement.\n\nThis statement is valid only when the slave threads are not running.\nOtherwise, it produces an error.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/set-global-sql-slave-skip-counter.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/set-global-sql-slave-skip-counter.html');
178
178
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (98,7,'MBREQUAL','MBREqual(g1,g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangles of\nthe two geometries g1 and g2 are the same.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html');
179
179
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (99,34,'PROCEDURE ANALYSE','Syntax:\nANALYSE([max_elements[,max_memory]])\n\nANALYSE() examines the result from a query and returns an analysis of\nthe results that suggests optimal data types for each column that may\nhelp reduce table sizes. To obtain this analysis, append PROCEDURE\nANALYSE to the end of a SELECT statement:\n\nSELECT ... FROM ... WHERE ... PROCEDURE ANALYSE([max_elements,[max_memory]])\n\nFor example:\n\nSELECT col1, col2 FROM table1 PROCEDURE ANALYSE(10, 2000);\n\nThe results show some statistics for the values returned by the query,\nand propose an optimal data type for the columns. This can be helpful\nfor checking your existing tables, or after importing new data. You may\nneed to try different settings for the arguments so that PROCEDURE\nANALYSE() does not suggest the ENUM data type when it is not\nappropriate.\n\nThe arguments are optional and are used as follows:\n\no max_elements (default 256) is the maximum number of distinct values\n  that ANALYSE() notices per column. This is used by ANALYSE() to check\n  whether the optimal data type should be of type ENUM; if there are\n  more than max_elements distinct values, then ENUM is not a suggested\n  type.\n\no max_memory (default 8192) is the maximum amount of memory that\n  ANALYSE() should allocate per column while trying to find all\n  distinct values.\n\nA PROCEDURE clause is not permitted in a UNION statement.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/procedure-analyse.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/procedure-analyse.html');
180
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (100,9,'HELP_VERSION','This help information was generated from the MySQL 5.5 Reference Manual\non: 2016-09-28 (revision: 49223)\n\nThis information applies to MySQL 5.5 through 5.5.54.\n','','');
 
180
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (100,9,'HELP_VERSION','This help information was generated from the MySQL 5.5 Reference Manual\non: 2016-11-26 (revision: 49971)\n\nThis information applies to MySQL 5.5 through 5.5.55.\n','','');
181
181
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (101,38,'CHARACTER_LENGTH','Syntax:\nCHARACTER_LENGTH(str)\n\nCHARACTER_LENGTH() is a synonym for CHAR_LENGTH().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
182
182
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (102,27,'SHOW PRIVILEGES','Syntax:\nSHOW PRIVILEGES\n\nSHOW PRIVILEGES shows the list of system privileges that the MySQL\nserver supports. The exact list of privileges depends on the version of\nyour server.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-privileges.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-privileges.html');
183
183
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (103,40,'CREATE TABLESPACE','Syntax:\nCREATE TABLESPACE tablespace_name\n    ADD DATAFILE \'file_name\'\n    USE LOGFILE GROUP logfile_group\n    [EXTENT_SIZE [=] extent_size]\n    [INITIAL_SIZE [=] initial_size]\n    [AUTOEXTEND_SIZE [=] autoextend_size]\n    [MAX_SIZE [=] max_size]\n    [NODEGROUP [=] nodegroup_id]\n    [WAIT]\n    [COMMENT [=] comment_text]\n    ENGINE [=] engine_name\n\nThis statement is used to create a tablespace, which can contain one or\nmore data files, providing storage space for tables. One data file is\ncreated and added to the tablespace using this statement. Additional\ndata files may be added to the tablespace by using the ALTER TABLESPACE\nstatement (see [HELP ALTER TABLESPACE]). For rules covering the naming\nof tablespaces, see\nhttp://dev.mysql.com/doc/refman/5.5/en/identifiers.html.\n\n*Note*: All MySQL Cluster Disk Data objects share the same namespace.\nThis means that each Disk Data object must be uniquely named (and not\nmerely each Disk Data object of a given type). For example, you cannot\nhave a tablespace and a log file group with the same name, or a\ntablespace and a data file with the same name.\n\nA log file group of one or more UNDO log files must be assigned to the\ntablespace to be created with the USE LOGFILE GROUP clause.\nlogfile_group must be an existing log file group created with CREATE\nLOGFILE GROUP (see [HELP CREATE LOGFILE GROUP]). Multiple tablespaces\nmay use the same log file group for UNDO logging.\n\nThe EXTENT_SIZE sets the size, in bytes, of the extents used by any\nfiles belonging to the tablespace. The default value is 1M. The minimum\nsize is 32K, and theoretical maximum is 2G, although the practical\nmaximum size depends on a number of factors. In most cases, changing\nthe extent size does not have any measurable effect on performance, and\nthe default value is recommended for all but the most unusual\nsituations.\n\nAn extent is a unit of disk space allocation. One extent is filled with\nas much data as that extent can contain before another extent is used.\nIn theory, up to 65,535 (64K) extents may used per data file; however,\nthe recommended maximum is 32,768 (32K). The recommended maximum size\nfor a single data file is 32G---that is, 32K extents x 1 MB per extent.\nIn addition, once an extent is allocated to a given partition, it\ncannot be used to store data from a different partition; an extent\ncannot store data from more than one partition. This means, for example\nthat a tablespace having a single datafile whose INITIAL_SIZE is 256 MB\nand whose EXTENT_SIZE is 128M has just two extents, and so can be used\nto store data from at most two different disk data table partitions.\n\nYou can see how many extents remain free in a given data file by\nquerying the INFORMATION_SCHEMA.FILES table, and so derive an estimate\nfor how much space remains free in the file. For further discussion and\nexamples, see http://dev.mysql.com/doc/refman/5.5/en/files-table.html.\n\nThe INITIAL_SIZE parameter sets the data file\'s total size in bytes.\nOnce the file has been created, its size cannot be changed; however,\nyou can add more data files to the tablespace using ALTER TABLESPACE\n... ADD DATAFILE. See [HELP ALTER TABLESPACE].\n\nINITIAL_SIZE is optional; its default value is 134217728 (128 MB).\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nWhen setting EXTENT_SIZE, you may optionally follow the number with a\none-letter abbreviation for an order of magnitude, similar to those\nused in my.cnf. Generally, this is one of the letters M (for megabytes)\nor G (for gigabytes). In MySQL Cluster NDB 7.2.14 and later, these\nabbreviations are also supported when specifying INITIAL_SIZE as well.\n(Bug #13116514, Bug #16104705, Bug #62858)\n\nINITIAL_SIZE, EXTENT_SIZE, and UNDO_BUFFER_SIZE are subject to rounding\nas follows:\n\no EXTENT_SIZE and UNDO_BUFFER_SIZE are each rounded up to the nearest\n  whole multiple of 32K.\n\no INITIAL_SIZE is rounded down to the nearest whole multiple of 32K.\n\n  For data files, INITIAL_SIZE is subject to further rounding; the\n  result just obtained is rounded up to the nearest whole multiple of\n  EXTENT_SIZE (after any rounding).\n\nThe rounding just described is done explicitly, and a warning is issued\nby the MySQL Server when any such rounding is performed. The rounded\nvalues are also used by the NDB kernel for calculating\nINFORMATION_SCHEMA.FILES column values and other purposes. However, to\navoid an unexpected result, we suggest that you always use whole\nmultiples of 32K in specifying these options.\n\nAUTOEXTEND_SIZE, MAX_SIZE, NODEGROUP, WAIT, and COMMENT are parsed but\nignored, and so currently have no effect. These options are intended\nfor future expansion.\n\nThe ENGINE parameter determines the storage engine which uses this\ntablespace, with engine_name being the name of the storage engine.\nCurrently, engine_name must be one of the values NDB or NDBCLUSTER.\n\nWhen CREATE TABLESPACE is used with ENGINE = NDB, a tablespace and\nassociated data file are created on each Cluster data node. You can\nverify that the data files were created and obtain information about\nthem by querying the INFORMATION_SCHEMA.FILES table. For example:\n\nmysql> SELECT LOGFILE_GROUP_NAME, FILE_NAME, EXTRA\n    -> FROM INFORMATION_SCHEMA.FILES\n    -> WHERE TABLESPACE_NAME = \'newts\' AND FILE_TYPE = \'DATAFILE\';\n+--------------------+-------------+----------------+\n| LOGFILE_GROUP_NAME | FILE_NAME   | EXTRA          |\n+--------------------+-------------+----------------+\n| lg_3               | newdata.dat | CLUSTER_NODE=3 |\n| lg_3               | newdata.dat | CLUSTER_NODE=4 |\n+--------------------+-------------+----------------+\n2 rows in set (0.01 sec)\n\n(See http://dev.mysql.com/doc/refman/5.5/en/files-table.html.)\n\nCREATE TABLESPACE is useful only with Disk Data storage for MySQL\nCluster. See\nhttp://dev.mysql.com/doc/refman/5.5/en/mysql-cluster-disk-data.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-tablespace.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-tablespace.html');
184
184
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (104,38,'INSERT FUNCTION','Syntax:\nINSERT(str,pos,len,newstr)\n\nReturns the string str, with the substring beginning at position pos\nand len characters long replaced by the string newstr. Returns the\noriginal string if pos is not within the length of the string. Replaces\nthe rest of the string from position pos if len is not within the\nlength of the rest of the string. Returns NULL if any argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT INSERT(\'Quadratic\', 3, 4, \'What\');\n        -> \'QuWhattic\'\nmysql> SELECT INSERT(\'Quadratic\', -1, 4, \'What\');\n        -> \'Quadratic\'\nmysql> SELECT INSERT(\'Quadratic\', 3, 100, \'What\');\n        -> \'QuWhat\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
185
185
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (105,15,'XOR','Syntax:\nXOR\n\nLogical XOR. Returns NULL if either operand is NULL. For non-NULL\noperands, evaluates to 1 if an odd number of operands is nonzero,\notherwise 0 is returned.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/logical-operators.html\n\n','mysql> SELECT 1 XOR 1;\n        -> 0\nmysql> SELECT 1 XOR 0;\n        -> 1\nmysql> SELECT 1 XOR NULL;\n        -> NULL\nmysql> SELECT 1 XOR 1 XOR 1;\n        -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/logical-operators.html');
186
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (106,10,'GRANT','Syntax:\nGRANT\n    priv_type [(column_list)]\n      [, priv_type [(column_list)]] ...\n    ON [object_type] priv_level\n    TO user_specification [, user_specification] ...\n    [REQUIRE {NONE | tls_option [[AND] tls_option] ...}]\n    [WITH {GRANT OPTION | resource_option} ...]\n\nGRANT PROXY ON user_specification\n    TO user_specification [, user_specification] ...\n    [WITH GRANT OPTION]\n\nobject_type: {\n    TABLE\n  | FUNCTION\n  | PROCEDURE\n}\n\npriv_level: {\n    *\n  | *.*\n  | db_name.*\n  | db_name.tbl_name\n  | tbl_name\n  | db_name.routine_name\n}\n\nuser_specification:\n    user [ auth_option ]\n\nauth_option: {\n    IDENTIFIED BY \'auth_string\'\n  | IDENTIFIED BY PASSWORD \'hash_string\'\n  | IDENTIFIED WITH auth_plugin\n  | IDENTIFIED WITH auth_plugin AS \'hash_string\'\n}\n\ntls_option: {\n    SSL\n  | X509\n  | CIPHER \'cipher\'\n  | ISSUER \'issuer\'\n  | SUBJECT \'subject\'\n}\n\nresource_option: {\n  | MAX_QUERIES_PER_HOUR count\n  | MAX_UPDATES_PER_HOUR count\n  | MAX_CONNECTIONS_PER_HOUR count\n  | MAX_USER_CONNECTIONS count\n}\n\nThe GRANT statement grants privileges to MySQL user accounts. GRANT\nalso serves to specify other account characteristics such as use of\nsecure connections and limits on access to server resources.\n\nTo use GRANT, you must have the GRANT OPTION privilege, and you must\nhave the privileges that you are granting. When the read_only system\nvariable is enabled, GRANT additionally requires the SUPER privilege.\n\nThe REVOKE statement is related to GRANT and enables administrators to\nremove account privileges. See [HELP REVOKE].\n\nNormally, a database administrator first uses CREATE USER to create an\naccount, then GRANT to define its privileges and characteristics. For\nexample:\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED BY \'mypass\';\nGRANT ALL ON db1.* TO \'jeffrey\'@\'localhost\';\nGRANT SELECT ON db2.invoice TO \'jeffrey\'@\'localhost\';\nGRANT USAGE ON *.* TO \'jeffrey\'@\'localhost\' WITH MAX_QUERIES_PER_HOUR 90;\n\n*Note*: Examples shown here include no IDENTIFIED clause. It is assumed\nthat you establish passwords with CREATE USER at account-creation time\nto avoid creating insecure accounts.\n\nIf an account named in a GRANT statement does not already exist, GRANT\nmay create it under the conditions described later in the discussion of\nthe NO_AUTO_CREATE_USER SQL mode.\n\nFrom the mysql program, GRANT responds with Query OK, 0 rows affected\nwhen executed successfully. To determine what privileges result from\nthe operation, use SHOW GRANTS. See [HELP SHOW GRANTS].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/grant.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/grant.html');
 
186
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (106,10,'GRANT','Syntax:\nGRANT\n    priv_type [(column_list)]\n      [, priv_type [(column_list)]] ...\n    ON [object_type] priv_level\n    TO user [auth_option] [, user [auth_option]] ...\n    [REQUIRE {NONE | tls_option [[AND] tls_option] ...}]\n    [WITH {GRANT OPTION | resource_option} ...]\n\nGRANT PROXY ON user\n    TO user [, user] ...\n    [WITH GRANT OPTION]\n\nobject_type: {\n    TABLE\n  | FUNCTION\n  | PROCEDURE\n}\n\npriv_level: {\n    *\n  | *.*\n  | db_name.*\n  | db_name.tbl_name\n  | tbl_name\n  | db_name.routine_name\n}\n\nuser:\n    (see http://dev.mysql.com/doc/refman/5.5/en/account-names.html)\n\nauth_option: {\n    IDENTIFIED BY \'auth_string\'\n  | IDENTIFIED BY PASSWORD \'hash_string\'\n  | IDENTIFIED WITH auth_plugin\n  | IDENTIFIED WITH auth_plugin AS \'hash_string\'\n}\n\ntls_option: {\n    SSL\n  | X509\n  | CIPHER \'cipher\'\n  | ISSUER \'issuer\'\n  | SUBJECT \'subject\'\n}\n\nresource_option: {\n  | MAX_QUERIES_PER_HOUR count\n  | MAX_UPDATES_PER_HOUR count\n  | MAX_CONNECTIONS_PER_HOUR count\n  | MAX_USER_CONNECTIONS count\n}\n\nThe GRANT statement grants privileges to MySQL user accounts. GRANT\nalso serves to specify other account characteristics such as use of\nsecure connections and limits on access to server resources.\n\nTo use GRANT, you must have the GRANT OPTION privilege, and you must\nhave the privileges that you are granting. When the read_only system\nvariable is enabled, GRANT additionally requires the SUPER privilege.\n\nThe REVOKE statement is related to GRANT and enables administrators to\nremove account privileges. See [HELP REVOKE].\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.5/en/account-names.html. For example:\n\nGRANT ALL ON db1.* TO \'jeffrey\'@\'localhost\';\n\nThe host name part of the account, if omitted, defaults to \'%\'.\n\nNormally, a database administrator first uses CREATE USER to create an\naccount, then GRANT to define its privileges and characteristics. For\nexample:\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED BY \'mypass\';\nGRANT ALL ON db1.* TO \'jeffrey\'@\'localhost\';\nGRANT SELECT ON db2.invoice TO \'jeffrey\'@\'localhost\';\nGRANT USAGE ON *.* TO \'jeffrey\'@\'localhost\' WITH MAX_QUERIES_PER_HOUR 90;\n\n*Note*: Examples shown here include no IDENTIFIED clause. It is assumed\nthat you establish passwords with CREATE USER at account-creation time\nto avoid creating insecure accounts.\n\nIf an account named in a GRANT statement does not already exist, GRANT\nmay create it under the conditions described later in the discussion of\nthe NO_AUTO_CREATE_USER SQL mode.\n\nFrom the mysql program, GRANT responds with Query OK, 0 rows affected\nwhen executed successfully. To determine what privileges result from\nthe operation, use SHOW GRANTS. See [HELP SHOW GRANTS].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/grant.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/grant.html');
187
187
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (107,7,'MBRINTERSECTS','MBRIntersects(g1,g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangles of\nthe two geometries g1 and g2 intersect.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html');
188
188
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (108,20,'IS NOT','Syntax:\nIS NOT boolean_value\n\nTests a value against a boolean value, where boolean_value can be TRUE,\nFALSE, or UNKNOWN.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT 1 IS NOT UNKNOWN, 0 IS NOT UNKNOWN, NULL IS NOT UNKNOWN;\n        -> 1, 1, 0\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html');
189
189
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (109,3,'SQRT','Syntax:\nSQRT(X)\n\nReturns the square root of a nonnegative number X.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT SQRT(4);\n        -> 2\nmysql> SELECT SQRT(20);\n        -> 4.4721359549996\nmysql> SELECT SQRT(-16);\n        -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html');
198
198
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (118,35,'GEOMETRY','MySQL provides a standard way of creating spatial columns for geometry\ntypes, for example, with CREATE TABLE or ALTER TABLE. Spatial columns\nare supported for MyISAM, InnoDB, NDB, and ARCHIVE tables. See also the\nnotes about spatial indexes under [HELP SPATIAL].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/creating-spatial-columns.html\n\n','CREATE TABLE geom (g GEOMETRY);\n','http://dev.mysql.com/doc/refman/5.5/en/creating-spatial-columns.html');
199
199
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (119,19,'&','Syntax:\n&\n\nBitwise AND:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html\n\n','mysql> SELECT 29 & 15;\n        -> 13\n','http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html');
200
200
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (120,15,'ASSIGN-EQUAL','Syntax:\n=\n\nThis operator is used to perform value assignments in two cases,\ndescribed in the next two paragraphs.\n\nWithin a SET statement, = is treated as an assignment operator that\ncauses the user variable on the left hand side of the operator to take\non the value to its right. (In other words, when used in a SET\nstatement, = is treated identically to :=.) The value on the right hand\nside may be a literal value, another variable storing a value, or any\nlegal expression that yields a scalar value, including the result of a\nquery (provided that this value is a scalar value). You can perform\nmultiple assignments in the same SET statement.\n\nIn the SET clause of an UPDATE statement, = also acts as an assignment\noperator; in this case, however, it causes the column named on the left\nhand side of the operator to assume the value given to the right,\nprovided any WHERE conditions that are part of the UPDATE are met. You\ncan make multiple assignments in the same SET clause of an UPDATE\nstatement.\n\nIn any other context, = is treated as a comparison operator.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/assignment-operators.html\n\n','mysql> SELECT @var1, @var2;\n        -> NULL, NULL\nmysql> SELECT @var1 := 1, @var2;\n        -> 1, NULL\nmysql> SELECT @var1, @var2;\n        -> 1, NULL\nmysql> SELECT @var1, @var2 := @var1;\n        -> 1, 1\nmysql> SELECT @var1, @var2;\n        -> 1, 1\n','http://dev.mysql.com/doc/refman/5.5/en/assignment-operators.html');
201
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (121,38,'CONVERT','Syntax:\nCONVERT(expr,type), CONVERT(expr USING transcoding_name)\n\nThe CONVERT() and CAST() functions take an expression of any type and\nproduce a result value of a specified type.\n\nCAST() and CONVERT(... USING ...) are standard SQL syntax. The\nnon-USING form of CONVERT() is ODBC syntax.\n\nCONVERT() with USING converts data between different character sets. In\nMySQL, transcoding names are the same as the corresponding character\nset names. For example, this statement converts the string \'abc\' in the\ndefault character set to the corresponding string in the utf8 character\nset:\n\nSELECT CONVERT(\'abc\' USING utf8);\n\nThe type for the result can be one of the following values:\n\no BINARY[(N)]\n\no CHAR[(N)]\n\no DATE\n\no DATETIME\n\no DECIMAL[(M[,D])]\n\no SIGNED [INTEGER]\n\no TIME\n\no UNSIGNED [INTEGER]\n\nBINARY produces a string with the BINARY data type. See\nhttp://dev.mysql.com/doc/refman/5.5/en/binary-varbinary.html for a\ndescription of how this affects comparisons. If the optional length N\nis given, BINARY(N) causes the cast to use no more than N bytes of the\nargument. Values shorter than N bytes are padded with 0x00 bytes to a\nlength of N.\n\nCHAR(N) causes the cast to use no more than N characters of the\nargument.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html\n\n','SELECT enum_col FROM tbl_name ORDER BY CAST(enum_col AS CHAR);\n','http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html');
 
201
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (121,38,'CONVERT','Syntax:\nCONVERT(expr,type), CONVERT(expr USING transcoding_name)\n\nThe CONVERT() function takes an expression of any type and produces a\nresult value of the specified type.\n\nDiscussion of CONVERT(expr, type) syntax here also applies to CAST(expr\nAS type), which is equivalent.\n\nCONVERT(... USING ...) is standard SQL syntax. The non-USING form of\nCONVERT() is ODBC syntax.\n\nCONVERT() with USING converts data between different character sets. In\nMySQL, transcoding names are the same as the corresponding character\nset names. For example, this statement converts the string \'abc\' in the\ndefault character set to the corresponding string in the utf8 character\nset:\n\nSELECT CONVERT(\'abc\' USING utf8);\n\nCONVERT() without USING and CAST() take an expression and a type value\nspecifying the result type. These type values are permitted:\n\no BINARY[(N)]\n\n  Produces a string with the BINARY data type. See\n  http://dev.mysql.com/doc/refman/5.5/en/binary-varbinary.html for a\n  description of how this affects comparisons. If the optional length N\n  is given, BINARY(N) causes the cast to use no more than N bytes of\n  the argument. Values shorter than N bytes are padded with 0x00 bytes\n  to a length of N.\n\no CHAR[(N)] [charset_info]\n\n  Produces a string with the CHAR data type. If the optional length N\n  is given, CHAR(N) causes the cast to use no more than N characters of\n  the argument. No padding occurs for values shorter than N characters.\n\n  With no charset_info clause, CHAR produces a string with the default\n  character set. To specify the character set explicitly, these\n  charset_info values are permitted:\n\n  o CHARACTER SET charset_name: Produces a string with the given\n    character set.\n\n  o ASCII: Shorthand for CHARACTER SET latin1.\n\n  o UNICODE: Shorthand for CHARACTER SET ucs2.\n\n  In all cases, the string has the default collation for the character\n  set.\n\no DATE\n\n  Produces a DATE value.\n\no DATETIME\n\n  Produces a DATETIME value.\n\no DECIMAL[(M[,D])]\n\n  Produces a DECIMAL value. If the optional M and D values are given,\n  they specify the maximum number of digits (the precision) and the\n  number of digits following the decimal point (the scale).\n\no NCHAR[(N)]\n\n  Like CHAR, but produces a string with the national character set. See\n  http://dev.mysql.com/doc/refman/5.5/en/charset-national.html.\n\n  Unlike CHAR, NCHAR does not permit trailing character set information\n  to be specified.\n\no SIGNED [INTEGER]\n\n  Produces a signed integer value.\n\no TIME\n\n  Produces a TIME value.\n\no UNSIGNED [INTEGER]\n\n  Produces an unsigned integer value.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html');
202
202
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (122,40,'DROP LOGFILE GROUP','Syntax:\nDROP LOGFILE GROUP logfile_group\n    ENGINE [=] engine_name\n\nThis statement drops the log file group named logfile_group. The log\nfile group must already exist or an error results. (For information on\ncreating log file groups, see [HELP CREATE LOGFILE GROUP].)\n\n*Important*: Before dropping a log file group, you must drop all\ntablespaces that use that log file group for UNDO logging.\n\nThe required ENGINE clause provides the name of the storage engine used\nby the log file group to be dropped. Currently, the only permitted\nvalues for engine_name are NDB and NDBCLUSTER.\n\nDROP LOGFILE GROUP is useful only with Disk Data storage for MySQL\nCluster. See\nhttp://dev.mysql.com/doc/refman/5.5/en/mysql-cluster-disk-data.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/drop-logfile-group.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/drop-logfile-group.html');
203
203
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (123,24,'REPEAT LOOP','Syntax:\n[begin_label:] REPEAT\n    statement_list\nUNTIL search_condition\nEND REPEAT [end_label]\n\nThe statement list within a REPEAT statement is repeated until the\nsearch_condition expression is true. Thus, a REPEAT always enters the\nloop at least once. statement_list consists of one or more statements,\neach terminated by a semicolon (;) statement delimiter.\n\nA REPEAT statement can be labeled. For the rules regarding label use,\nsee [HELP labels].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/repeat.html\n\n','mysql> delimiter //\n\nmysql> CREATE PROCEDURE dorepeat(p1 INT)\n    -> BEGIN\n    ->   SET @x = 0;\n    ->   REPEAT\n    ->     SET @x = @x + 1;\n    ->   UNTIL @x > p1 END REPEAT;\n    -> END\n    -> //\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> CALL dorepeat(1000)//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @x//\n+------+\n| @x   |\n+------+\n| 1001 |\n+------+\n1 row in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.5/en/repeat.html');
204
204
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (124,23,'SMALLINT','SMALLINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA small integer. The signed range is -32768 to 32767. The unsigned\nrange is 0 to 65535.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html');
210
210
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (130,3,'- BINARY','Syntax:\n-\n\nSubtraction:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/arithmetic-functions.html\n\n','mysql> SELECT 3-5;\n        -> -2\n','http://dev.mysql.com/doc/refman/5.5/en/arithmetic-functions.html');
211
211
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (131,32,'CURRENT_TIME','Syntax:\nCURRENT_TIME, CURRENT_TIME()\n\nCURRENT_TIME and CURRENT_TIME() are synonyms for CURTIME().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
212
212
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (132,4,'WKT DEFINITION','The Well-Known Text (WKT) representation of geometry values is designed\nfor exchanging geometry data in ASCII form. The OpenGIS specification\nprovides a Backus-Naur grammar that specifies the formal production\nrules for writing WKT values (see\nhttp://dev.mysql.com/doc/refman/5.5/en/spatial-extensions.html).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-data-formats.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-data-formats.html');
213
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (133,10,'REVOKE','Syntax:\nREVOKE\n    priv_type [(column_list)]\n      [, priv_type [(column_list)]] ...\n    ON [object_type] priv_level\n    FROM user [, user] ...\n\nREVOKE ALL PRIVILEGES, GRANT OPTION\n    FROM user [, user] ...\n\nREVOKE PROXY ON user\n    FROM user [, user] ...\n\nThe REVOKE statement enables system administrators to revoke privileges\nfrom MySQL accounts.\n\nWhen the read_only system variable is enabled, REVOKE requires the\nSUPER privilege in addition to any other required privileges described\nin the following discussion.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.5/en/account-names.html. For example:\n\nREVOKE INSERT ON *.* FROM \'jeffrey\'@\'localhost\';\n\nIf you specify only the user name part of the account name, a host name\npart of \'%\' is used.\n\nFor details on the levels at which privileges exist, the permissible\npriv_type, priv_level, and object_type values, and the syntax for\nspecifying users and passwords, see [HELP GRANT]\n\nTo use the first REVOKE syntax, you must have the GRANT OPTION\nprivilege, and you must have the privileges that you are revoking.\n\nTo revoke all privileges, use the second syntax, which drops all\nglobal, database, table, column, and routine privileges for the named\nuser or users:\n\nREVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ...\n\nTo use this REVOKE syntax, you must have the global CREATE USER\nprivilege or the UPDATE privilege for the mysql database.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/revoke.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/revoke.html');
 
213
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (133,10,'REVOKE','Syntax:\nREVOKE\n    priv_type [(column_list)]\n      [, priv_type [(column_list)]] ...\n    ON [object_type] priv_level\n    FROM user [, user] ...\n\nREVOKE ALL PRIVILEGES, GRANT OPTION\n    FROM user [, user] ...\n\nREVOKE PROXY ON user\n    FROM user [, user] ...\n\nThe REVOKE statement enables system administrators to revoke privileges\nfrom MySQL accounts.\n\nWhen the read_only system variable is enabled, REVOKE requires the\nSUPER privilege in addition to any other required privileges described\nin the following discussion.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.5/en/account-names.html. For example:\n\nREVOKE INSERT ON *.* FROM \'jeffrey\'@\'localhost\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nFor details on the levels at which privileges exist, the permissible\npriv_type, priv_level, and object_type values, and the syntax for\nspecifying users and passwords, see [HELP GRANT]\n\nTo use the first REVOKE syntax, you must have the GRANT OPTION\nprivilege, and you must have the privileges that you are revoking.\n\nTo revoke all privileges, use the second syntax, which drops all\nglobal, database, table, column, and routine privileges for the named\nuser or users:\n\nREVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ...\n\nTo use this REVOKE syntax, you must have the global CREATE USER\nprivilege, or the UPDATE privilege for the mysql database.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/revoke.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/revoke.html');
214
214
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (134,32,'LAST_DAY','Syntax:\nLAST_DAY(date)\n\nTakes a date or datetime value and returns the corresponding value for\nthe last day of the month. Returns NULL if the argument is invalid.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT LAST_DAY(\'2003-02-05\');\n        -> \'2003-02-28\'\nmysql> SELECT LAST_DAY(\'2004-02-05\');\n        -> \'2004-02-29\'\nmysql> SELECT LAST_DAY(\'2004-01-01 01:01:01\');\n        -> \'2004-01-31\'\nmysql> SELECT LAST_DAY(\'2003-03-32\');\n        -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
215
215
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (135,23,'MEDIUMINT','MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA medium-sized integer. The signed range is -8388608 to 8388607. The\nunsigned range is 0 to 16777215.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html');
216
216
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (136,38,'RTRIM','Syntax:\nRTRIM(str)\n\nReturns the string str with trailing space characters removed.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT RTRIM(\'barbar   \');\n        -> \'barbar\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
217
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (137,29,'EXPLAIN','Syntax:\n{EXPLAIN | DESCRIBE | DESC}\n    tbl_name [col_name | wild]\n\n{EXPLAIN | DESCRIBE | DESC}\n    [explain_type] SELECT select_options\n\nexplain_type: {EXTENDED | PARTITIONS}\n\nThe DESCRIBE and EXPLAIN statements are synonyms. In practice, the\nDESCRIBE keyword is more often used to obtain information about table\nstructure, whereas EXPLAIN is used to obtain a query execution plan\n(that is, an explanation of how MySQL would execute a query). The\nfollowing discussion uses the DESCRIBE and EXPLAIN keywords in\naccordance with those uses, but the MySQL parser treats them as\ncompletely synonymous.\n\nObtaining Table Structure Information\n\nDESCRIBE provides information about the columns in a table:\n\nmysql> DESCRIBE City;\n+------------+----------+------+-----+---------+----------------+\n| Field      | Type     | Null | Key | Default | Extra          |\n+------------+----------+------+-----+---------+----------------+\n| Id         | int(11)  | NO   | PRI | NULL    | auto_increment |\n| Name       | char(35) | NO   |     |         |                |\n| Country    | char(3)  | NO   | UNI |         |                |\n| District   | char(20) | YES  | MUL |         |                |\n| Population | int(11)  | NO   |     | 0       |                |\n+------------+----------+------+-----+---------+----------------+\n\nDESCRIBE is a shortcut for SHOW COLUMNS. These statements also display\ninformation for views. The description for SHOW COLUMNS provides more\ninformation about the output columns. See [HELP SHOW COLUMNS].\n\nBy default, DESCRIBE displays information about all columns in the\ntable. col_name, if given, is the name of a column in the table. In\nthis case, the statement displays information only for the named\ncolumn. wild, if given, is a pattern string. It can contain the SQL "%"\nand "_" wildcard characters. In this case, the statement displays\noutput only for the columns with names matching the string. There is no\nneed to enclose the string within quotation marks unless it contains\nspaces or other special characters.\n\nThe DESCRIBE statement is provided for compatibility with Oracle.\n\nThe SHOW CREATE TABLE, SHOW TABLE STATUS, and SHOW INDEX statements\nalso provide information about tables. See [HELP SHOW].\n\nObtaining Execution Plan Information\n\nThe EXPLAIN statement provides information about how MySQL executes\nstatements:\n\no When you precede a SELECT statement with the keyword EXPLAIN, MySQL\n  displays information from the optimizer about the statement execution\n  plan. That is, MySQL explains how it would process the statement,\n  including information about how tables are joined and in which order.\n  For information about using EXPLAIN to obtain execution plan\n  information, see\n  http://dev.mysql.com/doc/refman/5.5/en/explain-output.html.\n\no EXPLAIN EXTENDED can be used to obtain additional execution plan\n  information. See\n  http://dev.mysql.com/doc/refman/5.5/en/explain-extended.html.\n\no EXPLAIN PARTITIONS is useful for examining queries involving\n  partitioned tables. See\n  http://dev.mysql.com/doc/refman/5.5/en/partitioning-info.html.\n\nWith the help of EXPLAIN, you can see where you should add indexes to\ntables so that the statement executes faster by using indexes to find\nrows. You can also use EXPLAIN to check whether the optimizer joins the\ntables in an optimal order. To give a hint to the optimizer to use a\njoin order corresponding to the order in which the tables are named in\na SELECT statement, begin the statement with SELECT STRAIGHT_JOIN\nrather than just SELECT. (See\nhttp://dev.mysql.com/doc/refman/5.5/en/select.html.)\n\nIf you have a problem with indexes not being used when you believe that\nthey should be, run ANALYZE TABLE to update table statistics, such as\ncardinality of keys, that can affect the choices the optimizer makes.\nSee [HELP ANALYZE TABLE].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/explain.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/explain.html');
 
217
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (137,29,'EXPLAIN','Syntax:\n{EXPLAIN | DESCRIBE | DESC}\n    tbl_name [col_name | wild]\n\n{EXPLAIN | DESCRIBE | DESC}\n    [explain_type] SELECT select_options\n\nexplain_type: {EXTENDED | PARTITIONS}\n\nThe DESCRIBE and EXPLAIN statements are synonyms. In practice, the\nDESCRIBE keyword is more often used to obtain information about table\nstructure, whereas EXPLAIN is used to obtain a query execution plan\n(that is, an explanation of how MySQL would execute a query). The\nfollowing discussion uses the DESCRIBE and EXPLAIN keywords in\naccordance with those uses, but the MySQL parser treats them as\ncompletely synonymous.\n\nObtaining Table Structure Information\n\nDESCRIBE provides information about the columns in a table:\n\nmysql> DESCRIBE City;\n+------------+----------+------+-----+---------+----------------+\n| Field      | Type     | Null | Key | Default | Extra          |\n+------------+----------+------+-----+---------+----------------+\n| Id         | int(11)  | NO   | PRI | NULL    | auto_increment |\n| Name       | char(35) | NO   |     |         |                |\n| Country    | char(3)  | NO   | UNI |         |                |\n| District   | char(20) | YES  | MUL |         |                |\n| Population | int(11)  | NO   |     | 0       |                |\n+------------+----------+------+-----+---------+----------------+\n\nDESCRIBE is a shortcut for SHOW COLUMNS. These statements also display\ninformation for views. The description for SHOW COLUMNS provides more\ninformation about the output columns. See [HELP SHOW COLUMNS].\n\nBy default, DESCRIBE displays information about all columns in the\ntable. col_name, if given, is the name of a column in the table. In\nthis case, the statement displays information only for the named\ncolumn. wild, if given, is a pattern string. It can contain the SQL %\nand _ wildcard characters. In this case, the statement displays output\nonly for the columns with names matching the string. There is no need\nto enclose the string within quotation marks unless it contains spaces\nor other special characters.\n\nThe DESCRIBE statement is provided for compatibility with Oracle.\n\nThe SHOW CREATE TABLE, SHOW TABLE STATUS, and SHOW INDEX statements\nalso provide information about tables. See [HELP SHOW].\n\nObtaining Execution Plan Information\n\nThe EXPLAIN statement provides information about how MySQL executes\nstatements:\n\no When you precede a SELECT statement with the keyword EXPLAIN, MySQL\n  displays information from the optimizer about the statement execution\n  plan. That is, MySQL explains how it would process the statement,\n  including information about how tables are joined and in which order.\n  For information about using EXPLAIN to obtain execution plan\n  information, see\n  http://dev.mysql.com/doc/refman/5.5/en/explain-output.html.\n\no EXPLAIN EXTENDED can be used to obtain additional execution plan\n  information. See\n  http://dev.mysql.com/doc/refman/5.5/en/explain-extended.html.\n\no EXPLAIN PARTITIONS is useful for examining queries involving\n  partitioned tables. See\n  http://dev.mysql.com/doc/refman/5.5/en/partitioning-info.html.\n\nWith the help of EXPLAIN, you can see where you should add indexes to\ntables so that the statement executes faster by using indexes to find\nrows. You can also use EXPLAIN to check whether the optimizer joins the\ntables in an optimal order. To give a hint to the optimizer to use a\njoin order corresponding to the order in which the tables are named in\na SELECT statement, begin the statement with SELECT STRAIGHT_JOIN\nrather than just SELECT. (See\nhttp://dev.mysql.com/doc/refman/5.5/en/select.html.)\n\nIf you have a problem with indexes not being used when you believe that\nthey should be, run ANALYZE TABLE to update table statistics, such as\ncardinality of keys, that can affect the choices the optimizer makes.\nSee [HELP ANALYZE TABLE].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/explain.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/explain.html');
218
218
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (138,3,'DEGREES','Syntax:\nDEGREES(X)\n\nReturns the argument X, converted from radians to degrees.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT DEGREES(PI());\n        -> 180\nmysql> SELECT DEGREES(PI() / 2);\n        -> 90\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html');
219
219
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (139,3,'- UNARY','Syntax:\n-\n\nUnary minus. This operator changes the sign of the operand.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/arithmetic-functions.html\n\n','mysql> SELECT - 2;\n        -> -2\n','http://dev.mysql.com/doc/refman/5.5/en/arithmetic-functions.html');
220
220
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (140,23,'VARCHAR','[NATIONAL] VARCHAR(M) [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nA variable-length string. M represents the maximum column length in\ncharacters. The range of M is 0 to 65,535. The effective maximum length\nof a VARCHAR is subject to the maximum row size (65,535 bytes, which is\nshared among all columns) and the character set used. For example, utf8\ncharacters can require up to three bytes per character, so a VARCHAR\ncolumn that uses the utf8 character set can be declared to be a maximum\nof 21,844 characters. See\nhttp://dev.mysql.com/doc/refman/5.5/en/column-count-limit.html.\n\nMySQL stores VARCHAR values as a 1-byte or 2-byte length prefix plus\ndata. The length prefix indicates the number of bytes in the value. A\nVARCHAR column uses one length byte if values require no more than 255\nbytes, two length bytes if values may require more than 255 bytes.\n\n*Note*: MySQL follows the standard SQL specification, and does not\nremove trailing spaces from VARCHAR values.\n\nVARCHAR is shorthand for CHARACTER VARYING. NATIONAL VARCHAR is the\nstandard SQL way to define that a VARCHAR column should use some\npredefined character set. MySQL uses utf8 as this predefined character\nset. http://dev.mysql.com/doc/refman/5.5/en/charset-national.html.\nNVARCHAR is shorthand for NATIONAL VARCHAR.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html');
239
239
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (159,33,'ASBINARY','AsBinary(g), AsWKB(g)\n\nConverts a value in internal geometry format to its WKB representation\nand returns the binary result.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-format-conversion-functions.html\n\n','SELECT AsBinary(g) FROM geom;\n','http://dev.mysql.com/doc/refman/5.5/en/gis-format-conversion-functions.html');
240
240
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (160,27,'SHOW TABLES','Syntax:\nSHOW [FULL] TABLES [{FROM | IN} db_name]\n    [LIKE \'pattern\' | WHERE expr]\n\nSHOW TABLES lists the non-TEMPORARY tables in a given database. You can\nalso get this list using the mysqlshow db_name command. The LIKE\nclause, if present, indicates which table names to match. The WHERE\nclause can be given to select rows using more general conditions, as\ndiscussed in http://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nMatching performed by the LIKE clause is dependent on the setting of\nthe lower_case_table_names system variable.\n\nThis statement also lists any views in the database. The FULL modifier\nis supported such that SHOW FULL TABLES displays a second output\ncolumn. Values for the second column are BASE TABLE for a table and\nVIEW for a view.\n\nIf you have no privileges for a base table or view, it does not show up\nin the output from SHOW TABLES or mysqlshow db_name.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-tables.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-tables.html');
241
241
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (161,32,'MAKEDATE','Syntax:\nMAKEDATE(year,dayofyear)\n\nReturns a date, given year and day-of-year values. dayofyear must be\ngreater than 0 or the result is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT MAKEDATE(2011,31), MAKEDATE(2011,32);\n        -> \'2011-01-31\', \'2011-02-01\'\nmysql> SELECT MAKEDATE(2011,365), MAKEDATE(2014,365);\n        -> \'2011-12-31\', \'2014-12-31\'\nmysql> SELECT MAKEDATE(2011,0);\n        -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
242
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (162,38,'BINARY OPERATOR','Syntax:\nBINARY\n\nThe BINARY operator casts the string following it to a binary string.\nThis is an easy way to force a column comparison to be done byte by\nbyte rather than character by character. This causes the comparison to\nbe case sensitive even if the column is not defined as BINARY or BLOB.\nBINARY also causes trailing spaces to be significant.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html\n\n','mysql> SELECT \'a\' = \'A\';\n        -> 1\nmysql> SELECT BINARY \'a\' = \'A\';\n        -> 0\nmysql> SELECT \'a\' = \'a \';\n        -> 1\nmysql> SELECT BINARY \'a\' = \'a \';\n        -> 0\n','http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html');
 
242
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (162,38,'BINARY OPERATOR','Syntax:\nBINARY expr\n\nThe BINARY operator converts the expression to a binary string. A\ncommon use for BINARY is to force a character string comparison to be\ndone byte by byte rather than character by character, in effect\nbecoming case sensitive. The BINARY operator also causes trailing\nspaces in comparisons to be significant.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html\n\n','mysql> SELECT \'a\' = \'A\';\n        -> 1\nmysql> SELECT BINARY \'a\' = \'A\';\n        -> 0\nmysql> SELECT \'a\' = \'a \';\n        -> 1\nmysql> SELECT BINARY \'a\' = \'a \';\n        -> 0\n','http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html');
243
243
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (163,7,'MBROVERLAPS','MBROverlaps(g1,g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangles of\nthe two geometries g1 and g2 overlap. The term spatially overlaps is\nused if two geometries intersect and their intersection results in a\ngeometry of the same dimension but not equal to either of the given\ngeometries.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html');
244
244
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (164,28,'INSERT SELECT','Syntax:\nINSERT [LOW_PRIORITY | HIGH_PRIORITY] [IGNORE]\n    [INTO] tbl_name [(col_name,...)]\n    SELECT ...\n    [ ON DUPLICATE KEY UPDATE col_name=expr, ... ]\n\nWith INSERT ... SELECT, you can quickly insert many rows into a table\nfrom one or many tables. For example:\n\nINSERT INTO tbl_temp2 (fld_id)\n  SELECT tbl_temp1.fld_order_id\n  FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/insert-select.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/insert-select.html');
245
245
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (165,40,'CREATE PROCEDURE','Syntax:\nCREATE\n    [DEFINER = { user | CURRENT_USER }]\n    PROCEDURE sp_name ([proc_parameter[,...]])\n    [characteristic ...] routine_body\n\nCREATE\n    [DEFINER = { user | CURRENT_USER }]\n    FUNCTION sp_name ([func_parameter[,...]])\n    RETURNS type\n    [characteristic ...] routine_body\n\nproc_parameter:\n    [ IN | OUT | INOUT ] param_name type\n\nfunc_parameter:\n    param_name type\n\ntype:\n    Any valid MySQL data type\n\ncharacteristic:\n    COMMENT \'string\'\n  | LANGUAGE SQL\n  | [NOT] DETERMINISTIC\n  | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n  | SQL SECURITY { DEFINER | INVOKER }\n\nroutine_body:\n    Valid SQL routine statement\n\nThese statements create stored routines. By default, a routine is\nassociated with the default database. To associate the routine\nexplicitly with a given database, specify the name as db_name.sp_name\nwhen you create it.\n\nThe CREATE FUNCTION statement is also used in MySQL to support UDFs\n(user-defined functions). See\nhttp://dev.mysql.com/doc/refman/5.5/en/adding-functions.html. A UDF can\nbe regarded as an external stored function. Stored functions share\ntheir namespace with UDFs. See\nhttp://dev.mysql.com/doc/refman/5.5/en/function-resolution.html, for\nthe rules describing how the server interprets references to different\nkinds of functions.\n\nTo invoke a stored procedure, use the CALL statement (see [HELP CALL]).\nTo invoke a stored function, refer to it in an expression. The function\nreturns a value during expression evaluation.\n\nCREATE PROCEDURE and CREATE FUNCTION require the CREATE ROUTINE\nprivilege. They might also require the SUPER privilege, depending on\nthe DEFINER value, as described later in this section. If binary\nlogging is enabled, CREATE FUNCTION might require the SUPER privilege,\nas described in\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-programs-logging.html.\n\nBy default, MySQL automatically grants the ALTER ROUTINE and EXECUTE\nprivileges to the routine creator. This behavior can be changed by\ndisabling the automatic_sp_privileges system variable. See\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-routines-privileges.html.\n\nThe DEFINER and SQL SECURITY clauses specify the security context to be\nused when checking access privileges at routine execution time, as\ndescribed later in this section.\n\nIf the routine name is the same as the name of a built-in SQL function,\na syntax error occurs unless you use a space between the name and the\nfollowing parenthesis when defining the routine or invoking it later.\nFor this reason, avoid using the names of existing SQL functions for\nyour own stored routines.\n\nThe IGNORE_SPACE SQL mode applies to built-in functions, not to stored\nroutines. It is always permissible to have spaces after a stored\nroutine name, regardless of whether IGNORE_SPACE is enabled.\n\nThe parameter list enclosed within parentheses must always be present.\nIf there are no parameters, an empty parameter list of () should be\nused. Parameter names are not case sensitive.\n\nEach parameter is an IN parameter by default. To specify otherwise for\na parameter, use the keyword OUT or INOUT before the parameter name.\n\n*Note*: Specifying a parameter as IN, OUT, or INOUT is valid only for a\nPROCEDURE. For a FUNCTION, parameters are always regarded as IN\nparameters.\n\nAn IN parameter passes a value into a procedure. The procedure might\nmodify the value, but the modification is not visible to the caller\nwhen the procedure returns. An OUT parameter passes a value from the\nprocedure back to the caller. Its initial value is NULL within the\nprocedure, and its value is visible to the caller when the procedure\nreturns. An INOUT parameter is initialized by the caller, can be\nmodified by the procedure, and any change made by the procedure is\nvisible to the caller when the procedure returns.\n\nFor each OUT or INOUT parameter, pass a user-defined variable in the\nCALL statement that invokes the procedure so that you can obtain its\nvalue when the procedure returns. If you are calling the procedure from\nwithin another stored procedure or function, you can also pass a\nroutine parameter or local routine variable as an IN or INOUT\nparameter.\n\nRoutine parameters cannot be referenced in statements prepared within\nthe routine; see\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-program-restrictions.html\n.\n\nThe following example shows a simple stored procedure that uses an OUT\nparameter:\n\nmysql> delimiter //\n\nmysql> CREATE PROCEDURE simpleproc (OUT param1 INT)\n    -> BEGIN\n    ->   SELECT COUNT(*) INTO param1 FROM t;\n    -> END//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> delimiter ;\n\nmysql> CALL simpleproc(@a);\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @a;\n+------+\n| @a   |\n+------+\n| 3    |\n+------+\n1 row in set (0.00 sec)\n\nThe example uses the mysql client delimiter command to change the\nstatement delimiter from ; to // while the procedure is being defined.\nThis enables the ; delimiter used in the procedure body to be passed\nthrough to the server rather than being interpreted by mysql itself.\nSee\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-programs-defining.html.\n\nThe RETURNS clause may be specified only for a FUNCTION, for which it\nis mandatory. It indicates the return type of the function, and the\nfunction body must contain a RETURN value statement. If the RETURN\nstatement returns a value of a different type, the value is coerced to\nthe proper type. For example, if a function specifies an ENUM or SET\nvalue in the RETURNS clause, but the RETURN statement returns an\ninteger, the value returned from the function is the string for the\ncorresponding ENUM member of set of SET members.\n\nThe following example function takes a parameter, performs an operation\nusing an SQL function, and returns the result. In this case, it is\nunnecessary to use delimiter because the function definition contains\nno internal ; statement delimiters:\n\nmysql> CREATE FUNCTION hello (s CHAR(20))\nmysql> RETURNS CHAR(50) DETERMINISTIC\n    -> RETURN CONCAT(\'Hello, \',s,\'!\');\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT hello(\'world\');\n+----------------+\n| hello(\'world\') |\n+----------------+\n| Hello, world!  |\n+----------------+\n1 row in set (0.00 sec)\n\nParameter types and function return types can be declared to use any\nvalid data type, except that the COLLATE attribute cannot be used prior\nto MySQL 5.5.3. As of 5.5.3, COLLATE can be used if preceded by the\nCHARACTER SET attribute.\n\nThe routine_body consists of a valid SQL routine statement. This can be\na simple statement such as SELECT or INSERT, or a compound statement\nwritten using BEGIN and END. Compound statements can contain\ndeclarations, loops, and other control structure statements. The syntax\nfor these statements is described in\nhttp://dev.mysql.com/doc/refman/5.5/en/sql-syntax-compound-statements.h\ntml.\n\nMySQL permits routines to contain DDL statements, such as CREATE and\nDROP. MySQL also permits stored procedures (but not stored functions)\nto contain SQL transaction statements such as COMMIT. Stored functions\nmay not contain statements that perform explicit or implicit commit or\nrollback. Support for these statements is not required by the SQL\nstandard, which states that each DBMS vendor may decide whether to\npermit them.\n\nStatements that return a result set can be used within a stored\nprocedure but not within a stored function. This prohibition includes\nSELECT statements that do not have an INTO var_list clause and other\nstatements such as SHOW, EXPLAIN, and CHECK TABLE. For statements that\ncan be determined at function definition time to return a result set, a\nNot allowed to return a result set from a function error occurs\n(ER_SP_NO_RETSET). For statements that can be determined only at\nruntime to return a result set, a PROCEDURE %s can\'t return a result\nset in the given context error occurs (ER_SP_BADSELECT).\n\nUSE statements within stored routines are not permitted. When a routine\nis invoked, an implicit USE db_name is performed (and undone when the\nroutine terminates). The causes the routine to have the given default\ndatabase while it executes. References to objects in databases other\nthan the routine default database should be qualified with the\nappropriate database name.\n\nFor additional information about statements that are not permitted in\nstored routines, see\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-program-restrictions.html\n.\n\nFor information about invoking stored procedures from within programs\nwritten in a language that has a MySQL interface, see [HELP CALL].\n\nMySQL stores the sql_mode system variable setting in effect when a\nroutine is created or altered, and always executes the routine with\nthis setting in force, regardless of the current server SQL mode when\nthe routine begins executing.\n\nThe switch from the SQL mode of the invoker to that of the routine\noccurs after evaluation of arguments and assignment of the resulting\nvalues to routine parameters. If you define a routine in strict SQL\nmode but invoke it in nonstrict mode, assignment of arguments to\nroutine parameters does not take place in strict mode. If you require\nthat expressions passed to a routine be assigned in strict SQL mode,\nyou should invoke the routine with strict mode in effect.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-procedure.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-procedure.html');
272
272
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (192,40,'ALTER SERVER','Syntax:\nALTER SERVER  server_name\n    OPTIONS (option [, option] ...)\n\nAlters the server information for server_name, adjusting any of the\noptions permitted in the CREATE SERVER statement. The corresponding\nfields in the mysql.servers table are updated accordingly. This\nstatement requires the SUPER privilege.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/alter-server.html\n\n','ALTER SERVER s OPTIONS (USER \'sally\');\n','http://dev.mysql.com/doc/refman/5.5/en/alter-server.html');
273
273
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (193,24,'RESIGNAL','Syntax:\nRESIGNAL [condition_value]\n    [SET signal_information_item\n    [, signal_information_item] ...]\n\ncondition_value:\n    SQLSTATE [VALUE] sqlstate_value\n  | condition_name\n\nsignal_information_item:\n    condition_information_item_name = simple_value_specification\n\ncondition_information_item_name:\n    CLASS_ORIGIN\n  | SUBCLASS_ORIGIN\n  | MESSAGE_TEXT\n  | MYSQL_ERRNO\n  | CONSTRAINT_CATALOG\n  | CONSTRAINT_SCHEMA\n  | CONSTRAINT_NAME\n  | CATALOG_NAME\n  | SCHEMA_NAME\n  | TABLE_NAME\n  | COLUMN_NAME\n  | CURSOR_NAME\n\ncondition_name, simple_value_specification:\n    (see following discussion)\n\nRESIGNAL passes on the error condition information that is available\nduring execution of a condition handler within a compound statement\ninside a stored procedure or function, trigger, or event. RESIGNAL may\nchange some or all information before passing it on. RESIGNAL is\nrelated to SIGNAL, but instead of originating a condition as SIGNAL\ndoes, RESIGNAL relays existing condition information, possibly after\nmodifying it.\n\nRESIGNAL makes it possible to both handle an error and return the error\ninformation. Otherwise, by executing an SQL statement within the\nhandler, information that caused the handler\'s activation is destroyed.\nRESIGNAL also can make some procedures shorter if a given handler can\nhandle part of a situation, then pass the condition "up the line" to\nanother handler.\n\nNo special privileges are required to execute the RESIGNAL statement.\n\nAll forms of RESIGNAL require that the current context be a condition\nhandler. Otherwise, RESIGNAL is illegal and a RESIGNAL when handler not\nactive error occurs.\n\nFor condition_value and signal_information_item, the definitions and\nrules are the same for RESIGNAL as for SIGNAL. For example, the\ncondition_value can be an SQLSTATE value, and the value can indicate\nerrors, warnings, or "not found." For additional information, see [HELP\nSIGNAL].\n\nThe RESIGNAL statement takes condition_value and SET clauses, both of\nwhich are optional. This leads to several possible uses:\n\no RESIGNAL alone:\n\nRESIGNAL;\n\no RESIGNAL with new signal information:\n\nRESIGNAL SET signal_information_item [, signal_information_item] ...;\n\no RESIGNAL with a condition value and possibly new signal information:\n\nRESIGNAL condition_value\n    [SET signal_information_item [, signal_information_item] ...];\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/resignal.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/resignal.html');
274
274
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (194,32,'TIME FUNCTION','Syntax:\nTIME(expr)\n\nExtracts the time part of the time or datetime expression expr and\nreturns it as a string.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT TIME(\'2003-12-31 01:02:03\');\n        -> \'01:02:03\'\nmysql> SELECT TIME(\'2003-12-31 01:02:03.000123\');\n        -> \'01:02:03.000123\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
275
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (195,32,'DATE_ADD','Syntax:\nDATE_ADD(date,INTERVAL expr unit), DATE_SUB(date,INTERVAL expr unit)\n\nThese functions perform date arithmetic. The date argument specifies\nthe starting date or datetime value. expr is an expression specifying\nthe interval value to be added or subtracted from the starting date.\nexpr is a string; it may start with a "-" for negative intervals. unit\nis a keyword indicating the units in which the expression should be\ninterpreted.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT \'2008-12-31 23:59:59\' + INTERVAL 1 SECOND;\n        -> \'2009-01-01 00:00:00\'\nmysql> SELECT INTERVAL 1 DAY + \'2008-12-31\';\n        -> \'2009-01-01\'\nmysql> SELECT \'2005-01-01\' - INTERVAL 1 SECOND;\n        -> \'2004-12-31 23:59:59\'\nmysql> SELECT DATE_ADD(\'2000-12-31 23:59:59\',\n    ->                 INTERVAL 1 SECOND);\n        -> \'2001-01-01 00:00:00\'\nmysql> SELECT DATE_ADD(\'2010-12-31 23:59:59\',\n    ->                 INTERVAL 1 DAY);\n        -> \'2011-01-01 23:59:59\'\nmysql> SELECT DATE_ADD(\'2100-12-31 23:59:59\',\n    ->                 INTERVAL \'1:1\' MINUTE_SECOND);\n        -> \'2101-01-01 00:01:00\'\nmysql> SELECT DATE_SUB(\'2005-01-01 00:00:00\',\n    ->                 INTERVAL \'1 1:1:1\' DAY_SECOND);\n        -> \'2004-12-30 22:58:59\'\nmysql> SELECT DATE_ADD(\'1900-01-01 00:00:00\',\n    ->                 INTERVAL \'-1 10\' DAY_HOUR);\n        -> \'1899-12-30 14:00:00\'\nmysql> SELECT DATE_SUB(\'1998-01-02\', INTERVAL 31 DAY);\n        -> \'1997-12-02\'\nmysql> SELECT DATE_ADD(\'1992-12-31 23:59:59.000002\',\n    ->            INTERVAL \'1.999999\' SECOND_MICROSECOND);\n        -> \'1993-01-01 00:00:01.000001\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
 
275
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (195,32,'DATE_ADD','Syntax:\nDATE_ADD(date,INTERVAL expr unit), DATE_SUB(date,INTERVAL expr unit)\n\nThese functions perform date arithmetic. The date argument specifies\nthe starting date or datetime value. expr is an expression specifying\nthe interval value to be added or subtracted from the starting date.\nexpr is a string; it may start with a - for negative intervals. unit is\na keyword indicating the units in which the expression should be\ninterpreted.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT \'2008-12-31 23:59:59\' + INTERVAL 1 SECOND;\n        -> \'2009-01-01 00:00:00\'\nmysql> SELECT INTERVAL 1 DAY + \'2008-12-31\';\n        -> \'2009-01-01\'\nmysql> SELECT \'2005-01-01\' - INTERVAL 1 SECOND;\n        -> \'2004-12-31 23:59:59\'\nmysql> SELECT DATE_ADD(\'2000-12-31 23:59:59\',\n    ->                 INTERVAL 1 SECOND);\n        -> \'2001-01-01 00:00:00\'\nmysql> SELECT DATE_ADD(\'2010-12-31 23:59:59\',\n    ->                 INTERVAL 1 DAY);\n        -> \'2011-01-01 23:59:59\'\nmysql> SELECT DATE_ADD(\'2100-12-31 23:59:59\',\n    ->                 INTERVAL \'1:1\' MINUTE_SECOND);\n        -> \'2101-01-01 00:01:00\'\nmysql> SELECT DATE_SUB(\'2005-01-01 00:00:00\',\n    ->                 INTERVAL \'1 1:1:1\' DAY_SECOND);\n        -> \'2004-12-30 22:58:59\'\nmysql> SELECT DATE_ADD(\'1900-01-01 00:00:00\',\n    ->                 INTERVAL \'-1 10\' DAY_HOUR);\n        -> \'1899-12-30 14:00:00\'\nmysql> SELECT DATE_SUB(\'1998-01-02\', INTERVAL 31 DAY);\n        -> \'1997-12-02\'\nmysql> SELECT DATE_ADD(\'1992-12-31 23:59:59.000002\',\n    ->            INTERVAL \'1.999999\' SECOND_MICROSECOND);\n        -> \'1993-01-01 00:00:01.000001\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
276
276
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (196,38,'LIKE','Syntax:\nexpr LIKE pat [ESCAPE \'escape_char\']\n\nPattern matching using an SQL pattern. Returns 1 (TRUE) or 0 (FALSE).\nIf either expr or pat is NULL, the result is NULL.\n\nThe pattern need not be a literal string. For example, it can be\nspecified as a string expression or table column.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-comparison-functions.html\n\n','mysql> SELECT \'David!\' LIKE \'David_\';\n        -> 1\nmysql> SELECT \'David!\' LIKE \'%D%v%\';\n        -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/string-comparison-functions.html');
277
277
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (197,25,'MULTIPOINT','MultiPoint(pt1,pt2,...)\n\nConstructs a MultiPoint value using Point or WKB Point arguments.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-mysql-specific-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-mysql-specific-functions.html');
278
278
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (198,19,'>>','Syntax:\n>>\n\nShifts a longlong (BIGINT) number to the right.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html\n\n','mysql> SELECT 4 >> 2;\n        -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html');
283
283
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (203,27,'SHOW CREATE FUNCTION','Syntax:\nSHOW CREATE FUNCTION func_name\n\nThis statement is similar to SHOW CREATE PROCEDURE but for stored\nfunctions. See [HELP SHOW CREATE PROCEDURE].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-create-function.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-create-function.html');
284
284
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (204,32,'STR_TO_DATE','Syntax:\nSTR_TO_DATE(str,format)\n\nThis is the inverse of the DATE_FORMAT() function. It takes a string\nstr and a format string format. STR_TO_DATE() returns a DATETIME value\nif the format string contains both date and time parts, or a DATE or\nTIME value if the string contains only date or time parts. If the date,\ntime, or datetime value extracted from str is illegal, STR_TO_DATE()\nreturns NULL and produces a warning.\n\nThe server scans str attempting to match format to it. The format\nstring can contain literal characters and format specifiers beginning\nwith %. Literal characters in format must match literally in str.\nFormat specifiers in format must match a date or time part in str. For\nthe specifiers that can be used in format, see the DATE_FORMAT()\nfunction description.\n\nmysql> SELECT STR_TO_DATE(\'01,5,2013\',\'%d,%m,%Y\');\n        -> \'2013-05-01\'\nmysql> SELECT STR_TO_DATE(\'May 1, 2013\',\'%M %d,%Y\');\n        -> \'2013-05-01\'\n\nScanning starts at the beginning of str and fails if format is found\nnot to match. Extra characters at the end of str are ignored.\n\nmysql> SELECT STR_TO_DATE(\'a09:30:17\',\'a%h:%i:%s\');\n        -> \'09:30:17\'\nmysql> SELECT STR_TO_DATE(\'a09:30:17\',\'%h:%i:%s\');\n        -> NULL\nmysql> SELECT STR_TO_DATE(\'09:30:17a\',\'%h:%i:%s\');\n        -> \'09:30:17\'\n\nUnspecified date or time parts have a value of 0, so incompletely\nspecified values in str produce a result with some or all parts set to\n0:\n\nmysql> SELECT STR_TO_DATE(\'abc\',\'abc\');\n        -> \'0000-00-00\'\nmysql> SELECT STR_TO_DATE(\'9\',\'%m\');\n        -> \'0000-09-00\'\nmysql> SELECT STR_TO_DATE(\'9\',\'%s\');\n        -> \'00:00:09\'\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
285
285
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (205,11,'Y','Y(p)\n\nReturns the Y-coordinate value for the Point object p as a\ndouble-precision number.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-point-property-functions.html\n\n','mysql> SELECT Y(POINT(56.7, 53.34));\n+-----------------------+\n| Y(POINT(56.7, 53.34)) |\n+-----------------------+\n|                 53.34 |\n+-----------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-point-property-functions.html');
286
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (206,21,'CHECKSUM TABLE','Syntax:\nCHECKSUM TABLE tbl_name [, tbl_name] ... [ QUICK | EXTENDED ]\n\nCHECKSUM TABLE reports a table checksum. During the checksum operation,\nthe table is locked with a read lock for InnoDB and MyISAM. This\nstatement requires the SELECT privilege for the table.\n\nThis statement is not supported for views. If you run CHECKSUM TABLE\nagainst a view, the Checksum value is always NULL, and a warning is\nreturned.\n\nWith QUICK, the live table checksum is reported if it is available, or\nNULL otherwise. This is very fast. A live checksum is enabled by\nspecifying the CHECKSUM=1 table option when you create the table;\ncurrently, this is supported only for MyISAM tables. See [HELP CREATE\nTABLE].\n\nWith EXTENDED, the entire table is read row by row and the checksum is\ncalculated. This can be very slow for large tables.\n\nIf neither QUICK nor EXTENDED is specified, MySQL returns a live\nchecksum if the table storage engine supports it and scans the table\notherwise.\n\nFor a nonexistent table, CHECKSUM TABLE returns NULL and generates a\nwarning.\n\nIn MySQL 5.5, CHECKSUM TABLE returns 0 for partitioned tables unless\nyou include the EXTENDED option. This issue is resolved in MySQL 5.6.\n(Bug #11933226, Bug #60681)\n\nThe checksum value depends on the table row format. If the row format\nchanges, the checksum also changes. For example, the storage format for\ntemporal types such as TIME, DATETIME, and TIMESTAMP changes in MySQL\n5.6 prior to MySQL 5.6.5, so if a 5.5 table is upgraded to MySQL 5.6,\nthe checksum value may change.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/checksum-table.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/checksum-table.html');
 
286
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (206,21,'CHECKSUM TABLE','Syntax:\nCHECKSUM TABLE tbl_name [, tbl_name] ... [QUICK | EXTENDED]\n\nCHECKSUM TABLE reports a table checksum. During the checksum operation,\nthe table is locked with a read lock for InnoDB and MyISAM. This\nstatement requires the SELECT privilege for the table.\n\nThis statement is not supported for views. If you run CHECKSUM TABLE\nagainst a view, the Checksum value is always NULL, and a warning is\nreturned.\n\nWith QUICK, the live table checksum is reported if it is available, or\nNULL otherwise. This is very fast. A live checksum is enabled by\nspecifying the CHECKSUM=1 table option when you create the table;\ncurrently, this is supported only for MyISAM tables. See [HELP CREATE\nTABLE].\n\nWith EXTENDED, the entire table is read row by row and the checksum is\ncalculated. This can be very slow for large tables.\n\nIf neither QUICK nor EXTENDED is specified, MySQL returns a live\nchecksum if the table storage engine supports it and scans the table\notherwise.\n\nFor a nonexistent table, CHECKSUM TABLE returns NULL and generates a\nwarning.\n\nIn MySQL 5.5, CHECKSUM TABLE returns 0 for partitioned tables unless\nyou include the EXTENDED option. This issue is resolved in MySQL 5.6.\n(Bug #11933226, Bug #60681)\n\nThe checksum value depends on the table row format. If the row format\nchanges, the checksum also changes. For example, the storage format for\ntemporal types such as TIME, DATETIME, and TIMESTAMP changes in MySQL\n5.6 prior to MySQL 5.6.5, so if a 5.5 table is upgraded to MySQL 5.6,\nthe checksum value may change.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/checksum-table.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/checksum-table.html');
287
287
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (207,2,'NUMINTERIORRINGS','NumInteriorRings(poly)\n\nReturns the number of interior rings in the Polygon value poly.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n    -> \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT NumInteriorRings(GeomFromText(@poly));\n+---------------------------------------+\n| NumInteriorRings(GeomFromText(@poly)) |\n+---------------------------------------+\n|                                     1 |\n+---------------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-polygon-property-functions.html');
288
288
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (208,2,'INTERIORRINGN','InteriorRingN(poly,N)\n\nReturns the N-th interior ring for the Polygon value poly as a\nLineString. Rings are numbered beginning with 1.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n    -> \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT AsText(InteriorRingN(GeomFromText(@poly),1));\n+----------------------------------------------+\n| AsText(InteriorRingN(GeomFromText(@poly),1)) |\n+----------------------------------------------+\n| LINESTRING(1 1,1 2,2 2,2 1,1 1)              |\n+----------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-polygon-property-functions.html');
289
289
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (209,32,'UTC_TIME','Syntax:\nUTC_TIME, UTC_TIME()\n\nReturns the current UTC time as a value in \'HH:MM:SS\' or HHMMSS.uuuuuu\nformat, depending on whether the function is used in a string or\nnumeric context.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_TIME(), UTC_TIME() + 0;\n        -> \'18:07:53\', 180753.000000\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
314
314
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (234,17,'USER','Syntax:\nUSER()\n\nReturns the current MySQL user name and host name as a string in the\nutf8 character set.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','mysql> SELECT USER();\n        -> \'davida@localhost\'\n','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html');
315
315
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (235,21,'REPAIR TABLE','Syntax:\nREPAIR [NO_WRITE_TO_BINLOG | LOCAL] TABLE\n    tbl_name [, tbl_name] ...\n    [QUICK] [EXTENDED] [USE_FRM]\n\nREPAIR TABLE repairs a possibly corrupted table. By default, it has the\nsame effect as myisamchk --recover tbl_name. REPAIR TABLE works for\nMyISAM, ARCHIVE, and CSV tables. See\nhttp://dev.mysql.com/doc/refman/5.5/en/myisam-storage-engine.html,\nhttp://dev.mysql.com/doc/refman/5.5/en/archive-storage-engine.html, and\nhttp://dev.mysql.com/doc/refman/5.5/en/csv-storage-engine.html. This\nstatement does not work with views.\n\nThis statement requires SELECT and INSERT privileges for the table.\n\nREPAIR TABLE is supported for partitioned tables. However, the USE_FRM\noption cannot be used with this statement on a partitioned table.\n\nYou can use ALTER TABLE ... REPAIR PARTITION to repair one or more\npartitions; for more information, see [HELP ALTER TABLE], and\nhttp://dev.mysql.com/doc/refman/5.5/en/partitioning-maintenance.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/repair-table.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/repair-table.html');
316
316
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (236,18,'MERGE','The MERGE storage engine, also known as the MRG_MyISAM engine, is a\ncollection of identical MyISAM tables that can be used as one.\n"Identical" means that all tables have identical column and index\ninformation. You cannot merge MyISAM tables in which the columns are\nlisted in a different order, do not have exactly the same columns, or\nhave the indexes in different order. However, any or all of the MyISAM\ntables can be compressed with myisampack. See\nhttp://dev.mysql.com/doc/refman/5.5/en/myisampack.html. Differences in\ntable options such as AVG_ROW_LENGTH, MAX_ROWS, or PACK_KEYS do not\nmatter.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/merge-storage-engine.html\n\n','mysql> CREATE TABLE t1 (\n    ->    a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n    ->    message CHAR(20)) ENGINE=MyISAM;\nmysql> CREATE TABLE t2 (\n    ->    a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n    ->    message CHAR(20)) ENGINE=MyISAM;\nmysql> INSERT INTO t1 (message) VALUES (\'Testing\'),(\'table\'),(\'t1\');\nmysql> INSERT INTO t2 (message) VALUES (\'Testing\'),(\'table\'),(\'t2\');\nmysql> CREATE TABLE total (\n    ->    a INT NOT NULL AUTO_INCREMENT,\n    ->    message CHAR(20), INDEX(a))\n    ->    ENGINE=MERGE UNION=(t1,t2) INSERT_METHOD=LAST;\n','http://dev.mysql.com/doc/refman/5.5/en/merge-storage-engine.html');
317
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (237,40,'CREATE TABLE','Syntax:\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n    (create_definition,...)\n    [table_options]\n    [partition_options]\n\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n    [(create_definition,...)]\n    [table_options]\n    [partition_options]\n    [IGNORE | REPLACE]\n    [AS] query_expression\n\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n    { LIKE old_tbl_name | (LIKE old_tbl_name) }\n\ncreate_definition:\n    col_name column_definition\n  | [CONSTRAINT [symbol]] PRIMARY KEY [index_type] (index_col_name,...)\n      [index_option] ...\n  | {INDEX|KEY} [index_name] [index_type] (index_col_name,...)\n      [index_option] ...\n  | [CONSTRAINT [symbol]] UNIQUE [INDEX|KEY]\n      [index_name] [index_type] (index_col_name,...)\n      [index_option] ...\n  | {FULLTEXT|SPATIAL} [INDEX|KEY] [index_name] (index_col_name,...)\n      [index_option] ...\n  | [CONSTRAINT [symbol]] FOREIGN KEY\n      [index_name] (index_col_name,...) reference_definition\n  | CHECK (expr)\n\ncolumn_definition:\n    data_type [NOT NULL | NULL] [DEFAULT default_value]\n      [AUTO_INCREMENT] [UNIQUE [KEY] | [PRIMARY] KEY]\n      [COMMENT \'string\']\n      [COLUMN_FORMAT {FIXED|DYNAMIC|DEFAULT}]\n      [STORAGE {DISK|MEMORY|DEFAULT}]\n      [reference_definition]\n\ndata_type:\n    BIT[(length)]\n  | TINYINT[(length)] [UNSIGNED] [ZEROFILL]\n  | SMALLINT[(length)] [UNSIGNED] [ZEROFILL]\n  | MEDIUMINT[(length)] [UNSIGNED] [ZEROFILL]\n  | INT[(length)] [UNSIGNED] [ZEROFILL]\n  | INTEGER[(length)] [UNSIGNED] [ZEROFILL]\n  | BIGINT[(length)] [UNSIGNED] [ZEROFILL]\n  | REAL[(length,decimals)] [UNSIGNED] [ZEROFILL]\n  | DOUBLE[(length,decimals)] [UNSIGNED] [ZEROFILL]\n  | FLOAT[(length,decimals)] [UNSIGNED] [ZEROFILL]\n  | DECIMAL[(length[,decimals])] [UNSIGNED] [ZEROFILL]\n  | NUMERIC[(length[,decimals])] [UNSIGNED] [ZEROFILL]\n  | DATE\n  | TIME\n  | TIMESTAMP\n  | DATETIME\n  | YEAR\n  | CHAR[(length)] [BINARY]\n      [CHARACTER SET charset_name] [COLLATE collation_name]\n  | VARCHAR(length) [BINARY]\n      [CHARACTER SET charset_name] [COLLATE collation_name]\n  | BINARY[(length)]\n  | VARBINARY(length)\n  | TINYBLOB\n  | BLOB\n  | MEDIUMBLOB\n  | LONGBLOB\n  | TINYTEXT [BINARY]\n      [CHARACTER SET charset_name] [COLLATE collation_name]\n  | TEXT [BINARY]\n      [CHARACTER SET charset_name] [COLLATE collation_name]\n  | MEDIUMTEXT [BINARY]\n      [CHARACTER SET charset_name] [COLLATE collation_name]\n  | LONGTEXT [BINARY]\n      [CHARACTER SET charset_name] [COLLATE collation_name]\n  | ENUM(value1,value2,value3,...)\n      [CHARACTER SET charset_name] [COLLATE collation_name]\n  | SET(value1,value2,value3,...)\n      [CHARACTER SET charset_name] [COLLATE collation_name]\n  | spatial_type\n\nindex_col_name:\n    col_name [(length)] [ASC | DESC]\n\nindex_type:\n    USING {BTREE | HASH}\n\nindex_option:\n    KEY_BLOCK_SIZE [=] value\n  | index_type\n  | WITH PARSER parser_name\n  | COMMENT \'string\'\n\nreference_definition:\n    REFERENCES tbl_name (index_col_name,...)\n      [MATCH FULL | MATCH PARTIAL | MATCH SIMPLE]\n      [ON DELETE reference_option]\n      [ON UPDATE reference_option]\n\nreference_option:\n    RESTRICT | CASCADE | SET NULL | NO ACTION\n\ntable_options:\n    table_option [[,] table_option] ...\n\ntable_option:\n    ENGINE [=] engine_name\n  | AUTO_INCREMENT [=] value\n  | AVG_ROW_LENGTH [=] value\n  | [DEFAULT] CHARACTER SET [=] charset_name\n  | CHECKSUM [=] {0 | 1}\n  | [DEFAULT] COLLATE [=] collation_name\n  | COMMENT [=] \'string\'\n  | CONNECTION [=] \'connect_string\'\n  | DATA DIRECTORY [=] \'absolute path to directory\'\n  | DELAY_KEY_WRITE [=] {0 | 1}\n  | INDEX DIRECTORY [=] \'absolute path to directory\'\n  | INSERT_METHOD [=] { NO | FIRST | LAST }\n  | KEY_BLOCK_SIZE [=] value\n  | MAX_ROWS [=] value\n  | MIN_ROWS [=] value\n  | PACK_KEYS [=] {0 | 1 | DEFAULT}\n  | PASSWORD [=] \'string\'\n  | ROW_FORMAT [=] {DEFAULT|DYNAMIC|FIXED|COMPRESSED|REDUNDANT|COMPACT}\n  | TABLESPACE tablespace_name [STORAGE {DISK|MEMORY|DEFAULT}]\n  | UNION [=] (tbl_name[,tbl_name]...)\n\npartition_options:\n    PARTITION BY\n        { [LINEAR] HASH(expr)\n        | [LINEAR] KEY [ALGORITHM={1|2}] (column_list)\n        | RANGE{(expr) | COLUMNS(column_list)}\n        | LIST{(expr) | COLUMNS(column_list)} }\n    [PARTITIONS num]\n    [SUBPARTITION BY\n        { [LINEAR] HASH(expr)\n        | [LINEAR] KEY [ALGORITHM={1|2}] (column_list) }\n      [SUBPARTITIONS num]\n    ]\n    [(partition_definition [, partition_definition] ...)]\n\npartition_definition:\n    PARTITION partition_name\n        [VALUES\n            {LESS THAN {(expr | value_list) | MAXVALUE}\n            |\n            IN (value_list)}]\n        [[STORAGE] ENGINE [=] engine_name]\n        [COMMENT [=] \'comment_text\' ]\n        [DATA DIRECTORY [=] \'data_dir\']\n        [INDEX DIRECTORY [=] \'index_dir\']\n        [MAX_ROWS [=] max_number_of_rows]\n        [MIN_ROWS [=] min_number_of_rows]\n        [TABLESPACE [=] tablespace_name]\n        [NODEGROUP [=] node_group_id]\n        [(subpartition_definition [, subpartition_definition] ...)]\n\nsubpartition_definition:\n    SUBPARTITION logical_name\n        [[STORAGE] ENGINE [=] engine_name]\n        [COMMENT [=] \'comment_text\' ]\n        [DATA DIRECTORY [=] \'data_dir\']\n        [INDEX DIRECTORY [=] \'index_dir\']\n        [MAX_ROWS [=] max_number_of_rows]\n        [MIN_ROWS [=] min_number_of_rows]\n        [TABLESPACE [=] tablespace_name]\n        [NODEGROUP [=] node_group_id]\n\nquery_expression:\n    SELECT ...   (Some valid select or union statement)\n\nCREATE TABLE creates a table with the given name. You must have the\nCREATE privilege for the table.\n\nRules for permissible table names are given in\nhttp://dev.mysql.com/doc/refman/5.5/en/identifiers.html. By default,\nthe table is created in the default database, using the InnoDB storage\nengine. An error occurs if the table exists, if there is no default\ndatabase, or if the database does not exist.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-table.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-table.html');
 
317
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (237,40,'CREATE TABLE','Syntax:\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n    (create_definition,...)\n    [table_options]\n    [partition_options]\n\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n    [(create_definition,...)]\n    [table_options]\n    [partition_options]\n    [IGNORE | REPLACE]\n    [AS] query_expression\n\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n    { LIKE old_tbl_name | (LIKE old_tbl_name) }\n\ncreate_definition:\n    col_name column_definition\n  | [CONSTRAINT [symbol]] PRIMARY KEY [index_type] (index_col_name,...)\n      [index_option] ...\n  | {INDEX|KEY} [index_name] [index_type] (index_col_name,...)\n      [index_option] ...\n  | [CONSTRAINT [symbol]] UNIQUE [INDEX|KEY]\n      [index_name] [index_type] (index_col_name,...)\n      [index_option] ...\n  | {FULLTEXT|SPATIAL} [INDEX|KEY] [index_name] (index_col_name,...)\n      [index_option] ...\n  | [CONSTRAINT [symbol]] FOREIGN KEY\n      [index_name] (index_col_name,...) reference_definition\n  | CHECK (expr)\n\ncolumn_definition:\n    data_type [NOT NULL | NULL] [DEFAULT default_value]\n      [AUTO_INCREMENT] [UNIQUE [KEY] | [PRIMARY] KEY]\n      [COMMENT \'string\']\n      [COLUMN_FORMAT {FIXED|DYNAMIC|DEFAULT}]\n      [STORAGE {DISK|MEMORY|DEFAULT}]\n      [reference_definition]\n\ndata_type:\n    BIT[(length)]\n  | TINYINT[(length)] [UNSIGNED] [ZEROFILL]\n  | SMALLINT[(length)] [UNSIGNED] [ZEROFILL]\n  | MEDIUMINT[(length)] [UNSIGNED] [ZEROFILL]\n  | INT[(length)] [UNSIGNED] [ZEROFILL]\n  | INTEGER[(length)] [UNSIGNED] [ZEROFILL]\n  | BIGINT[(length)] [UNSIGNED] [ZEROFILL]\n  | REAL[(length,decimals)] [UNSIGNED] [ZEROFILL]\n  | DOUBLE[(length,decimals)] [UNSIGNED] [ZEROFILL]\n  | FLOAT[(length,decimals)] [UNSIGNED] [ZEROFILL]\n  | DECIMAL[(length[,decimals])] [UNSIGNED] [ZEROFILL]\n  | NUMERIC[(length[,decimals])] [UNSIGNED] [ZEROFILL]\n  | DATE\n  | TIME\n  | TIMESTAMP\n  | DATETIME\n  | YEAR\n  | CHAR[(length)] [BINARY]\n      [CHARACTER SET charset_name] [COLLATE collation_name]\n  | VARCHAR(length) [BINARY]\n      [CHARACTER SET charset_name] [COLLATE collation_name]\n  | BINARY[(length)]\n  | VARBINARY(length)\n  | TINYBLOB\n  | BLOB\n  | MEDIUMBLOB\n  | LONGBLOB\n  | TINYTEXT [BINARY]\n      [CHARACTER SET charset_name] [COLLATE collation_name]\n  | TEXT [BINARY]\n      [CHARACTER SET charset_name] [COLLATE collation_name]\n  | MEDIUMTEXT [BINARY]\n      [CHARACTER SET charset_name] [COLLATE collation_name]\n  | LONGTEXT [BINARY]\n      [CHARACTER SET charset_name] [COLLATE collation_name]\n  | ENUM(value1,value2,value3,...)\n      [CHARACTER SET charset_name] [COLLATE collation_name]\n  | SET(value1,value2,value3,...)\n      [CHARACTER SET charset_name] [COLLATE collation_name]\n  | spatial_type\n\nindex_col_name:\n    col_name [(length)] [ASC | DESC]\n\nindex_type:\n    USING {BTREE | HASH}\n\nindex_option:\n    KEY_BLOCK_SIZE [=] value\n  | index_type\n  | WITH PARSER parser_name\n  | COMMENT \'string\'\n\nreference_definition:\n    REFERENCES tbl_name (index_col_name,...)\n      [MATCH FULL | MATCH PARTIAL | MATCH SIMPLE]\n      [ON DELETE reference_option]\n      [ON UPDATE reference_option]\n\nreference_option:\n    RESTRICT | CASCADE | SET NULL | NO ACTION\n\ntable_options:\n    table_option [[,] table_option] ...\n\ntable_option:\n    ENGINE [=] engine_name\n  | AUTO_INCREMENT [=] value\n  | AVG_ROW_LENGTH [=] value\n  | [DEFAULT] CHARACTER SET [=] charset_name\n  | CHECKSUM [=] {0 | 1}\n  | [DEFAULT] COLLATE [=] collation_name\n  | COMMENT [=] \'string\'\n  | CONNECTION [=] \'connect_string\'\n  | DATA DIRECTORY [=] \'absolute path to directory\'\n  | DELAY_KEY_WRITE [=] {0 | 1}\n  | INDEX DIRECTORY [=] \'absolute path to directory\'\n  | INSERT_METHOD [=] { NO | FIRST | LAST }\n  | KEY_BLOCK_SIZE [=] value\n  | MAX_ROWS [=] value\n  | MIN_ROWS [=] value\n  | PACK_KEYS [=] {0 | 1 | DEFAULT}\n  | PASSWORD [=] \'string\'\n  | ROW_FORMAT [=] {DEFAULT|DYNAMIC|FIXED|COMPRESSED|REDUNDANT|COMPACT}\n  | TABLESPACE tablespace_name [STORAGE {DISK|MEMORY|DEFAULT}]\n  | UNION [=] (tbl_name[,tbl_name]...)\n\npartition_options:\n    PARTITION BY\n        { [LINEAR] HASH(expr)\n        | [LINEAR] KEY [ALGORITHM={1|2}] (column_list)\n        | RANGE{(expr) | COLUMNS(column_list)}\n        | LIST{(expr) | COLUMNS(column_list)} }\n    [PARTITIONS num]\n    [SUBPARTITION BY\n        { [LINEAR] HASH(expr)\n        | [LINEAR] KEY [ALGORITHM={1|2}] (column_list) }\n      [SUBPARTITIONS num]\n    ]\n    [(partition_definition [, partition_definition] ...)]\n\npartition_definition:\n    PARTITION partition_name\n        [VALUES\n            {LESS THAN {(expr | value_list) | MAXVALUE}\n            |\n            IN (value_list)}]\n        [[STORAGE] ENGINE [=] engine_name]\n        [COMMENT [=] \'comment_text\' ]\n        [DATA DIRECTORY [=] \'data_dir\']\n        [INDEX DIRECTORY [=] \'index_dir\']\n        [MAX_ROWS [=] max_number_of_rows]\n        [MIN_ROWS [=] min_number_of_rows]\n        [TABLESPACE [=] tablespace_name]\n        [NODEGROUP [=] node_group_id]\n        [(subpartition_definition [, subpartition_definition] ...)]\n\nsubpartition_definition:\n    SUBPARTITION logical_name\n        [[STORAGE] ENGINE [=] engine_name]\n        [COMMENT [=] \'comment_text\' ]\n        [DATA DIRECTORY [=] \'data_dir\']\n        [INDEX DIRECTORY [=] \'index_dir\']\n        [MAX_ROWS [=] max_number_of_rows]\n        [MIN_ROWS [=] min_number_of_rows]\n        [TABLESPACE [=] tablespace_name]\n        [NODEGROUP [=] node_group_id]\n\nquery_expression:\n    SELECT ...   (Some valid select or union statement)\n\nCREATE TABLE creates a table with the given name. You must have the\nCREATE privilege for the table.\n\nBy default, tables are created in the default database, using the\nInnoDB storage engine. An error occurs if the table exists, if there is\nno default database, or if the database does not exist.\n\nFor information about the physical representation of a table, see\nhttp://dev.mysql.com/doc/refman/5.5/en/create-table-files.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-table.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-table.html');
318
318
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (238,32,'MICROSECOND','Syntax:\nMICROSECOND(expr)\n\nReturns the microseconds from the time or datetime expression expr as a\nnumber in the range from 0 to 999999.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT MICROSECOND(\'12:00:00.123456\');\n        -> 123456\nmysql> SELECT MICROSECOND(\'2009-12-31 23:59:59.000010\');\n        -> 10\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
319
319
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (239,40,'CREATE SERVER','Syntax:\nCREATE SERVER server_name\n    FOREIGN DATA WRAPPER wrapper_name\n    OPTIONS (option [, option] ...)\n\noption:\n  { HOST character-literal\n  | DATABASE character-literal\n  | USER character-literal\n  | PASSWORD character-literal\n  | SOCKET character-literal\n  | OWNER character-literal\n  | PORT numeric-literal }\n\nThis statement creates the definition of a server for use with the\nFEDERATED storage engine. The CREATE SERVER statement creates a new row\nin the servers table in the mysql database. This statement requires the\nSUPER privilege.\n\nThe server_name should be a unique reference to the server. Server\ndefinitions are global within the scope of the server, it is not\npossible to qualify the server definition to a specific database.\nserver_name has a maximum length of 64 characters (names longer than 64\ncharacters are silently truncated), and is case insensitive. You may\nspecify the name as a quoted string.\n\nThe wrapper_name should be mysql, and may be quoted with single\nquotation marks. Other values for wrapper_name are not currently\nsupported.\n\nFor each option you must specify either a character literal or numeric\nliteral. Character literals are UTF-8, support a maximum length of 64\ncharacters and default to a blank (empty) string. String literals are\nsilently truncated to 64 characters. Numeric literals must be a number\nbetween 0 and 9999, default value is 0.\n\n*Note*: The OWNER option is currently not applied, and has no effect on\nthe ownership or operation of the server connection that is created.\n\nThe CREATE SERVER statement creates an entry in the mysql.servers table\nthat can later be used with the CREATE TABLE statement when creating a\nFEDERATED table. The options that you specify will be used to populate\nthe columns in the mysql.servers table. The table columns are\nServer_name, Host, Db, Username, Password, Port and Socket.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-server.html\n\n','CREATE SERVER s\nFOREIGN DATA WRAPPER mysql\nOPTIONS (USER \'Remote\', HOST \'192.168.1.106\', DATABASE \'test\');\n','http://dev.mysql.com/doc/refman/5.5/en/create-server.html');
320
320
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (240,32,'MAKETIME','Syntax:\nMAKETIME(hour,minute,second)\n\nReturns a time value calculated from the hour, minute, and second\narguments.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT MAKETIME(12,15,30);\n        -> \'12:15:30\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
321
321
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (241,32,'CURDATE','Syntax:\nCURDATE()\n\nReturns the current date as a value in \'YYYY-MM-DD\' or YYYYMMDD format,\ndepending on whether the function is used in a string or numeric\ncontext.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT CURDATE();\n        -> \'2008-06-13\'\nmysql> SELECT CURDATE() + 0;\n        -> 20080613\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
322
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (242,10,'SET PASSWORD','Syntax:\nSET PASSWORD [FOR user] = password_option\n\npassword_option: {\n    PASSWORD(\'auth_string\')\n  | OLD_PASSWORD(\'auth_string\')\n  | \'hash_string\'\n}\n\nThe SET PASSWORD statement assigns a password to a MySQL user account,\nspecified as either a cleartext (unencrypted) or encrypted value:\n\no \'auth_string\' represents a cleartext password.\n\no \'hash_string\' represents an encrypted password.\n\nSET PASSWORD can be used with or without an explicitly named user\naccount:\n\no With a FOR user clause, the statement sets the password for the named\n  account, which must exist:\n\nSET PASSWORD FOR \'jeffrey\'@\'localhost\' = password_option;\n\n  In this case, you must have the UPDATE privilege for the mysql\n  database.\n\no With no FOR user clause, the statement sets the password for the\n  current user:\n\nSET PASSWORD = password_option;\n\n  Any client who connects to the server using a nonanonymous account\n  can change the password for that account. To see which account the\n  server authenticated you as, invoke the CURRENT_USER() function:\n\nSELECT CURRENT_USER();\n\nWhen the read_only system variable is enabled, SET PASSWORD requires\nthe SUPER privilege in addition to any other required privileges.\n\nIf a FOR user clause is given, the account name uses the format\ndescribed in http://dev.mysql.com/doc/refman/5.5/en/account-names.html.\nThe user value should be given as \'user_name\'@\'host_name\', where\n\'user_name\' and \'host_name\' are exactly as listed in the User and Host\ncolumns of the account\'s mysql.user table row. If you specify only a\nuser name, a host name of \'%\' is used. For example, to set the password\nfor an account with User and Host column values of \'bob\' and\n\'%.example.org\', write the statement like this:\n\nSET PASSWORD FOR \'bob\'@\'%.example.org\' = PASSWORD(\'auth_string\');\n\nThe password can be specified in these ways:\n\no Using the PASSWORD() function\n\n  The \'auth_string\' function argument is the cleartext (unencrypted)\n  password. PASSWORD() hashes the password and returns the encrypted\n  password string for storage in the mysql.user account row.\n\n  The PASSWORD() function hashes the password using the hashing method\n  determined by the value of the old_passwords system variable value.\n  It should be set to a value compatible with the hash format required\n  by the account authentication plugin. For example, if the account\n  uses the mysql_native_password authentication plugin, old_passwords\n  should be 0 for PASSWORD() to produce a hash value in the correct\n  format. For mysql_old_password, old_passwords should be 1.\n\no Using the OLD_PASSWORD() function:\n\n  The \'auth_string\' function argument is the cleartext (unencrypted)\n  password. OLD_PASSWORD() hashes the password using pre-4.1 hashing\n  and returns the encrypted password string for storage in the\n  mysql.user account row. This hashing method is appropriate only for\n  accounts that use the mysql_old_password authentication plugin.\n\no Using an already encrypted password string\n\n  The password is specified as a string literal. It must represent the\n  already encrypted password value, in the hash format required by the\n  authentication method used for the account.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/set-password.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/set-password.html');
 
322
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (242,10,'SET PASSWORD','Syntax:\nSET PASSWORD [FOR user] = password_option\n\npassword_option: {\n    PASSWORD(\'auth_string\')\n  | OLD_PASSWORD(\'auth_string\')\n  | \'hash_string\'\n}\n\nThe SET PASSWORD statement assigns a password to a MySQL user account,\nspecified as either a cleartext (unencrypted) or encrypted value:\n\no \'auth_string\' represents a cleartext password.\n\no \'hash_string\' represents an encrypted password.\n\nSET PASSWORD can be used with or without an explicitly named user\naccount:\n\no With a FOR user clause, the statement sets the password for the named\n  account, which must exist:\n\nSET PASSWORD FOR \'jeffrey\'@\'localhost\' = password_option;\n\n  In this case, you must have the UPDATE privilege for the mysql\n  database.\n\no With no FOR user clause, the statement sets the password for the\n  current user:\n\nSET PASSWORD = password_option;\n\n  Any client who connects to the server using a nonanonymous account\n  can change the password for that account. To see which account the\n  server authenticated you as, invoke the CURRENT_USER() function:\n\nSELECT CURRENT_USER();\n\nWhen the read_only system variable is enabled, SET PASSWORD requires\nthe SUPER privilege in addition to any other required privileges.\n\nIf a FOR user clause is given, the account name uses the format\ndescribed in http://dev.mysql.com/doc/refman/5.5/en/account-names.html.\nThe user value should be given as \'user_name\'@\'host_name\', where\n\'user_name\' and \'host_name\' are exactly as listed in the User and Host\ncolumns of the account\'s mysql.user table row. The host name part of\nthe account name, if omitted, defaults to \'%\'. For example, to set the\npassword for an account with User and Host column values of \'bob\' and\n\'%.example.org\', write the statement like this:\n\nSET PASSWORD FOR \'bob\'@\'%.example.org\' = PASSWORD(\'auth_string\');\n\nThe password can be specified in these ways:\n\no Using the PASSWORD() function\n\n  The \'auth_string\' function argument is the cleartext (unencrypted)\n  password. PASSWORD() hashes the password and returns the encrypted\n  password string for storage in the mysql.user account row.\n\n  The PASSWORD() function hashes the password using the hashing method\n  determined by the value of the old_passwords system variable value.\n  It should be set to a value compatible with the hash format required\n  by the account authentication plugin. For example, if the account\n  uses the mysql_native_password authentication plugin, old_passwords\n  should be 0 for PASSWORD() to produce a hash value in the correct\n  format. For mysql_old_password, old_passwords should be 1.\n\no Using the OLD_PASSWORD() function:\n\n  The \'auth_string\' function argument is the cleartext (unencrypted)\n  password. OLD_PASSWORD() hashes the password using pre-4.1 hashing\n  and returns the encrypted password string for storage in the\n  mysql.user account row. This hashing method is appropriate only for\n  accounts that use the mysql_old_password authentication plugin.\n\no Using an already encrypted password string\n\n  The password is specified as a string literal. It must represent the\n  already encrypted password value, in the hash format required by the\n  authentication method used for the account.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/set-password.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/set-password.html');
323
323
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (243,17,'DATABASE','Syntax:\nDATABASE()\n\nReturns the default (current) database name as a string in the utf8\ncharacter set. If there is no default database, DATABASE() returns\nNULL. Within a stored routine, the default database is the database\nthat the routine is associated with, which is not necessarily the same\nas the database that is the default in the calling context.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','mysql> SELECT DATABASE();\n        -> \'test\'\n','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html');
324
324
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (244,6,'IF FUNCTION','Syntax:\nIF(expr1,expr2,expr3)\n\nIf expr1 is TRUE (expr1 <> 0 and expr1 <> NULL) then IF() returns\nexpr2; otherwise it returns expr3. IF() returns a numeric or string\nvalue, depending on the context in which it is used.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/control-flow-functions.html\n\n','mysql> SELECT IF(1>2,2,3);\n        -> 3\nmysql> SELECT IF(1<2,\'yes\',\'no\');\n        -> \'yes\'\nmysql> SELECT IF(STRCMP(\'test\',\'test1\'),\'no\',\'yes\');\n        -> \'no\'\n','http://dev.mysql.com/doc/refman/5.5/en/control-flow-functions.html');
325
325
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (245,33,'POINTFROMWKB','PointFromWKB(wkb[,srid])\n\nConstructs a Point value using its WKB representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html');
334
334
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (254,17,'COERCIBILITY','Syntax:\nCOERCIBILITY(str)\n\nReturns the collation coercibility value of the string argument.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','mysql> SELECT COERCIBILITY(\'abc\' COLLATE latin1_swedish_ci);\n        -> 0\nmysql> SELECT COERCIBILITY(USER());\n        -> 3\nmysql> SELECT COERCIBILITY(\'abc\');\n        -> 4\n','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html');
335
335
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (255,23,'INT','INT[(M)] [UNSIGNED] [ZEROFILL]\n\nA normal-size integer. The signed range is -2147483648 to 2147483647.\nThe unsigned range is 0 to 4294967295.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html');
336
336
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (256,13,'GLENGTH','GLength(ls)\n\nReturns a double-precision number indicating the length of the\nLineString or MultiLineString value ls in its associated spatial\nreference. The length of a MultiLineString value is equal to the sum of\nthe lengths of its elements.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT GLength(GeomFromText(@ls));\n+----------------------------+\n| GLength(GeomFromText(@ls)) |\n+----------------------------+\n|         2.8284271247461903 |\n+----------------------------+\n\nmysql> SET @mls = \'MultiLineString((1 1,2 2,3 3),(4 4,5 5))\';\nmysql> SELECT GLength(GeomFromText(@mls));\n+-----------------------------+\n| GLength(GeomFromText(@mls)) |\n+-----------------------------+\n|           4.242640687119286 |\n+-----------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html');
337
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (257,38,'MAKE_SET','Syntax:\nMAKE_SET(bits,str1,str2,...)\n\nReturns a set value (a string containing substrings separated by ","\ncharacters) consisting of the strings that have the corresponding bit\nin bits set. str1 corresponds to bit 0, str2 to bit 1, and so on. NULL\nvalues in str1, str2, ... are not appended to the result.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT MAKE_SET(1,\'a\',\'b\',\'c\');\n        -> \'a\'\nmysql> SELECT MAKE_SET(1 | 4,\'hello\',\'nice\',\'world\');\n        -> \'hello,world\'\nmysql> SELECT MAKE_SET(1 | 4,\'hello\',\'nice\',NULL,\'world\');\n        -> \'hello\'\nmysql> SELECT MAKE_SET(0,\'a\',\'b\',\'c\');\n        -> \'\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
338
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (258,38,'FIND_IN_SET','Syntax:\nFIND_IN_SET(str,strlist)\n\nReturns a value in the range of 1 to N if the string str is in the\nstring list strlist consisting of N substrings. A string list is a\nstring composed of substrings separated by "," characters. If the first\nargument is a constant string and the second is a column of type SET,\nthe FIND_IN_SET() function is optimized to use bit arithmetic. Returns\n0 if str is not in strlist or if strlist is the empty string. Returns\nNULL if either argument is NULL. This function does not work properly\nif the first argument contains a comma (",") character.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT FIND_IN_SET(\'b\',\'a,b,c,d\');\n        -> 2\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
 
337
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (257,38,'MAKE_SET','Syntax:\nMAKE_SET(bits,str1,str2,...)\n\nReturns a set value (a string containing substrings separated by ,\ncharacters) consisting of the strings that have the corresponding bit\nin bits set. str1 corresponds to bit 0, str2 to bit 1, and so on. NULL\nvalues in str1, str2, ... are not appended to the result.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT MAKE_SET(1,\'a\',\'b\',\'c\');\n        -> \'a\'\nmysql> SELECT MAKE_SET(1 | 4,\'hello\',\'nice\',\'world\');\n        -> \'hello,world\'\nmysql> SELECT MAKE_SET(1 | 4,\'hello\',\'nice\',NULL,\'world\');\n        -> \'hello\'\nmysql> SELECT MAKE_SET(0,\'a\',\'b\',\'c\');\n        -> \'\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
 
338
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (258,38,'FIND_IN_SET','Syntax:\nFIND_IN_SET(str,strlist)\n\nReturns a value in the range of 1 to N if the string str is in the\nstring list strlist consisting of N substrings. A string list is a\nstring composed of substrings separated by , characters. If the first\nargument is a constant string and the second is a column of type SET,\nthe FIND_IN_SET() function is optimized to use bit arithmetic. Returns\n0 if str is not in strlist or if strlist is the empty string. Returns\nNULL if either argument is NULL. This function does not work properly\nif the first argument contains a comma (,) character.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT FIND_IN_SET(\'b\',\'a,b,c,d\');\n        -> 2\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
339
339
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (259,16,'MIN','Syntax:\nMIN([DISTINCT] expr)\n\nReturns the minimum value of expr. MIN() may take a string argument; in\nsuch cases, it returns the minimum string value. See\nhttp://dev.mysql.com/doc/refman/5.5/en/mysql-indexes.html. The DISTINCT\nkeyword can be used to find the minimum of the distinct values of expr,\nhowever, this produces the same result as omitting DISTINCT.\n\nMIN() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','mysql> SELECT student_name, MIN(test_score), MAX(test_score)\n    ->        FROM student\n    ->        GROUP BY student_name;\n','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html');
340
340
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (260,28,'REPLACE','Syntax:\nREPLACE [LOW_PRIORITY | DELAYED]\n    [INTO] tbl_name [(col_name,...)]\n    {VALUES | VALUE} ({expr | DEFAULT},...),(...),...\n\nOr:\n\nREPLACE [LOW_PRIORITY | DELAYED]\n    [INTO] tbl_name\n    SET col_name={expr | DEFAULT}, ...\n\nOr:\n\nREPLACE [LOW_PRIORITY | DELAYED]\n    [INTO] tbl_name [(col_name,...)]\n    SELECT ...\n\nREPLACE works exactly like INSERT, except that if an old row in the\ntable has the same value as a new row for a PRIMARY KEY or a UNIQUE\nindex, the old row is deleted before the new row is inserted. See [HELP\nINSERT].\n\nREPLACE is a MySQL extension to the SQL standard. It either inserts, or\ndeletes and inserts. For another MySQL extension to standard SQL---that\neither inserts or updates---see\nhttp://dev.mysql.com/doc/refman/5.5/en/insert-on-duplicate.html.\n\n*Note*: REPLACE makes sense only if a table has a PRIMARY KEY or UNIQUE\nindex. Otherwise, it becomes equivalent to INSERT, because there is no\nindex to be used to determine whether a new row duplicates another.\n\nValues for all columns are taken from the values specified in the\nREPLACE statement. Any missing columns are set to their default values,\njust as happens for INSERT. You cannot refer to values from the current\nrow and use them in the new row. If you use an assignment such as SET\ncol_name = col_name + 1, the reference to the column name on the right\nhand side is treated as DEFAULT(col_name), so the assignment is\nequivalent to SET col_name = DEFAULT(col_name) + 1.\n\nTo use REPLACE, you must have both the INSERT and DELETE privileges for\nthe table.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/replace.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/replace.html');
341
341
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (261,32,'CURRENT_TIMESTAMP','Syntax:\nCURRENT_TIMESTAMP, CURRENT_TIMESTAMP()\n\nCURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for NOW().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
369
369
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (289,6,'IFNULL','Syntax:\nIFNULL(expr1,expr2)\n\nIf expr1 is not NULL, IFNULL() returns expr1; otherwise it returns\nexpr2. IFNULL() returns a numeric or string value, depending on the\ncontext in which it is used.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/control-flow-functions.html\n\n','mysql> SELECT IFNULL(1,0);\n        -> 1\nmysql> SELECT IFNULL(NULL,10);\n        -> 10\nmysql> SELECT IFNULL(1/0,10);\n        -> 10\nmysql> SELECT IFNULL(1/0,\'yes\');\n        -> \'yes\'\n','http://dev.mysql.com/doc/refman/5.5/en/control-flow-functions.html');
370
370
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (290,27,'SHOW FUNCTION CODE','Syntax:\nSHOW FUNCTION CODE func_name\n\nThis statement is similar to SHOW PROCEDURE CODE but for stored\nfunctions. See [HELP SHOW PROCEDURE CODE].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-function-code.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-function-code.html');
371
371
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (291,20,'LEAST','Syntax:\nLEAST(value1,value2,...)\n\nWith two or more arguments, returns the smallest (minimum-valued)\nargument. The arguments are compared using the following rules:\n\no If any argument is NULL, the result is NULL. No comparison is needed.\n\no If the return value is used in an INTEGER context or all arguments\n  are integer-valued, they are compared as integers.\n\no If the return value is used in a REAL context or all arguments are\n  real-valued, they are compared as reals.\n\no If the arguments comprise a mix of numbers and strings, they are\n  compared as numbers.\n\no If any argument is a nonbinary (character) string, the arguments are\n  compared as nonbinary strings.\n\no In all other cases, the arguments are compared as binary strings.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT LEAST(2,0);\n        -> 0\nmysql> SELECT LEAST(34.0,3.0,5.0,767.0);\n        -> 3.0\nmysql> SELECT LEAST(\'B\',\'A\',\'C\');\n        -> \'A\'\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html');
372
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (292,27,'SET NAMES','Syntax:\nSET NAMES {\'charset_name\'\n    [COLLATE \'collation_name\'] | DEFAULT}\n\nThis statement sets the three session system variables\ncharacter_set_client, character_set_connection, and\ncharacter_set_results to the given character set. Setting\ncharacter_set_connection to charset_name also sets collation_connection\nto the default collation for charset_name. The optional COLLATE clause\nmay be used to specify a collation explicitly. See\nhttp://dev.mysql.com/doc/refman/5.5/en/charset-connection.html.\n\nThe default mapping can be restored by using a value of DEFAULT. The\ndefault depends on the server configuration.\n\nucs2, utf16, and utf32 cannot be used as a client character set, which\nmeans that they do not work for SET NAMES.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/set-names.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/set-names.html');
 
372
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (292,27,'SET NAMES','Syntax:\nSET NAMES {\'charset_name\'\n    [COLLATE \'collation_name\'] | DEFAULT}\n\nThis statement sets the three session system variables\ncharacter_set_client, character_set_connection, and\ncharacter_set_results to the given character set. Setting\ncharacter_set_connection to charset_name also sets collation_connection\nto the default collation for charset_name. See\nhttp://dev.mysql.com/doc/refman/5.5/en/charset-connection.html.\n\nThe optional COLLATE clause may be used to specify a collation\nexplicitly. If given, the collation must one of the permitted\ncollations for charset_name.\n\nThe default mapping can be restored by using a value of DEFAULT. The\ndefault depends on the server configuration.\n\nucs2, utf16, and utf32 cannot be used as a client character set, which\nmeans that they do not work for SET NAMES.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/set-names.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/set-names.html');
373
373
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (293,27,'SHOW ERRORS','Syntax:\nSHOW ERRORS [LIMIT [offset,] row_count]\nSHOW COUNT(*) ERRORS\n\nSHOW ERRORS is a diagnostic statement that is similar to SHOW WARNINGS,\nexcept that it displays information only for errors, rather than for\nerrors, warnings, and notes.\n\nThe LIMIT clause has the same syntax as for the SELECT statement. See\nhttp://dev.mysql.com/doc/refman/5.5/en/select.html.\n\nThe SHOW COUNT(*) ERRORS statement displays the number of errors. You\ncan also retrieve this number from the error_count variable:\n\nSHOW COUNT(*) ERRORS;\nSELECT @@error_count;\n\nSHOW ERRORS and error_count apply only to errors, not warnings or\nnotes. In other respects, they are similar to SHOW WARNINGS and\nwarning_count. In particular, SHOW ERRORS cannot display information\nfor more than max_error_count messages, and error_count can exceed the\nvalue of max_error_count if the number of errors exceeds\nmax_error_count.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-errors.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-errors.html');
374
374
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (294,20,'=','=\n\nEqual:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT 1 = 0;\n        -> 0\nmysql> SELECT \'0\' = 0;\n        -> 1\nmysql> SELECT \'0.0\' = 0;\n        -> 1\nmysql> SELECT \'0.01\' = 0;\n        -> 0\nmysql> SELECT \'.01\' = 0.01;\n        -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html');
375
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (295,10,'CREATE USER','Syntax:\nCREATE USER user_specification [, user_specification] ...\n\nuser_specification:\n    user [ identified_option ]\n\nauth_option: {\n    IDENTIFIED BY \'auth_string\'\n  | IDENTIFIED BY PASSWORD \'hash_string\'\n  | IDENTIFIED WITH auth_plugin\n  | IDENTIFIED WITH auth_plugin AS \'hash_string\'\n}\n\nThe CREATE USER statement creates new MySQL accounts. An error occurs\nif you try to create an account that already exists.\n\nAn account when first created has no privileges.\n\nTo use CREATE USER, you must have the global CREATE USER privilege or\nthe INSERT privilege for the mysql database. When the read_only system\nvariable is enabled, CREATE USER additionally requires the SUPER\nprivilege.\n\nFor each account, CREATE USER creates a new row in the mysql.user table\nwith no privileges and (as of MySQL 5.5.7) assigns the account an\nauthentication plugin. Depending on the syntax used, CREATE USER may\nalso assign the account a password.\n\nEach user_specification clause consists of an account name and\ninformation about how authentication occurs for clients that use the\naccount. This part of CREATE USER syntax is shared with GRANT, so the\ndescription here applies to GRANT as well.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.5/en/account-names.html. For example:\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED BY \'mypass\';\n\nIf you specify only the user name part of the account name, a host name\npart of \'%\' is used.\n\nThe server assigns an authentication plugin and password to each\naccount as follows, depending on whether the user specification clause\nincludes IDENTIFIED WITH to specify a plugin or IDENTIFIED BY to\nspecify a password:\n\n*Note*: IDENTIFIED WITH is available as of MySQL 5.5.7. Before 5.5.7,\nauthentication plugins are not used, so only the remarks about\nIDENTIFIED BY apply.\n\no With IDENTIFIED WITH, the server assigns the specified plugin and the\n  account has no password. If the optional AS \'hash_string\' clause is\n  also given, the string is stored as is in the authentication_string\n  column (it is assumed to be already hashed in the format required by\n  the plugin).\n\no With IDENTIFIED BY, the server assigns no plugin and assigns the\n  specified password.\n\no With neither IDENTIFIED WITH nor IDENTIFIED BY, the server assigns no\n  plugin and the account has no password.\n\nIf the account has no password, the Password column in the account\'s\nmysql.user table row remains empty, which is insecure. To set the\npassword, use SET PASSWORD. See [HELP SET PASSWORD].\n\nIf the server assigns no plugin to the account, the plugin column in\nthe account\'s mysql.user table row remains empty.\n\nFor client connections that use a given account, the server invokes the\nauthentication plugin assigned to the account and the client must\nprovide credentials as required by the authentication method that the\nplugin implements. If the server cannot find the plugin, either at\naccount-creation time or connect time, an error occurs.\n\nIf an account\'s mysql.user table row has a nonempty plugin column:\n\no The server authenticates client connection attempts using the named\n  plugin.\n\no Changes to the account password using SET PASSWORD with PASSWORD()\n  must be made with the old_passwords system variable set to the value\n  required by the authentication plugin, so that PASSWORD() uses the\n  appropriate password hashing method. If the plugin is\n  mysql_old_password, the password can also be changed using SET\n  PASSWORD with OLD_PASSWORD(), which uses pre-4.1 password hashing\n  regardless of the value of old_passwords.\n\nIf an account\'s mysql.user table row has an empty plugin column:\n\no The server authenticates client connection attempts using the\n  mysql_native_password or mysql_old_password authentication plugin,\n  depending on the hash format of the password stored in the Password\n  column.\n\no Changes to the account password using SET PASSWORD can be made with\n  PASSWORD(), with old_passwords set to 0 or 1 for 4.1 or pre-4.1\n  password hashing, respectively, or with OLD_PASSWORD(), which uses\n  pre-4.1 password hashing regardless of the value of old_passwords.\n\nCREATE USER examples:\n\no To specify an authentication plugin for an account, use IDENTIFIED\n  WITH auth_plugin. The plugin name can be a quoted string literal or\n  an unquoted name. \'auth_string\' is an optional quoted string literal\n  to pass to the plugin. The plugin interprets the meaning of the\n  string, so its format is plugin specific and it is stored in the\n  authentication_string column as given. (This value is meaningful only\n  for plugins that use that column.) Consult the documentation for a\n  given plugin for information about the authentication string values\n  it accepts, if any.\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED WITH mysql_native_password;\n\n  The server assigns the given authentication plugin to the account but\n  no password. Clients must provide no password when they connect.\n  However, an account with no password is insecure. To ensure that an\n  account uses a specific authentication plugin and has a password with\n  the corresponding hash format, specify the plugin explicitly with\n  IDENTIFIED WITH, then use SET PASSWORD to set the password:\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED WITH mysql_native_password;\nSET old_passwords = 0;\nSET PASSWORD FOR \'jeffrey\'@\'localhost\' = PASSWORD(\'mypass\');\n\n  Changes to the account password using SET PASSWORD with PASSWORD()\n  must be made with the old_passwords system variable set to the value\n  required by the account\'s authentication plugin, so that PASSWORD()\n  uses the appropriate password hashing method. Therefore, to use the\n  mysql_old_password plugin instead, name that plugin in the CREATE\n  USER statement and set old_passwords to 1 before using SET PASSWORD.\n\no To specify a password for an account at account-creation time, use\n  IDENTIFIED BY with the literal cleartext password value:\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED BY \'mypass\';\n\n  The server assigns the given password to the account but no\n  authentication plugin. Clients must provide the password when they\n  connect.\n\no To avoid specifying the cleartext password if you know its hash value\n  (the value that PASSWORD() would return for the password), specify\n  the hash value preceded by the keyword PASSWORD:\n\nCREATE USER \'jeffrey\'@\'localhost\'\nIDENTIFIED BY PASSWORD \'*90E462C37378CED12064BB3388827D2BA3A9B689\';\n\n  The server assigns the given password to the account but no\n  authentication plugin. Clients must provide the password when they\n  connect.\n\no To enable the user to connect with no password, include no IDENTIFIED\n  BY clause:\n\nCREATE USER \'jeffrey\'@\'localhost\';\n\n  The server assigns no authentication plugin or password to the\n  account. Clients must provide no password when they connect. However,\n  an account with no password is insecure. To avoid this, use SET\n  PASSWORD to set the account password.\n\nFor additional information about setting passwords and authentication\nplugins, see\nhttp://dev.mysql.com/doc/refman/5.5/en/assigning-passwords.html, and\nhttp://dev.mysql.com/doc/refman/5.5/en/pluggable-authentication.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-user.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-user.html');
 
375
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (295,10,'CREATE USER','Syntax:\nCREATE USER\n    user [auth_option] [, user [auth_option]] ...\n\nuser:\n    (see )\n\nauth_option: {\n    IDENTIFIED BY \'auth_string\'\n  | IDENTIFIED BY PASSWORD \'hash_string\'\n  | IDENTIFIED WITH auth_plugin\n  | IDENTIFIED WITH auth_plugin AS \'hash_string\'\n}\n\nThe CREATE USER statement creates new MySQL accounts. An error occurs\nif you try to create an account that already exists.\n\nAn account when first created has no privileges.\n\nTo use CREATE USER, you must have the global CREATE USER privilege, or\nthe INSERT privilege for the mysql database. When the read_only system\nvariable is enabled, CREATE USER additionally requires the SUPER\nprivilege.\n\nFor each account, CREATE USER creates a new row in the mysql.user table\nwith no privileges and (as of MySQL 5.5.7) assigns the account an\nauthentication plugin. Depending on the syntax used, CREATE USER may\nalso assign the account a password.\n\nEach user value naming an account may be followed by an optional\nauth_option value that specifies how authentication occurs for clients\nthat use the account. This part of CREATE USER syntax is shared with\nGRANT, so the description here applies to GRANT as well.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.5/en/account-names.html. For example:\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED BY \'mypass\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nThe server assigns an authentication plugin and password to each\naccount as follows, depending on whether the user specification clause\nincludes IDENTIFIED WITH to specify a plugin or IDENTIFIED BY to\nspecify a password:\n\n*Note*: IDENTIFIED WITH is available as of MySQL 5.5.7. Before 5.5.7,\nauthentication plugins are not used, so only the remarks about\nIDENTIFIED BY apply.\n\no With IDENTIFIED WITH, the server assigns the specified plugin and the\n  account has no password. If the optional AS \'hash_string\' clause is\n  also given, the string is stored as is in the authentication_string\n  column (it is assumed to be already hashed in the format required by\n  the plugin).\n\no With IDENTIFIED BY, the server assigns no plugin and assigns the\n  specified password.\n\no With neither IDENTIFIED WITH nor IDENTIFIED BY, the server assigns no\n  plugin and the account has no password.\n\nIf the account has no password, the Password column in the account\'s\nmysql.user table row remains empty, which is insecure. To set the\npassword, use SET PASSWORD. See [HELP SET PASSWORD].\n\nIf the server assigns no plugin to the account, the plugin column in\nthe account\'s mysql.user table row remains empty.\n\nFor client connections that use a given account, the server invokes the\nauthentication plugin assigned to the account and the client must\nprovide credentials as required by the authentication method that the\nplugin implements. If the server cannot find the plugin, either at\naccount-creation time or connect time, an error occurs.\n\nIf an account\'s mysql.user table row has a nonempty plugin column:\n\no The server authenticates client connection attempts using the named\n  plugin.\n\no Changes to the account password using SET PASSWORD with PASSWORD()\n  must be made with the old_passwords system variable set to the value\n  required by the authentication plugin, so that PASSWORD() uses the\n  appropriate password hashing method. If the plugin is\n  mysql_old_password, the password can also be changed using SET\n  PASSWORD with OLD_PASSWORD(), which uses pre-4.1 password hashing\n  regardless of the value of old_passwords.\n\nIf an account\'s mysql.user table row has an empty plugin column:\n\no The server authenticates client connection attempts using the\n  mysql_native_password or mysql_old_password authentication plugin,\n  depending on the hash format of the password stored in the Password\n  column.\n\no Changes to the account password using SET PASSWORD can be made with\n  PASSWORD(), with old_passwords set to 0 or 1 for 4.1 or pre-4.1\n  password hashing, respectively, or with OLD_PASSWORD(), which uses\n  pre-4.1 password hashing regardless of the value of old_passwords.\n\nCREATE USER examples:\n\no To specify an authentication plugin for an account, use IDENTIFIED\n  WITH auth_plugin. The plugin name can be a quoted string literal or\n  an unquoted name. \'auth_string\' is an optional quoted string literal\n  to pass to the plugin. The plugin interprets the meaning of the\n  string, so its format is plugin specific and it is stored in the\n  authentication_string column as given. (This value is meaningful only\n  for plugins that use that column.) Consult the documentation for a\n  given plugin for information about the authentication string values\n  it accepts, if any.\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED WITH mysql_native_password;\n\n  The server assigns the given authentication plugin to the account but\n  no password. Clients must provide no password when they connect.\n  However, an account with no password is insecure. To ensure that an\n  account uses a specific authentication plugin and has a password with\n  the corresponding hash format, specify the plugin explicitly with\n  IDENTIFIED WITH, then use SET PASSWORD to set the password:\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED WITH mysql_native_password;\nSET old_passwords = 0;\nSET PASSWORD FOR \'jeffrey\'@\'localhost\' = PASSWORD(\'mypass\');\n\n  Changes to the account password using SET PASSWORD with PASSWORD()\n  must be made with the old_passwords system variable set to the value\n  required by the account\'s authentication plugin, so that PASSWORD()\n  uses the appropriate password hashing method. Therefore, to use the\n  mysql_old_password plugin instead, name that plugin in the CREATE\n  USER statement and set old_passwords to 1 before using SET PASSWORD.\n\no To specify a password for an account at account-creation time, use\n  IDENTIFIED BY with the literal cleartext password value:\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED BY \'mypass\';\n\n  The server assigns the given password to the account but no\n  authentication plugin. Clients must provide the password when they\n  connect.\n\no To avoid specifying the cleartext password if you know its hash value\n  (the value that PASSWORD() would return for the password), specify\n  the hash value preceded by the keyword PASSWORD:\n\nCREATE USER \'jeffrey\'@\'localhost\'\nIDENTIFIED BY PASSWORD \'*90E462C37378CED12064BB3388827D2BA3A9B689\';\n\n  The server assigns the given password to the account but no\n  authentication plugin. Clients must provide the password when they\n  connect.\n\no To enable the user to connect with no password, include no IDENTIFIED\n  BY clause:\n\nCREATE USER \'jeffrey\'@\'localhost\';\n\n  The server assigns no authentication plugin or password to the\n  account. Clients must provide no password when they connect. However,\n  an account with no password is insecure. To avoid this, use SET\n  PASSWORD to set the account password.\n\nFor additional information about setting passwords and authentication\nplugins, see\nhttp://dev.mysql.com/doc/refman/5.5/en/assigning-passwords.html, and\nhttp://dev.mysql.com/doc/refman/5.5/en/pluggable-authentication.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-user.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-user.html');
376
376
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (296,25,'POINT','Point(x,y)\n\nConstructs a Point using its coordinates.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-mysql-specific-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-mysql-specific-functions.html');
377
377
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (297,38,'LCASE','Syntax:\nLCASE(str)\n\nLCASE() is a synonym for LOWER().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
378
378
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (298,20,'IS NOT NULL','Syntax:\nIS NOT NULL\n\nTests whether a value is not NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT 1 IS NOT NULL, 0 IS NOT NULL, NULL IS NOT NULL;\n        -> 1, 1, 0\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html');
427
427
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (347,32,'TIMESTAMP FUNCTION','Syntax:\nTIMESTAMP(expr), TIMESTAMP(expr1,expr2)\n\nWith a single argument, this function returns the date or datetime\nexpression expr as a datetime value. With two arguments, it adds the\ntime expression expr2 to the date or datetime expression expr1 and\nreturns the result as a datetime value.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT TIMESTAMP(\'2003-12-31\');\n        -> \'2003-12-31 00:00:00\'\nmysql> SELECT TIMESTAMP(\'2003-12-31 12:00:00\',\'12:00:00\');\n        -> \'2004-01-01 00:00:00\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
428
428
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (348,40,'DROP DATABASE','Syntax:\nDROP {DATABASE | SCHEMA} [IF EXISTS] db_name\n\nDROP DATABASE drops all tables in the database and deletes the\ndatabase. Be very careful with this statement! To use DROP DATABASE,\nyou need the DROP privilege on the database. DROP SCHEMA is a synonym\nfor DROP DATABASE.\n\n*Important*: When a database is dropped, user privileges on the\ndatabase are not automatically dropped. See [HELP GRANT].\n\nIF EXISTS is used to prevent an error from occurring if the database\ndoes not exist.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/drop-database.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/drop-database.html');
429
429
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (349,8,'CHANGE MASTER TO','Syntax:\nCHANGE MASTER TO option [, option] ...\n\noption:\n    MASTER_BIND = \'interface_name\'\n  | MASTER_HOST = \'host_name\'\n  | MASTER_USER = \'user_name\'\n  | MASTER_PASSWORD = \'password\'\n  | MASTER_PORT = port_num\n  | MASTER_CONNECT_RETRY = interval\n  | MASTER_HEARTBEAT_PERIOD = interval\n  | MASTER_LOG_FILE = \'master_log_name\'\n  | MASTER_LOG_POS = master_log_pos\n  | RELAY_LOG_FILE = \'relay_log_name\'\n  | RELAY_LOG_POS = relay_log_pos\n  | MASTER_SSL = {0|1}\n  | MASTER_SSL_CA = \'ca_file_name\'\n  | MASTER_SSL_CAPATH = \'ca_directory_name\'\n  | MASTER_SSL_CERT = \'cert_file_name\'\n  | MASTER_SSL_KEY = \'key_file_name\'\n  | MASTER_SSL_CIPHER = \'cipher_list\'\n  | MASTER_SSL_VERIFY_SERVER_CERT = {0|1}\n  | IGNORE_SERVER_IDS = (server_id_list)\n\nserver_id_list:\n    [server_id [, server_id] ... ]\n\nCHANGE MASTER TO changes the parameters that the slave server uses for\nconnecting to the master server, for reading the master binary log, and\nreading the slave relay log. It also updates the contents of the\nmaster.info and relay-log.info files. To use CHANGE MASTER TO, the\nslave replication threads must be stopped (use STOP SLAVE if\nnecessary).\n\nOptions not specified retain their value, except as indicated in the\nfollowing discussion. Thus, in most cases, there is no need to specify\noptions that do not change. For example, if the password to connect to\nyour MySQL master has changed, you just need to issue these statements\nto tell the slave about the new password:\n\nSTOP SLAVE; -- if replication was running\nCHANGE MASTER TO MASTER_PASSWORD=\'new3cret\';\nSTART SLAVE; -- if you want to restart replication\n\nMASTER_HOST, MASTER_USER, MASTER_PASSWORD, and MASTER_PORT provide\ninformation to the slave about how to connect to its master:\n\no MASTER_HOST and MASTER_PORT are the host name (or IP address) of the\n  master host and its TCP/IP port.\n\n  *Note*: Replication cannot use Unix socket files. You must be able to\n  connect to the master MySQL server using TCP/IP.\n\n  If you specify the MASTER_HOST or MASTER_PORT option, the slave\n  assumes that the master server is different from before (even if the\n  option value is the same as its current value.) In this case, the old\n  values for the master binary log file name and position are\n  considered no longer applicable, so if you do not specify\n  MASTER_LOG_FILE and MASTER_LOG_POS in the statement,\n  MASTER_LOG_FILE=\'\' and MASTER_LOG_POS=4 are silently appended to it.\n\n  Setting MASTER_HOST=\'\' (that is, setting its value explicitly to an\n  empty string) is not the same as not setting MASTER_HOST at all.\n  Beginning with MySQL 5.5, trying to set MASTER_HOST to an empty\n  string fails with an error. Previously, setting MASTER_HOST to an\n  empty string caused START SLAVE subsequently to fail. (Bug #28796)\n\no MASTER_USER and MASTER_PASSWORD are the user name and password of the\n  account to use for connecting to the master.\n\n  In MySQL 5.5.20 and later, MASTER_USER cannot be made empty; setting\n  MASTER_USER = \'\' or leaving it unset when setting a value for\n  MASTER_PASSWORD causes an error (Bug #13427949).\n\n  The password used for a MySQL Replication slave account in a CHANGE\n  MASTER TO statement is limited to 32 characters in length; if the\n  password is longer, the statement succeeds, but any excess characters\n  are silently truncated. This is an issue specific to MySQL\n  Replication, which is fixed in MySQL 5.7. (Bug #11752299, Bug #43439)\n\n  The text of a running CHANGE MASTER TO statement, including values\n  for MASTER_USER and MASTER_PASSWORD, can be seen in the output of a\n  concurrent SHOW PROCESSLIST statement.\n\nThe MASTER_SSL_xxx options provide information about using SSL for the\nconnection. They correspond to the --ssl-xxx options described in\nhttp://dev.mysql.com/doc/refman/5.5/en/secure-connection-options.html,\nand\nhttp://dev.mysql.com/doc/refman/5.5/en/replication-solutions-secure-con\nnections.html. These options can be changed even on slaves that are\ncompiled without SSL support. They are saved to the master.info file,\nbut are ignored if the slave does not have SSL support enabled.\n\nMASTER_CONNECT_RETRY specifies how many seconds to wait between connect\nretries. The default is 60. The number of reconnection attempts is\nlimited by the --master-retry-count server option; for more\ninformation, see\nhttp://dev.mysql.com/doc/refman/5.5/en/replication-options.html.\n\nThe MASTER_BIND option is available in MySQL Cluster NDB 7.2 and later,\nbut is not supported in mainline MySQL 5.5.\n\nMASTER_BIND is for use on replication slaves having multiple network\ninterfaces, and determines which of the slave\'s network interfaces is\nchosen for connecting to the master.\n\nMASTER_HEARTBEAT_PERIOD sets the interval in seconds between\nreplication heartbeats. Whenever the master\'s binary log is updated\nwith an event, the waiting period for the next heartbeat is reset.\ninterval is a decimal value having the range 0 to 4294967 seconds and a\nresolution in milliseconds; the smallest nonzero value is 0.001.\nHeartbeats are sent by the master only if there are no unsent events in\nthe binary log file for a period longer than interval.\n\nSetting interval to 0 disables heartbeats altogether. The default value\nfor interval is equal to the value of slave_net_timeout divided by 2.\n\nSetting @@global.slave_net_timeout to a value less than that of the\ncurrent heartbeat interval results in a warning being issued. The\neffect of issuing RESET SLAVE on the heartbeat interval is to reset it\nto the default value.\n\nMASTER_LOG_FILE and MASTER_LOG_POS are the coordinates at which the\nslave I/O thread should begin reading from the master the next time the\nthread starts. RELAY_LOG_FILE and RELAY_LOG_POS are the coordinates at\nwhich the slave SQL thread should begin reading from the relay log the\nnext time the thread starts. If you specify either of MASTER_LOG_FILE\nor MASTER_LOG_POS, you cannot specify RELAY_LOG_FILE or RELAY_LOG_POS.\nIf neither of MASTER_LOG_FILE or MASTER_LOG_POS is specified, the slave\nuses the last coordinates of the slave SQL thread before CHANGE MASTER\nTO was issued. This ensures that there is no discontinuity in\nreplication, even if the slave SQL thread was late compared to the\nslave I/O thread, when you merely want to change, say, the password to\nuse.\n\nCHANGE MASTER TO deletes all relay log files and starts a new one,\nunless you specify RELAY_LOG_FILE or RELAY_LOG_POS. In that case, relay\nlog files are kept; the relay_log_purge global variable is set silently\nto 0.\n\nPrior to MySQL 5.5, RELAY_LOG_FILE required an absolute path. In MySQL\n5.5, the path can be relative, in which case the path is assumed to be\nrelative to the slave\'s data directory. (Bug #12190)\n\nIGNORE_SERVER_IDS was added in MySQL 5.5. This option takes a\ncomma-separated list of 0 or more server IDs. Events originating from\nthe corresponding servers are ignored, with the exception of log\nrotation and deletion events, which are still recorded in the relay\nlog.\n\nIn circular replication, the originating server normally acts as the\nterminator of its own events, so that they are not applied more than\nonce. Thus, this option is useful in circular replication when one of\nthe servers in the circle is removed. Suppose that you have a circular\nreplication setup with 4 servers, having server IDs 1, 2, 3, and 4, and\nserver 3 fails. When bridging the gap by starting replication from\nserver 2 to server 4, you can include IGNORE_SERVER_IDS = (3) in the\nCHANGE MASTER TO statement that you issue on server 4 to tell it to use\nserver 2 as its master instead of server 3. Doing so causes it to\nignore and not to propagate any statements that originated with the\nserver that is no longer in use.\n\nWhen a CHANGE MASTER TO statement is issued without any\nIGNORE_SERVER_IDS option, any existing list is preserved. To clear the\nlist of ignored servers, it is necessary to use the option with an\nempty list:\n\nCHANGE MASTER TO IGNORE_SERVER_IDS = ();\n\nRESET SLAVE ALL has no effect on the server ID list. This issue is\nfixed in MySQL 5.7. (Bug #18816897)\n\nIf IGNORE_SERVER_IDS contains the server\'s own ID and the server was\nstarted with the --replicate-same-server-id option enabled, an error\nresults.\n\nAlso beginning with MySQL 5.5, the master.info file and the output of\nSHOW SLAVE STATUS are extended to provide the list of servers that are\ncurrently ignored. For more information, see\nhttp://dev.mysql.com/doc/refman/5.5/en/slave-logs-status.html, and\n[HELP SHOW SLAVE STATUS].\n\nBeginning with MySQL 5.5.5, invoking CHANGE MASTER TO causes the\nprevious values for MASTER_HOST, MASTER_PORT, MASTER_LOG_FILE, and\nMASTER_LOG_POS to be written to the error log, along with other\ninformation about the slave\'s state prior to execution.\n\nCHANGE MASTER TO is useful for setting up a slave when you have the\nsnapshot of the master and have recorded the master binary log\ncoordinates corresponding to the time of the snapshot. After loading\nthe snapshot into the slave to synchronize it with the master, you can\nrun CHANGE MASTER TO MASTER_LOG_FILE=\'log_name\', MASTER_LOG_POS=log_pos\non the slave to specify the coordinates at which the slave should begin\nreading the master binary log.\n\nThe following example changes the master server the slave uses and\nestablishes the master binary log coordinates from which the slave\nbegins reading. This is used when you want to set up the slave to\nreplicate the master:\n\nCHANGE MASTER TO\n  MASTER_HOST=\'master2.mycompany.com\',\n  MASTER_USER=\'replication\',\n  MASTER_PASSWORD=\'bigs3cret\',\n  MASTER_PORT=3306,\n  MASTER_LOG_FILE=\'master2-bin.001\',\n  MASTER_LOG_POS=4,\n  MASTER_CONNECT_RETRY=10;\n\nThe next example shows an operation that is less frequently employed.\nIt is used when the slave has relay log files that you want it to\nexecute again for some reason. To do this, the master need not be\nreachable. You need only use CHANGE MASTER TO and start the SQL thread\n(START SLAVE SQL_THREAD):\n\nCHANGE MASTER TO\n  RELAY_LOG_FILE=\'slave-relay-bin.006\',\n  RELAY_LOG_POS=4025;\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/change-master-to.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/change-master-to.html');
430
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (350,27,'SHOW GRANTS','Syntax:\nSHOW GRANTS [FOR user]\n\nThis statement displays the GRANT statement or statements that must be\nissued to duplicate the privileges that are granted to a MySQL user\naccount. SHOW GRANTS requires the SELECT privilege for the mysql\ndatabase, except to see the privileges for the current user.\n\nFor output that includes an IDENTIFIED BY PASSWORD clause displaying an\naccount password hash value, the SUPER privilege is required to see the\nactual hash value. Otherwise, the value displays as <secret>.\n\nTo name the account, use the same format as for the GRANT statement;\nfor example, \'jeffrey\'@\'localhost\'. If you specify only the user name\npart of the account name, a host name part of \'%\' is used. For\nadditional information about specifying account names, see [HELP\nGRANT].\n\nmysql> SHOW GRANTS FOR \'root\'@\'localhost\';\n+---------------------------------------------------------------------+\n| Grants for root@localhost                                           |\n+---------------------------------------------------------------------+\n| GRANT ALL PRIVILEGES ON *.* TO \'root\'@\'localhost\' WITH GRANT OPTION |\n+---------------------------------------------------------------------+\n\nTo display the privileges granted to the account that you are using to\nconnect to the server, you can use any of the following statements:\n\nSHOW GRANTS;\nSHOW GRANTS FOR CURRENT_USER;\nSHOW GRANTS FOR CURRENT_USER();\n\nIf SHOW GRANTS FOR CURRENT_USER (or any of the equivalent syntaxes) is\nused in DEFINER context, such as within a stored procedure that is\ndefined with SQL SECURITY DEFINER), the grants displayed are those of\nthe definer and not the invoker.\n\nSHOW GRANTS displays only the privileges granted explicitly to the\nnamed account. Other privileges that might be available to the account\nare not displayed. For example, if an anonymous account exists, the\nnamed account might be able to use its privileges, but SHOW GRANTS will\nnot display them.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-grants.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-grants.html');
 
430
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (350,27,'SHOW GRANTS','Syntax:\nSHOW GRANTS [FOR user]\n\nThis statement displays the privileges that are assigned to a MySQL\nuser account, in the form of GRANT statements that must be executed to\nduplicate the privilege assignments. SHOW GRANTS requires the SELECT\nprivilege for the mysql database, except to see the privileges for the\ncurrent user.\n\nFor output that includes an IDENTIFIED BY PASSWORD clause displaying an\naccount password hash value, the SUPER privilege is required to see the\nactual hash value. Otherwise, the value displays as <secret>.\n\nTo name the account, use the same format as for the GRANT statement;\nfor example, \'jeffrey\'@\'localhost\'. If you specify only the user name\npart of the account name, a host name part of \'%\' is used. For\nadditional information about specifying account names, see [HELP\nGRANT].\n\nmysql> SHOW GRANTS FOR \'root\'@\'localhost\';\n+---------------------------------------------------------------------+\n| Grants for root@localhost                                           |\n+---------------------------------------------------------------------+\n| GRANT ALL PRIVILEGES ON *.* TO \'root\'@\'localhost\' WITH GRANT OPTION |\n+---------------------------------------------------------------------+\n\nTo display the privileges granted to the account that you are using to\nconnect to the server, you can use any of the following statements:\n\nSHOW GRANTS;\nSHOW GRANTS FOR CURRENT_USER;\nSHOW GRANTS FOR CURRENT_USER();\n\nIf SHOW GRANTS FOR CURRENT_USER (or any of the equivalent syntaxes) is\nused in DEFINER context, such as within a stored procedure that is\ndefined with SQL SECURITY DEFINER), the grants displayed are those of\nthe definer and not the invoker.\n\nSHOW GRANTS displays only the privileges granted explicitly to the\nnamed account. Other privileges that might be available to the account\nare not displayed. For example, if an anonymous account exists, the\nnamed account might be able to use its privileges, but SHOW GRANTS will\nnot display them.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-grants.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-grants.html');
431
431
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (351,3,'CRC32','Syntax:\nCRC32(expr)\n\nComputes a cyclic redundancy check value and returns a 32-bit unsigned\nvalue. The result is NULL if the argument is NULL. The argument is\nexpected to be a string and (if possible) is treated as one if it is\nnot.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT CRC32(\'MySQL\');\n        -> 3259397556\nmysql> SELECT CRC32(\'mysql\');\n        -> 2501908538\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html');
432
432
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (352,13,'STARTPOINT','StartPoint(ls)\n\nReturns the Point that is the start point of the LineString value ls.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(StartPoint(GeomFromText(@ls)));\n+---------------------------------------+\n| AsText(StartPoint(GeomFromText(@ls))) |\n+---------------------------------------+\n| POINT(1 1)                            |\n+---------------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html');
433
433
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (353,4,'MPOLYFROMTEXT','MPolyFromText(wkt[,srid]), MultiPolygonFromText(wkt[,srid])\n\nConstructs a MultiPolygon value using its WKT representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html');
439
439
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (359,23,'DECIMAL','DECIMAL[(M[,D])] [UNSIGNED] [ZEROFILL]\n\nA packed "exact" fixed-point number. M is the total number of digits\n(the precision) and D is the number of digits after the decimal point\n(the scale). The decimal point and (for negative numbers) the - sign\nare not counted in M. If D is 0, values have no decimal point or\nfractional part. The maximum number of digits (M) for DECIMAL is 65.\nThe maximum number of supported decimals (D) is 30. If D is omitted,\nthe default is 0. If M is omitted, the default is 10.\n\nUNSIGNED, if specified, disallows negative values.\n\nAll basic calculations (+, -, *, /) with DECIMAL columns are done with\na precision of 65 digits.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html');
440
440
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (360,40,'CREATE FUNCTION','The CREATE FUNCTION statement is used to create stored functions and\nuser-defined functions (UDFs):\n\no For information about creating stored functions, see [HELP CREATE\n  PROCEDURE].\n\no For information about creating user-defined functions, see [HELP\n  CREATE FUNCTION UDF].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-function.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-function.html');
441
441
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (361,20,'<','Syntax:\n<\n\nLess than:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT 2 < 2;\n        -> 0\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html');
442
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (362,12,'MD5','Syntax:\nMD5(str)\n\nCalculates an MD5 128-bit checksum for the string. The value is\nreturned as a string of 32 hex digits, or NULL if the argument was\nNULL. The return value can, for example, be used as a hash key. See the\nnotes at the beginning of this section about storing hash values\nefficiently.\n\nAs of MySQL 5.5.3, the return value is a nonbinary string in the\nconnection character set. Before 5.5.3, the return value is a binary\nstring; see the notes at the beginning of this section about using the\nvalue as a nonbinary string.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','mysql> SELECT MD5(\'testing\');\n        -> \'ae2b1fca515949e5d54fb22b8ed95575\'\n','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html');
 
442
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (362,12,'MD5','Syntax:\nMD5(str)\n\nCalculates an MD5 128-bit checksum for the string. The value is\nreturned as a string of 32 hexadecimal digits, or NULL if the argument\nwas NULL. The return value can, for example, be used as a hash key. See\nthe notes at the beginning of this section about storing hash values\nefficiently.\n\nAs of MySQL 5.5.3, the return value is a nonbinary string in the\nconnection character set. Before 5.5.3, the return value is a binary\nstring; see the notes at the beginning of this section about using the\nvalue as a nonbinary string.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','mysql> SELECT MD5(\'testing\');\n        -> \'ae2b1fca515949e5d54fb22b8ed95575\'\n','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html');
443
443
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (363,32,'DAYOFMONTH','Syntax:\nDAYOFMONTH(date)\n\nReturns the day of the month for date, in the range 1 to 31, or 0 for\ndates such as \'0000-00-00\' or \'2008-00-00\' that have a zero day part.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFMONTH(\'2007-02-03\');\n        -> 3\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
444
444
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (364,32,'UNIX_TIMESTAMP','Syntax:\nUNIX_TIMESTAMP(), UNIX_TIMESTAMP(date)\n\nIf called with no argument, returns a Unix timestamp (seconds since\n\'1970-01-01 00:00:00\' UTC) as an unsigned integer. If UNIX_TIMESTAMP()\nis called with a date argument, it returns the value of the argument as\nseconds since \'1970-01-01 00:00:00\' UTC. date may be a DATE string, a\nDATETIME string, a TIMESTAMP, or a number in the format YYMMDD or\nYYYYMMDD. The server interprets date as a value in the current time\nzone and converts it to an internal value in UTC. Clients can set their\ntime zone as described in\nhttp://dev.mysql.com/doc/refman/5.5/en/time-zone-support.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT UNIX_TIMESTAMP();\n        -> 1447431666\nmysql> SELECT UNIX_TIMESTAMP(\'2015-11-13 10:20:19\');\n        -> 1447431619\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
445
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (365,10,'RENAME USER','Syntax:\nRENAME USER old_user TO new_user\n    [, old_user TO new_user] ...\n\nThe RENAME USER statement renames existing MySQL accounts. An error\noccurs for old accounts that do not exist or new accounts that already\nexist.\n\nTo use RENAME USER, you must have the global CREATE USER privilege or\nthe UPDATE privilege for the mysql database. When the read_only system\nvariable is enabled, RENAME USER additionally requires the SUPER\nprivilege.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.5/en/account-names.html. For example:\n\nRENAME USER \'jeffrey\'@\'localhost\' TO \'jeff\'@\'127.0.0.1\';\n\nIf you specify only the user name part of the account name, a host name\npart of \'%\' is used.\n\nRENAME USER causes the privileges held by the old user to be those held\nby the new user. However, RENAME USER does not automatically drop or\ninvalidate databases or objects within them that the old user created.\nThis includes stored programs or views for which the DEFINER attribute\nnames the old user. Attempts to access such objects may produce an\nerror if they execute in definer security context. (For information\nabout security context, see\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-programs-security.html.)\n\nThe privilege changes take effect as indicated in\nhttp://dev.mysql.com/doc/refman/5.5/en/privilege-changes.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/rename-user.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/rename-user.html');
 
445
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (365,10,'RENAME USER','Syntax:\nRENAME USER old_user TO new_user\n    [, old_user TO new_user] ...\n\nThe RENAME USER statement renames existing MySQL accounts. An error\noccurs for old accounts that do not exist or new accounts that already\nexist.\n\nTo use RENAME USER, you must have the global CREATE USER privilege, or\nthe UPDATE privilege for the mysql database. When the read_only system\nvariable is enabled, RENAME USER additionally requires the SUPER\nprivilege.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.5/en/account-names.html. For example:\n\nRENAME USER \'jeffrey\'@\'localhost\' TO \'jeff\'@\'127.0.0.1\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nRENAME USER causes the privileges held by the old user to be those held\nby the new user. However, RENAME USER does not automatically drop or\ninvalidate databases or objects within them that the old user created.\nThis includes stored programs or views for which the DEFINER attribute\nnames the old user. Attempts to access such objects may produce an\nerror if they execute in definer security context. (For information\nabout security context, see\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-programs-security.html.)\n\nThe privilege changes take effect as indicated in\nhttp://dev.mysql.com/doc/refman/5.5/en/privilege-changes.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/rename-user.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/rename-user.html');
446
446
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (366,13,'NUMPOINTS','NumPoints(ls)\n\nReturns the number of Point objects in the LineString value ls.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT NumPoints(GeomFromText(@ls));\n+------------------------------+\n| NumPoints(GeomFromText(@ls)) |\n+------------------------------+\n|                            3 |\n+------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html');
447
447
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (367,40,'ALTER LOGFILE GROUP','Syntax:\nALTER LOGFILE GROUP logfile_group\n    ADD UNDOFILE \'file_name\'\n    [INITIAL_SIZE [=] size]\n    [WAIT]\n    ENGINE [=] engine_name\n\nThis statement adds an UNDO file named \'file_name\' to an existing log\nfile group logfile_group. An ALTER LOGFILE GROUP statement has one and\nonly one ADD UNDOFILE clause. No DROP UNDOFILE clause is currently\nsupported.\n\n*Note*: All MySQL Cluster Disk Data objects share the same namespace.\nThis means that each Disk Data object must be uniquely named (and not\nmerely each Disk Data object of a given type). For example, you cannot\nhave a tablespace and an undo log file with the same name, or an undo\nlog file and a data file with the same name.\n\nThe optional INITIAL_SIZE parameter sets the UNDO file\'s initial size\nin bytes; if not specified, the initial size defaults to 134217728 (128\nMB). Prior to MySQL Cluster NDB 7.2.14, this value was required to be\nspecified using digits (Bug #13116514, Bug #16104705, Bug #62858); in\nMySQL Cluster NDB 7.2.14 and later, you may optionally follow size with\na one-letter abbreviation for an order of magnitude, similar to those\nused in my.cnf. Generally, this is one of the letters M (megabytes) or\nG (gigabytes).\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nThe minimum allowed value for INITIAL_SIZE is 1048576 (1 MB). (Bug\n#29574)\n\n*Note*: WAIT is parsed but otherwise ignored. This keyword currently\nhas no effect, and is intended for future expansion.\n\nThe ENGINE parameter (required) determines the storage engine which is\nused by this log file group, with engine_name being the name of the\nstorage engine. Currently, the only accepted values for engine_name are\n"NDBCLUSTER" and "NDB". The two values are equivalent.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/alter-logfile-group.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/alter-logfile-group.html');
448
448
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (368,32,'LOCALTIMESTAMP','Syntax:\nLOCALTIMESTAMP, LOCALTIMESTAMP()\n\nLOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for NOW().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
491
491
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (411,2,'AREA','Area(poly)\n\nReturns a double-precision number indicating the area of the argument,\nas measured in its spatial reference system. For arguments of dimension\n0 or 1, the result is 0.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly = \'Polygon((0 0,0 3,3 0,0 0),(1 1,1 2,2 1,1 1))\';\nmysql> SELECT Area(GeomFromText(@poly));\n+---------------------------+\n| Area(GeomFromText(@poly)) |\n+---------------------------+\n|                         4 |\n+---------------------------+\n\nmysql> SET @mpoly =\n    -> \'MultiPolygon(((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1)))\';\nmysql> SELECT Area(GeomFromText(@mpoly));\n+----------------------------+\n| Area(GeomFromText(@mpoly)) |\n+----------------------------+\n|                          8 |\n+----------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-polygon-property-functions.html');
492
492
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (412,8,'START SLAVE','Syntax:\nSTART SLAVE [thread_types]\n\nSTART SLAVE [SQL_THREAD] UNTIL\n    MASTER_LOG_FILE = \'log_name\', MASTER_LOG_POS = log_pos\n\nSTART SLAVE [SQL_THREAD] UNTIL\n    RELAY_LOG_FILE = \'log_name\', RELAY_LOG_POS = log_pos\n\nthread_types:\n    [thread_type [, thread_type] ... ]\n\nthread_type: IO_THREAD | SQL_THREAD\n\nSTART SLAVE with no thread_type options starts both of the slave\nthreads. The I/O thread reads events from the master server and stores\nthem in the relay log. The SQL thread reads events from the relay log\nand executes them. START SLAVE requires the SUPER privilege.\n\nIf START SLAVE succeeds in starting the slave threads, it returns\nwithout any error. However, even in that case, it might be that the\nslave threads start and then later stop (for example, because they do\nnot manage to connect to the master or read its binary log, or some\nother problem). START SLAVE does not warn you about this. You must\ncheck the slave\'s error log for error messages generated by the slave\nthreads, or check that they are running satisfactorily with SHOW SLAVE\nSTATUS.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/start-slave.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/start-slave.html');
493
493
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (413,27,'SHOW WARNINGS','Syntax:\nSHOW WARNINGS [LIMIT [offset,] row_count]\nSHOW COUNT(*) WARNINGS\n\nSHOW WARNINGS is a diagnostic statement that displays information about\nthe conditions (errors, warnings, and notes) resulting from executing a\nstatement in the current session. Warnings are generated for DML\nstatements such as INSERT, UPDATE, and LOAD DATA INFILE as well as DDL\nstatements such as CREATE TABLE and ALTER TABLE.\n\nThe LIMIT clause has the same syntax as for the SELECT statement. See\nhttp://dev.mysql.com/doc/refman/5.5/en/select.html.\n\nSHOW WARNINGS is also used following EXPLAIN EXTENDED, to display the\nextra information generated by EXPLAIN when the EXTENDED keyword is\nused. See http://dev.mysql.com/doc/refman/5.5/en/explain-extended.html.\n\nSHOW WARNINGS displays information about the conditions resulting from\nthe most recent statement in the current session that generated\nmessages. It shows nothing if the most recent statement used a table\nand generated no messages. (That is, statements that use a table but\ngenerate no messages clear the message list.) Statements that do not\nuse tables and do not generate messages have no effect on the message\nlist.\n\nThe SHOW COUNT(*) WARNINGS diagnostic statement displays the total\nnumber of errors, warnings, and notes. You can also retrieve this\nnumber from the warning_count system variable:\n\nSHOW COUNT(*) WARNINGS;\nSELECT @@warning_count;\n\nA related diagnostic statement, SHOW ERRORS, shows only error\nconditions (it excludes warnings and notes), and SHOW COUNT(*) ERRORS\nstatement displays the total number of errors. See [HELP SHOW ERRORS].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-warnings.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-warnings.html');
494
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (414,10,'DROP USER','Syntax:\nDROP USER user [, user] ...\n\nThe DROP USER statement removes one or more MySQL accounts and their\nprivileges. It removes privilege rows for the account from all grant\ntables. An error occurs for accounts that do not exist.\n\nTo use DROP USER, you must have the global CREATE USER privilege or the\nDELETE privilege for the mysql database. When the read_only system\nvariable is enabled, DROP USER additionally requires the SUPER\nprivilege.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.5/en/account-names.html. For example:\n\nDROP USER \'jeffrey\'@\'localhost\';\n\nIf you specify only the user name part of the account name, a host name\npart of \'%\' is used.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/drop-user.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/drop-user.html');
 
494
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (414,10,'DROP USER','Syntax:\nDROP USER user [, user] ...\n\nThe DROP USER statement removes one or more MySQL accounts and their\nprivileges. It removes privilege rows for the account from all grant\ntables. An error occurs for accounts that do not exist.\n\nTo use DROP USER, you must have the global CREATE USER privilege, or\nthe DELETE privilege for the mysql database. When the read_only system\nvariable is enabled, DROP USER additionally requires the SUPER\nprivilege.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.5/en/account-names.html. For example:\n\nDROP USER \'jeffrey\'@\'localhost\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/drop-user.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/drop-user.html');
495
495
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (415,38,'SUBSTRING','Syntax:\nSUBSTRING(str,pos), SUBSTRING(str FROM pos), SUBSTRING(str,pos,len),\nSUBSTRING(str FROM pos FOR len)\n\nThe forms without a len argument return a substring from string str\nstarting at position pos. The forms with a len argument return a\nsubstring len characters long from string str, starting at position\npos. The forms that use FROM are standard SQL syntax. It is also\npossible to use a negative value for pos. In this case, the beginning\nof the substring is pos characters from the end of the string, rather\nthan the beginning. A negative value may be used for pos in any of the\nforms of this function.\n\nFor all forms of SUBSTRING(), the position of the first character in\nthe string from which the substring is to be extracted is reckoned as\n1.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT SUBSTRING(\'Quadratically\',5);\n        -> \'ratically\'\nmysql> SELECT SUBSTRING(\'foobarbar\' FROM 4);\n        -> \'barbar\'\nmysql> SELECT SUBSTRING(\'Quadratically\',5,6);\n        -> \'ratica\'\nmysql> SELECT SUBSTRING(\'Sakila\', -3);\n        -> \'ila\'\nmysql> SELECT SUBSTRING(\'Sakila\', -5, 3);\n        -> \'aki\'\nmysql> SELECT SUBSTRING(\'Sakila\' FROM -4 FOR 2);\n        -> \'ki\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
496
496
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (416,37,'ISEMPTY','IsEmpty(g)\n\nThis function is a placeholder that returns 0 for any valid geometry\nvalue, 1 for any invalid geometry value or NULL.\n\nMySQL does not support GIS EMPTY values such as POINT EMPTY.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-general-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-general-property-functions.html');
497
497
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (417,27,'SHOW FUNCTION STATUS','Syntax:\nSHOW FUNCTION STATUS\n    [LIKE \'pattern\' | WHERE expr]\n\nThis statement is similar to SHOW PROCEDURE STATUS but for stored\nfunctions. See [HELP SHOW PROCEDURE STATUS].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-function-status.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-function-status.html');
503
503
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (423,38,'SUBSTRING_INDEX','Syntax:\nSUBSTRING_INDEX(str,delim,count)\n\nReturns the substring from string str before count occurrences of the\ndelimiter delim. If count is positive, everything to the left of the\nfinal delimiter (counting from the left) is returned. If count is\nnegative, everything to the right of the final delimiter (counting from\nthe right) is returned. SUBSTRING_INDEX() performs a case-sensitive\nmatch when searching for delim.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', 2);\n        -> \'www.mysql\'\nmysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', -2);\n        -> \'mysql.com\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
504
504
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (424,32,'TIMESTAMPADD','Syntax:\nTIMESTAMPADD(unit,interval,datetime_expr)\n\nAdds the integer expression interval to the date or datetime expression\ndatetime_expr. The unit for interval is given by the unit argument,\nwhich should be one of the following values: MICROSECOND\n(microseconds), SECOND, MINUTE, HOUR, DAY, WEEK, MONTH, QUARTER, or\nYEAR.\n\nIt is possible to use FRAC_SECOND in place of MICROSECOND, but\nFRAC_SECOND is deprecated. FRAC_SECOND was removed in MySQL 5.5.3.\n\nThe unit value may be specified using one of keywords as shown, or with\na prefix of SQL_TSI_. For example, DAY and SQL_TSI_DAY both are legal.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT TIMESTAMPADD(MINUTE,1,\'2003-01-02\');\n        -> \'2003-01-02 00:01:00\'\nmysql> SELECT TIMESTAMPADD(WEEK,1,\'2003-01-02\');\n        -> \'2003-01-09\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
505
505
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (425,3,'TRUNCATE','Syntax:\nTRUNCATE(X,D)\n\nReturns the number X, truncated to D decimal places. If D is 0, the\nresult has no decimal point or fractional part. D can be negative to\ncause D digits left of the decimal point of the value X to become zero.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT TRUNCATE(1.223,1);\n        -> 1.2\nmysql> SELECT TRUNCATE(1.999,1);\n        -> 1.9\nmysql> SELECT TRUNCATE(1.999,0);\n        -> 1\nmysql> SELECT TRUNCATE(-1.999,1);\n        -> -1.9\nmysql> SELECT TRUNCATE(122,-2);\n       -> 100\nmysql> SELECT TRUNCATE(10.28*100,0);\n       -> 1028\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html');
506
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (426,27,'SHOW','SHOW has many forms that provide information about databases, tables,\ncolumns, or status information about the server. This section describes\nthose following:\n\nSHOW AUTHORS\nSHOW {BINARY | MASTER} LOGS\nSHOW BINLOG EVENTS [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\nSHOW CHARACTER SET [like_or_where]\nSHOW COLLATION [like_or_where]\nSHOW [FULL] COLUMNS FROM tbl_name [FROM db_name] [like_or_where]\nSHOW CONTRIBUTORS\nSHOW CREATE DATABASE db_name\nSHOW CREATE EVENT event_name\nSHOW CREATE FUNCTION func_name\nSHOW CREATE PROCEDURE proc_name\nSHOW CREATE TABLE tbl_name\nSHOW CREATE TRIGGER trigger_name\nSHOW CREATE VIEW view_name\nSHOW DATABASES [like_or_where]\nSHOW ENGINE engine_name {STATUS | MUTEX}\nSHOW [STORAGE] ENGINES\nSHOW ERRORS [LIMIT [offset,] row_count]\nSHOW EVENTS\nSHOW FUNCTION CODE func_name\nSHOW FUNCTION STATUS [like_or_where]\nSHOW GRANTS FOR user\nSHOW INDEX FROM tbl_name [FROM db_name]\nSHOW MASTER STATUS\nSHOW OPEN TABLES [FROM db_name] [like_or_where]\nSHOW PLUGINS\nSHOW PROCEDURE CODE proc_name\nSHOW PROCEDURE STATUS [like_or_where]\nSHOW PRIVILEGES\nSHOW [FULL] PROCESSLIST\nSHOW PROFILE [types] [FOR QUERY n] [OFFSET n] [LIMIT n]\nSHOW PROFILES\nSHOW RELAYLOG EVENTS [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\nSHOW SLAVE HOSTS\nSHOW SLAVE STATUS\nSHOW [GLOBAL | SESSION] STATUS [like_or_where]\nSHOW TABLE STATUS [FROM db_name] [like_or_where]\nSHOW [FULL] TABLES [FROM db_name] [like_or_where]\nSHOW TRIGGERS [FROM db_name] [like_or_where]\nSHOW [GLOBAL | SESSION] VARIABLES [like_or_where]\nSHOW WARNINGS [LIMIT [offset,] row_count]\n\nlike_or_where:\n    LIKE \'pattern\'\n  | WHERE expr\n\nIf the syntax for a given SHOW statement includes a LIKE \'pattern\'\npart, \'pattern\' is a string that can contain the SQL "%" and "_"\nwildcard characters. The pattern is useful for restricting statement\noutput to matching values.\n\nSeveral SHOW statements also accept a WHERE clause that provides more\nflexibility in specifying which rows to display. See\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show.html');
507
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (427,27,'SHOW VARIABLES','Syntax:\nSHOW [GLOBAL | SESSION] VARIABLES\n    [LIKE \'pattern\' | WHERE expr]\n\nSHOW VARIABLES shows the values of MySQL system variables (see\nhttp://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html).\nThis statement does not require any privilege. It requires only the\nability to connect to the server.\n\nSystem variable information is also available from these sources:\n\no The GLOBAL_VARIABLES and SESSION_VARIABLES tables. See\n  http://dev.mysql.com/doc/refman/5.5/en/variables-table.html.\n\no The mysqladmin variables command. See\n  http://dev.mysql.com/doc/refman/5.5/en/mysqladmin.html.\n\nFor SHOW VARIABLES, a LIKE clause, if present, indicates which variable\nnames to match. A WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nSHOW VARIABLES accepts an optional GLOBAL or SESSION variable scope\nmodifier:\n\no With a GLOBAL modifier, the statement displays global system variable\n  values. These are the values used to initialize the corresponding\n  session variables for new connections to MySQL. As of MySQL 5.5.3, if\n  a variable has no global value, no value is displayed. Before 5.5.3,\n  the session value is displayed.\n\no With a SESSION modifier, the statement displays the system varaible\n  values that are in effect for the current connection. If a variable\n  has no session value, the global value is displayed. LOCAL is a\n  synonym for SESSION.\n\no If no modifier is present, the default is SESSION.\n\nThe scope for each system variable is listed at\nhttp://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html.\n\nSHOW VARIABLES is subject to a version-dependent display-width limit.\nFor variables with very long values that are not completely displayed,\nuse SELECT as a workaround. For example:\n\nSELECT @@GLOBAL.innodb_data_file_path;\n\nMost system variables can be set at server startup (read-only variables\nsuch as version_comment are exceptions). Many can be changed at runtime\nwith the SET statement. See\nhttp://dev.mysql.com/doc/refman/5.5/en/using-system-variables.html, and\n[HELP SET].\nWith a LIKE clause, the statement displays only rows for those\nvariables with names that match the pattern. To obtain the row for a\nspecific variable, use a LIKE clause as shown:\n\nSHOW VARIABLES LIKE \'max_join_size\';\nSHOW SESSION VARIABLES LIKE \'max_join_size\';\n\nTo get a list of variables whose name match a pattern, use the "%"\nwildcard character in a LIKE clause:\n\nSHOW VARIABLES LIKE \'%size%\';\nSHOW GLOBAL VARIABLES LIKE \'%size%\';\n\nWildcard characters can be used in any position within the pattern to\nbe matched. Strictly speaking, because "_" is a wildcard that matches\nany single character, you should escape it as "\\_" to match it\nliterally. In practice, this is rarely necessary.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-variables.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-variables.html');
 
506
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (426,27,'SHOW','SHOW has many forms that provide information about databases, tables,\ncolumns, or status information about the server. This section describes\nthose following:\n\nSHOW AUTHORS\nSHOW {BINARY | MASTER} LOGS\nSHOW BINLOG EVENTS [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\nSHOW CHARACTER SET [like_or_where]\nSHOW COLLATION [like_or_where]\nSHOW [FULL] COLUMNS FROM tbl_name [FROM db_name] [like_or_where]\nSHOW CONTRIBUTORS\nSHOW CREATE DATABASE db_name\nSHOW CREATE EVENT event_name\nSHOW CREATE FUNCTION func_name\nSHOW CREATE PROCEDURE proc_name\nSHOW CREATE TABLE tbl_name\nSHOW CREATE TRIGGER trigger_name\nSHOW CREATE VIEW view_name\nSHOW DATABASES [like_or_where]\nSHOW ENGINE engine_name {STATUS | MUTEX}\nSHOW [STORAGE] ENGINES\nSHOW ERRORS [LIMIT [offset,] row_count]\nSHOW EVENTS\nSHOW FUNCTION CODE func_name\nSHOW FUNCTION STATUS [like_or_where]\nSHOW GRANTS FOR user\nSHOW INDEX FROM tbl_name [FROM db_name]\nSHOW MASTER STATUS\nSHOW OPEN TABLES [FROM db_name] [like_or_where]\nSHOW PLUGINS\nSHOW PROCEDURE CODE proc_name\nSHOW PROCEDURE STATUS [like_or_where]\nSHOW PRIVILEGES\nSHOW [FULL] PROCESSLIST\nSHOW PROFILE [types] [FOR QUERY n] [OFFSET n] [LIMIT n]\nSHOW PROFILES\nSHOW RELAYLOG EVENTS [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\nSHOW SLAVE HOSTS\nSHOW SLAVE STATUS\nSHOW [GLOBAL | SESSION] STATUS [like_or_where]\nSHOW TABLE STATUS [FROM db_name] [like_or_where]\nSHOW [FULL] TABLES [FROM db_name] [like_or_where]\nSHOW TRIGGERS [FROM db_name] [like_or_where]\nSHOW [GLOBAL | SESSION] VARIABLES [like_or_where]\nSHOW WARNINGS [LIMIT [offset,] row_count]\n\nlike_or_where:\n    LIKE \'pattern\'\n  | WHERE expr\n\nIf the syntax for a given SHOW statement includes a LIKE \'pattern\'\npart, \'pattern\' is a string that can contain the SQL % and _ wildcard\ncharacters. The pattern is useful for restricting statement output to\nmatching values.\n\nSeveral SHOW statements also accept a WHERE clause that provides more\nflexibility in specifying which rows to display. See\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show.html');
 
507
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (427,27,'SHOW VARIABLES','Syntax:\nSHOW [GLOBAL | SESSION] VARIABLES\n    [LIKE \'pattern\' | WHERE expr]\n\nSHOW VARIABLES shows the values of MySQL system variables (see\nhttp://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html).\nThis statement does not require any privilege. It requires only the\nability to connect to the server.\n\nSystem variable information is also available from these sources:\n\no The GLOBAL_VARIABLES and SESSION_VARIABLES tables. See\n  http://dev.mysql.com/doc/refman/5.5/en/variables-table.html.\n\no The mysqladmin variables command. See\n  http://dev.mysql.com/doc/refman/5.5/en/mysqladmin.html.\n\nFor SHOW VARIABLES, a LIKE clause, if present, indicates which variable\nnames to match. A WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nSHOW VARIABLES accepts an optional GLOBAL or SESSION variable scope\nmodifier:\n\no With a GLOBAL modifier, the statement displays global system variable\n  values. These are the values used to initialize the corresponding\n  session variables for new connections to MySQL. As of MySQL 5.5.3, if\n  a variable has no global value, no value is displayed. Before 5.5.3,\n  the session value is displayed.\n\no With a SESSION modifier, the statement displays the system varaible\n  values that are in effect for the current connection. If a variable\n  has no session value, the global value is displayed. LOCAL is a\n  synonym for SESSION.\n\no If no modifier is present, the default is SESSION.\n\nThe scope for each system variable is listed at\nhttp://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html.\n\nSHOW VARIABLES is subject to a version-dependent display-width limit.\nFor variables with very long values that are not completely displayed,\nuse SELECT as a workaround. For example:\n\nSELECT @@GLOBAL.innodb_data_file_path;\n\nMost system variables can be set at server startup (read-only variables\nsuch as version_comment are exceptions). Many can be changed at runtime\nwith the SET statement. See\nhttp://dev.mysql.com/doc/refman/5.5/en/using-system-variables.html, and\n[HELP SET].\nWith a LIKE clause, the statement displays only rows for those\nvariables with names that match the pattern. To obtain the row for a\nspecific variable, use a LIKE clause as shown:\n\nSHOW VARIABLES LIKE \'max_join_size\';\nSHOW SESSION VARIABLES LIKE \'max_join_size\';\n\nTo get a list of variables whose name match a pattern, use the %\nwildcard character in a LIKE clause:\n\nSHOW VARIABLES LIKE \'%size%\';\nSHOW GLOBAL VARIABLES LIKE \'%size%\';\n\nWildcard characters can be used in any position within the pattern to\nbe matched. Strictly speaking, because _ is a wildcard that matches any\nsingle character, you should escape it as \\_ to match it literally. In\npractice, this is rarely necessary.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-variables.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-variables.html');
508
508
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (428,27,'BINLOG','Syntax:\nBINLOG \'str\'\n\nBINLOG is an internal-use statement. It is generated by the mysqlbinlog\nprogram as the printable representation of certain events in binary log\nfiles. (See http://dev.mysql.com/doc/refman/5.5/en/mysqlbinlog.html.)\nThe \'str\' value is a base 64-encoded string the that server decodes to\ndetermine the data change indicated by the corresponding event. This\nstatement requires the SUPER privilege.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/binlog.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/binlog.html');
509
509
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (429,3,'ATAN2','Syntax:\nATAN(Y,X), ATAN2(Y,X)\n\nReturns the arc tangent of the two variables X and Y. It is similar to\ncalculating the arc tangent of Y / X, except that the signs of both\narguments are used to determine the quadrant of the result.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT ATAN(-2,2);\n        -> -0.78539816339745\nmysql> SELECT ATAN2(PI(),0);\n        -> 1.5707963267949\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html');
510
510
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (430,15,'AND','Syntax:\nAND, &&\n\nLogical AND. Evaluates to 1 if all operands are nonzero and not NULL,\nto 0 if one or more operands are 0, otherwise NULL is returned.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/logical-operators.html\n\n','mysql> SELECT 1 AND 1;\n        -> 1\nmysql> SELECT 1 AND 0;\n        -> 0\nmysql> SELECT 1 AND NULL;\n        -> NULL\nmysql> SELECT 0 AND NULL;\n        -> 0\nmysql> SELECT NULL AND 0;\n        -> 0\n','http://dev.mysql.com/doc/refman/5.5/en/logical-operators.html');
518
518
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (438,32,'WEEKDAY','Syntax:\nWEEKDAY(date)\n\nReturns the weekday index for date (0 = Monday, 1 = Tuesday, ... 6 =\nSunday).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT WEEKDAY(\'2008-02-03 22:23:00\');\n        -> 6\nmysql> SELECT WEEKDAY(\'2007-11-06\');\n        -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
519
519
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (439,32,'TIME_TO_SEC','Syntax:\nTIME_TO_SEC(time)\n\nReturns the time argument, converted to seconds.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT TIME_TO_SEC(\'22:23:00\');\n        -> 80580\nmysql> SELECT TIME_TO_SEC(\'00:39:38\');\n        -> 2378\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
520
520
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (440,32,'CONVERT_TZ','Syntax:\nCONVERT_TZ(dt,from_tz,to_tz)\n\nCONVERT_TZ() converts a datetime value dt from the time zone given by\nfrom_tz to the time zone given by to_tz and returns the resulting\nvalue. Time zones are specified as described in\nhttp://dev.mysql.com/doc/refman/5.5/en/time-zone-support.html. This\nfunction returns NULL if the arguments are invalid.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT CONVERT_TZ(\'2004-01-01 12:00:00\',\'GMT\',\'MET\');\n        -> \'2004-01-01 13:00:00\'\nmysql> SELECT CONVERT_TZ(\'2004-01-01 12:00:00\',\'+00:00\',\'+10:00\');\n        -> \'2004-01-01 22:00:00\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
521
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (441,38,'EXPORT_SET','Syntax:\nEXPORT_SET(bits,on,off[,separator[,number_of_bits]])\n\nReturns a string such that for every bit set in the value bits, you get\nan on string and for every bit not set in the value, you get an off\nstring. Bits in bits are examined from right to left (from low-order to\nhigh-order bits). Strings are added to the result from left to right,\nseparated by the separator string (the default being the comma\ncharacter ","). The number of bits examined is given by number_of_bits,\nwhich has a default of 64 if not specified. number_of_bits is silently\nclipped to 64 if larger than 64. It is treated as an unsigned integer,\nso a value of −1 is effectively the same as 64.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT EXPORT_SET(5,\'Y\',\'N\',\',\',4);\n        -> \'Y,N,Y,N\'\nmysql> SELECT EXPORT_SET(6,\'1\',\'0\',\',\',10);\n        -> \'0,1,1,0,0,0,0,0,0,0\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
522
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (442,38,'CAST','Syntax:\nCAST(expr AS type)\n\nThe CAST() function takes an expression of any type and produces a\nresult value of a specified type, similar to CONVERT(). See the\ndescription of CONVERT() for more information.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html');
 
521
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (441,38,'EXPORT_SET','Syntax:\nEXPORT_SET(bits,on,off[,separator[,number_of_bits]])\n\nReturns a string such that for every bit set in the value bits, you get\nan on string and for every bit not set in the value, you get an off\nstring. Bits in bits are examined from right to left (from low-order to\nhigh-order bits). Strings are added to the result from left to right,\nseparated by the separator string (the default being the comma\ncharacter ,). The number of bits examined is given by number_of_bits,\nwhich has a default of 64 if not specified. number_of_bits is silently\nclipped to 64 if larger than 64. It is treated as an unsigned integer,\nso a value of −1 is effectively the same as 64.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT EXPORT_SET(5,\'Y\',\'N\',\',\',4);\n        -> \'Y,N,Y,N\'\nmysql> SELECT EXPORT_SET(6,\'1\',\'0\',\',\',10);\n        -> \'0,1,1,0,0,0,0,0,0,0\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
 
522
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (442,38,'CAST','Syntax:\nCAST(expr AS type)\n\nThe CAST() function takes an expression of any type and produces a\nresult value of the specified type, similar to CONVERT(). For more\ninformation, see the description of CONVERT().\n\nCAST() is standard SQL syntax.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html');
523
523
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (443,38,'SOUNDS LIKE','Syntax:\nexpr1 SOUNDS LIKE expr2\n\nThis is the same as SOUNDEX(expr1) = SOUNDEX(expr2).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
524
524
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (444,32,'PERIOD_DIFF','Syntax:\nPERIOD_DIFF(P1,P2)\n\nReturns the number of months between periods P1 and P2. P1 and P2\nshould be in the format YYMM or YYYYMM. Note that the period arguments\nP1 and P2 are not date values.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT PERIOD_DIFF(200802,200703);\n        -> 11\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
525
525
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (445,16,'AVG','Syntax:\nAVG([DISTINCT] expr)\n\nReturns the average value of expr. The DISTINCT option can be used to\nreturn the average of the distinct values of expr.\n\nAVG() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','mysql> SELECT student_name, AVG(test_score)\n    ->        FROM student\n    ->        GROUP BY student_name;\n','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html');
526
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (446,38,'QUOTE','Syntax:\nQUOTE(str)\n\nQuotes a string to produce a result that can be used as a properly\nescaped data value in an SQL statement. The string is returned enclosed\nby single quotation marks and with each instance of backslash ("\\"),\nsingle quote ("\'"), ASCII NUL, and Control+Z preceded by a backslash.\nIf the argument is NULL, the return value is the word "NULL" without\nenclosing single quotation marks.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT QUOTE(\'Don\\\'t!\');\n        -> \'Don\\\'t!\'\nmysql> SELECT QUOTE(NULL);\n        -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
 
526
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (446,38,'QUOTE','Syntax:\nQUOTE(str)\n\nQuotes a string to produce a result that can be used as a properly\nescaped data value in an SQL statement. The string is returned enclosed\nby single quotation marks and with each instance of backslash (\\),\nsingle quote (\'), ASCII NUL, and Control+Z preceded by a backslash. If\nthe argument is NULL, the return value is the word "NULL" without\nenclosing single quotation marks.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT QUOTE(\'Don\\\'t!\');\n        -> \'Don\\\'t!\'\nmysql> SELECT QUOTE(NULL);\n        -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
527
527
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (447,20,'IN','Syntax:\nexpr IN (value,...)\n\nReturns 1 if expr is equal to any of the values in the IN list, else\nreturns 0. If all values are constants, they are evaluated according to\nthe type of expr and sorted. The search for the item then is done using\na binary search. This means IN is very quick if the IN value list\nconsists entirely of constants. Otherwise, type conversion takes place\naccording to the rules described in\nhttp://dev.mysql.com/doc/refman/5.5/en/type-conversion.html, but\napplied to all the arguments.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT 2 IN (0,3,5,7);\n        -> 0\nmysql> SELECT \'wefwf\' IN (\'wee\',\'wefwf\',\'weg\');\n        -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html');
528
528
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (448,32,'QUARTER','Syntax:\nQUARTER(date)\n\nReturns the quarter of the year for date, in the range 1 to 4.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT QUARTER(\'2008-04-01\');\n        -> 2\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
529
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (449,27,'HELP COMMAND','Syntax:\nmysql> help search_string\n\nIf you provide an argument to the help command, mysql uses it as a\nsearch string to access server-side help from the contents of the MySQL\nReference Manual. The proper operation of this command requires that\nthe help tables in the mysql database be initialized with help topic\ninformation (see\nhttp://dev.mysql.com/doc/refman/5.5/en/server-side-help-support.html).\n\nIf there is no match for the search string, the search fails:\n\nmysql> help me\n\nNothing found\nPlease try to run \'help contents\' for a list of all accessible topics\n\nUse help contents to see a list of the help categories:\n\nmysql> help contents\nYou asked for help about help category: "Contents"\nFor more information, type \'help <item>\', where <item> is one of the\nfollowing categories:\n   Account Management\n   Administration\n   Data Definition\n   Data Manipulation\n   Data Types\n   Functions\n   Functions and Modifiers for Use with GROUP BY\n   Geographic Features\n   Language Structure\n   Plugins\n   Storage Engines\n   Stored Routines\n   Table Maintenance\n   Transactions\n   Triggers\n\nIf the search string matches multiple items, mysql shows a list of\nmatching topics:\n\nmysql> help logs\nMany help items for your request exist.\nTo make a more specific request, please type \'help <item>\',\nwhere <item> is one of the following topics:\n   SHOW\n   SHOW BINARY LOGS\n   SHOW ENGINE\n   SHOW LOGS\n\nUse a topic as the search string to see the help entry for that topic:\n\nmysql> help show binary logs\nName: \'SHOW BINARY LOGS\'\nDescription:\nSyntax:\nSHOW BINARY LOGS\nSHOW MASTER LOGS\n\nLists the binary log files on the server. This statement is used as\npart of the procedure described in [purge-binary-logs], that shows how\nto determine which logs can be purged.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name      | File_size |\n+---------------+-----------+\n| binlog.000015 |    724935 |\n| binlog.000016 |    733481 |\n+---------------+-----------+\n\nThe search string can contain the wildcard characters "%" and "_".\nThese have the same meaning as for pattern-matching operations\nperformed with the LIKE operator. For example, HELP rep% returns a list\nof topics that begin with rep:\n\nmysql> HELP rep%\nMany help items for your request exist.\nTo make a more specific request, please type \'help <item>\',\nwhere <item> is one of the following\ntopics:\n   REPAIR TABLE\n   REPEAT FUNCTION\n   REPEAT LOOP\n   REPLACE\n   REPLACE FUNCTION\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mysql-server-side-help.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/mysql-server-side-help.html');
 
529
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (449,27,'HELP COMMAND','Syntax:\nmysql> help search_string\n\nIf you provide an argument to the help command, mysql uses it as a\nsearch string to access server-side help from the contents of the MySQL\nReference Manual. The proper operation of this command requires that\nthe help tables in the mysql database be initialized with help topic\ninformation (see\nhttp://dev.mysql.com/doc/refman/5.5/en/server-side-help-support.html).\n\nIf there is no match for the search string, the search fails:\n\nmysql> help me\n\nNothing found\nPlease try to run \'help contents\' for a list of all accessible topics\n\nUse help contents to see a list of the help categories:\n\nmysql> help contents\nYou asked for help about help category: "Contents"\nFor more information, type \'help <item>\', where <item> is one of the\nfollowing categories:\n   Account Management\n   Administration\n   Data Definition\n   Data Manipulation\n   Data Types\n   Functions\n   Functions and Modifiers for Use with GROUP BY\n   Geographic Features\n   Language Structure\n   Plugins\n   Storage Engines\n   Stored Routines\n   Table Maintenance\n   Transactions\n   Triggers\n\nIf the search string matches multiple items, mysql shows a list of\nmatching topics:\n\nmysql> help logs\nMany help items for your request exist.\nTo make a more specific request, please type \'help <item>\',\nwhere <item> is one of the following topics:\n   SHOW\n   SHOW BINARY LOGS\n   SHOW ENGINE\n   SHOW LOGS\n\nUse a topic as the search string to see the help entry for that topic:\n\nmysql> help show binary logs\nName: \'SHOW BINARY LOGS\'\nDescription:\nSyntax:\nSHOW BINARY LOGS\nSHOW MASTER LOGS\n\nLists the binary log files on the server. This statement is used as\npart of the procedure described in [purge-binary-logs], that shows how\nto determine which logs can be purged.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name      | File_size |\n+---------------+-----------+\n| binlog.000015 |    724935 |\n| binlog.000016 |    733481 |\n+---------------+-----------+\n\nThe search string can contain the wildcard characters % and _. These\nhave the same meaning as for pattern-matching operations performed with\nthe LIKE operator. For example, HELP rep% returns a list of topics that\nbegin with rep:\n\nmysql> HELP rep%\nMany help items for your request exist.\nTo make a more specific request, please type \'help <item>\',\nwhere <item> is one of the following\ntopics:\n   REPAIR TABLE\n   REPEAT FUNCTION\n   REPEAT LOOP\n   REPLACE\n   REPLACE FUNCTION\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mysql-server-side-help.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/mysql-server-side-help.html');
530
530
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (450,38,'POSITION','Syntax:\nPOSITION(substr IN str)\n\nPOSITION(substr IN str) is a synonym for LOCATE(substr,str).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html');
531
531
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (451,14,'IS_USED_LOCK','Syntax:\nIS_USED_LOCK(str)\n\nChecks whether the lock named str is in use (that is, locked). If so,\nit returns the connection identifier of the client session that holds\nthe lock. Otherwise, it returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html');
532
532
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (452,4,'POLYFROMTEXT','PolyFromText(wkt[,srid]), PolygonFromText(wkt[,srid])\n\nConstructs a Polygon value using its WKT representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html');
544
544
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (464,28,'LOAD DATA','Syntax:\nLOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name\'\n    [REPLACE | IGNORE]\n    INTO TABLE tbl_name\n    [CHARACTER SET charset_name]\n    [{FIELDS | COLUMNS}\n        [TERMINATED BY \'string\']\n        [[OPTIONALLY] ENCLOSED BY \'char\']\n        [ESCAPED BY \'char\']\n    ]\n    [LINES\n        [STARTING BY \'string\']\n        [TERMINATED BY \'string\']\n    ]\n    [IGNORE number {LINES | ROWS}]\n    [(col_name_or_user_var,...)]\n    [SET col_name = expr,...]\n\nThe LOAD DATA INFILE statement reads rows from a text file into a table\nat a very high speed. LOAD DATA INFILE is the complement of SELECT ...\nINTO OUTFILE. (See\nhttp://dev.mysql.com/doc/refman/5.5/en/select-into.html.) To write data\nfrom a table to a file, use SELECT ... INTO OUTFILE. To read the file\nback into a table, use LOAD DATA INFILE. The syntax of the FIELDS and\nLINES clauses is the same for both statements. Both clauses are\noptional, but FIELDS must precede LINES if both are specified.\n\nYou can also load data files by using the mysqlimport utility; it\noperates by sending a LOAD DATA INFILE statement to the server. The\n--local option causes mysqlimport to read data files from the client\nhost. You can specify the --compress option to get better performance\nover slow networks if the client and server support the compressed\nprotocol. See http://dev.mysql.com/doc/refman/5.5/en/mysqlimport.html.\n\nFor more information about the efficiency of INSERT versus LOAD DATA\nINFILE and speeding up LOAD DATA INFILE, see\nhttp://dev.mysql.com/doc/refman/5.5/en/insert-speed.html.\n\nThe file name must be given as a literal string. On Windows, specify\nbackslashes in path names as forward slashes or doubled backslashes.\nThe character_set_filesystem system variable controls the\ninterpretation of the file name.\n\nThe server uses the character set indicated by the\ncharacter_set_database system variable to interpret the information in\nthe file. SET NAMES and the setting of character_set_client do not\naffect interpretation of input. If the contents of the input file use a\ncharacter set that differs from the default, it is usually preferable\nto specify the character set of the file by using the CHARACTER SET\nclause. A character set of binary specifies "no conversion."\n\nLOAD DATA INFILE interprets all fields in the file as having the same\ncharacter set, regardless of the data types of the columns into which\nfield values are loaded. For proper interpretation of file contents,\nyou must ensure that it was written with the correct character set. For\nexample, if you write a data file with mysqldump -T or by issuing a\nSELECT ... INTO OUTFILE statement in mysql, be sure to use a\n--default-character-set option so that output is written in the\ncharacter set to be used when the file is loaded with LOAD DATA INFILE.\n\n*Note*: It is not possible to load data files that use the ucs2, utf16,\nor utf32 character set.\n\nIf you use LOW_PRIORITY, execution of the LOAD DATA statement is\ndelayed until no other clients are reading from the table. This affects\nonly storage engines that use only table-level locking (such as MyISAM,\nMEMORY, and MERGE).\n\nIf you specify CONCURRENT with a MyISAM table that satisfies the\ncondition for concurrent inserts (that is, it contains no free blocks\nin the middle), other threads can retrieve data from the table while\nLOAD DATA is executing. This option affects the performance of LOAD\nDATA a bit, even if no other thread is using the table at the same\ntime.\n\nWith row-based replication, CONCURRENT is replicated regardless of\nMySQL version. With statement-based replication CONCURRENT is not\nreplicated prior to MySQL 5.5.1 (see Bug #34628). For more information,\nsee\nhttp://dev.mysql.com/doc/refman/5.5/en/replication-features-load-data.h\ntml.\n\nThe LOCAL keyword affects expected location of the file and error\nhandling, as described later. LOCAL works only if your server and your\nclient both have been configured to permit it. For example, if mysqld\nwas started with --local-infile=0, LOCAL does not work. See\nhttp://dev.mysql.com/doc/refman/5.5/en/load-data-local.html.\n\nThe LOCAL keyword affects where the file is expected to be found:\n\no If LOCAL is specified, the file is read by the client program on the\n  client host and sent to the server. The file can be given as a full\n  path name to specify its exact location. If given as a relative path\n  name, the name is interpreted relative to the directory in which the\n  client program was started.\n\n  When using LOCAL with LOAD DATA, a copy of the file is created in the\n  server\'s temporary directory. This is not the directory determined by\n  the value of tmpdir or slave_load_tmpdir, but rather the operating\n  system\'s temporary directory, and is not configurable in the MySQL\n  Server. (Typically the system temporary directory is /tmp on Linux\n  systems and C:\\WINDOWS\\TEMP on Windows.) Lack of sufficient space for\n  the copy in this directory can cause the LOAD DATA LOCAL statement to\n  fail.\n\no If LOCAL is not specified, the file must be located on the server\n  host and is read directly by the server. The server uses the\n  following rules to locate the file:\n\n  o If the file name is an absolute path name, the server uses it as\n    given.\n\n  o If the file name is a relative path name with one or more leading\n    components, the server searches for the file relative to the\n    server\'s data directory.\n\n  o If a file name with no leading components is given, the server\n    looks for the file in the database directory of the default\n    database.\n\nIn the non-LOCAL case, these rules mean that a file named as\n./myfile.txt is read from the server\'s data directory, whereas the file\nnamed as myfile.txt is read from the database directory of the default\ndatabase. For example, if db1 is the default database, the following\nLOAD DATA statement reads the file data.txt from the database directory\nfor db1, even though the statement explicitly loads the file into a\ntable in the db2 database:\n\nLOAD DATA INFILE \'data.txt\' INTO TABLE db2.my_table;\n\nFor security reasons, when reading text files located on the server,\nthe files must either reside in the database directory or be readable\nby the user account used to run the server. Also, to use LOAD DATA\nINFILE on server files, you must have the FILE privilege. See\nhttp://dev.mysql.com/doc/refman/5.5/en/privileges-provided.html. For\nnon-LOCAL load operations, if the secure_file_priv system variable is\nset to a nonempty directory name, the file to be loaded must be located\nin that directory.\n\nUsing LOCAL is a bit slower than letting the server access the files\ndirectly, because the contents of the file must be sent over the\nconnection by the client to the server. On the other hand, you do not\nneed the FILE privilege to load local files.\n\nLOCAL also affects error handling:\n\no With LOAD DATA INFILE, data-interpretation and duplicate-key errors\n  terminate the operation.\n\no With LOAD DATA LOCAL INFILE, data-interpretation and duplicate-key\n  errors become warnings and the operation continues because the server\n  has no way to stop transmission of the file in the middle of the\n  operation. For duplicate-key errors, this is the same as if IGNORE is\n  specified. IGNORE is explained further later in this section.\n\nThe REPLACE and IGNORE keywords control handling of input rows that\nduplicate existing rows on unique key values:\n\no If you specify REPLACE, input rows replace existing rows. In other\n  words, rows that have the same value for a primary key or unique\n  index as an existing row. See [HELP REPLACE].\n\no If you specify IGNORE, rows that duplicate an existing row on a\n  unique key value are discarded.\n\no If you do not specify either option, the behavior depends on whether\n  the LOCAL keyword is specified. Without LOCAL, an error occurs when a\n  duplicate key value is found, and the rest of the text file is\n  ignored. With LOCAL, the default behavior is the same as if IGNORE is\n  specified; this is because the server has no way to stop transmission\n  of the file in the middle of the operation.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/load-data.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/load-data.html');
545
545
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (465,24,'DECLARE CURSOR','Syntax:\nDECLARE cursor_name CURSOR FOR select_statement\n\nThis statement declares a cursor and associates it with a SELECT\nstatement that retrieves the rows to be traversed by the cursor. To\nfetch the rows later, use a FETCH statement. The number of columns\nretrieved by the SELECT statement must match the number of output\nvariables specified in the FETCH statement.\n\nThe SELECT statement cannot have an INTO clause.\n\nCursor declarations must appear before handler declarations and after\nvariable and condition declarations.\n\nA stored program may contain multiple cursor declarations, but each\ncursor declared in a given block must have a unique name. For an\nexample, see http://dev.mysql.com/doc/refman/5.5/en/cursors.html.\n\nFor information available through SHOW statements, it is possible in\nmany cases to obtain equivalent information by using a cursor with an\nINFORMATION_SCHEMA table.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/declare-cursor.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/declare-cursor.html');
546
546
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (466,32,'LOCALTIME','Syntax:\nLOCALTIME, LOCALTIME()\n\nLOCALTIME and LOCALTIME() are synonyms for NOW().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
547
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (467,12,'SHA1','Syntax:\nSHA1(str), SHA(str)\n\nCalculates an SHA-1 160-bit checksum for the string, as described in\nRFC 3174 (Secure Hash Algorithm). The value is returned as a string of\n40 hex digits, or NULL if the argument was NULL. One of the possible\nuses for this function is as a hash key. See the notes at the beginning\nof this section about storing hash values efficiently. You can also use\nSHA1() as a cryptographic function for storing passwords. SHA() is\nsynonymous with SHA1().\n\nAs of MySQL 5.5.3, the return value is a nonbinary string in the\nconnection character set. Before 5.5.3, the return value is a binary\nstring; see the notes at the beginning of this section about using the\nvalue as a nonbinary string.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','mysql> SELECT SHA1(\'abc\');\n        -> \'a9993e364706816aba3e25717850c26c9cd0d89d\'\n','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html');
 
547
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (467,12,'SHA1','Syntax:\nSHA1(str), SHA(str)\n\nCalculates an SHA-1 160-bit checksum for the string, as described in\nRFC 3174 (Secure Hash Algorithm). The value is returned as a string of\n40 hexadecimal digits, or NULL if the argument was NULL. One of the\npossible uses for this function is as a hash key. See the notes at the\nbeginning of this section about storing hash values efficiently. You\ncan also use SHA1() as a cryptographic function for storing passwords.\nSHA() is synonymous with SHA1().\n\nAs of MySQL 5.5.3, the return value is a nonbinary string in the\nconnection character set. Before 5.5.3, the return value is a binary\nstring; see the notes at the beginning of this section about using the\nvalue as a nonbinary string.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','mysql> SELECT SHA1(\'abc\');\n        -> \'a9993e364706816aba3e25717850c26c9cd0d89d\'\n','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html');
548
548
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (468,23,'BLOB','BLOB[(M)]\n\nA BLOB column with a maximum length of 65,535 (216 − 1) bytes. Each\nBLOB value is stored using a 2-byte length prefix that indicates the\nnumber of bytes in the value.\n\nAn optional length M can be given for this type. If this is done, MySQL\ncreates the column as the smallest BLOB type large enough to hold\nvalues M bytes long.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html');
549
549
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (469,12,'PASSWORD','Syntax:\nPASSWORD(str)\n\nReturns a hashed password string calculated from the cleartext password\nstr. The return value is a nonbinary string in the connection character\nset (a binary string before MySQL 5.5.3), or NULL if the argument is\nNULL. This function is the SQL interface to the algorithm used by the\nserver to encrypt MySQL passwords for storage in the mysql.user grant\ntable.\n\nThe old_passwords system variable controls the password hashing method\nused by the PASSWORD() function. It also influences password hashing\nperformed by CREATE USER and GRANT statements that specify a password\nusing an IDENTIFIED BY clause.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','mysql> SET old_passwords = 0;\nmysql> SELECT PASSWORD(\'mypass\'), OLD_PASSWORD(\'mypass\');\n+-------------------------------------------+------------------------+\n| PASSWORD(\'mypass\')                        | OLD_PASSWORD(\'mypass\') |\n+-------------------------------------------+------------------------+\n| *6C8989366EAF75BB670AD8EA7A7FC1176A95CEF4 | 6f8c114b58f2ce9e       |\n+-------------------------------------------+------------------------+\n\nmysql> SET old_passwords = 1;\nmysql> SELECT PASSWORD(\'mypass\'), OLD_PASSWORD(\'mypass\');\n+--------------------+------------------------+\n| PASSWORD(\'mypass\') | OLD_PASSWORD(\'mypass\') |\n+--------------------+------------------------+\n| 6f8c114b58f2ce9e   | 6f8c114b58f2ce9e       |\n+--------------------+------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html');
550
550
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (470,32,'UTC_DATE','Syntax:\nUTC_DATE, UTC_DATE()\n\nReturns the current UTC date as a value in \'YYYY-MM-DD\' or YYYYMMDD\nformat, depending on whether the function is used in a string or\nnumeric context.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_DATE(), UTC_DATE() + 0;\n        -> \'2003-08-14\', 20030814\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html');
551
551
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (471,37,'DIMENSION','Dimension(g)\n\nReturns the inherent dimension of the geometry value g. The result can\nbe −1, 0, 1, or 2. The meaning of these values is given in\nhttp://dev.mysql.com/doc/refman/5.5/en/gis-class-geometry.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-general-property-functions.html\n\n','mysql> SELECT Dimension(GeomFromText(\'LineString(1 1,2 2)\'));\n+------------------------------------------------+\n| Dimension(GeomFromText(\'LineString(1 1,2 2)\')) |\n+------------------------------------------------+\n|                                              1 |\n+------------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-general-property-functions.html');
552
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (472,23,'BIT','BIT[(M)]\n\nA bit-field type. M indicates the number of bits per value, from 1 to\n64. The default is 1 if M is omitted.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html');
 
552
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (472,23,'BIT','BIT[(M)]\n\nA bit-value type. M indicates the number of bits per value, from 1 to\n64. The default is 1 if M is omitted.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html');
553
553
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (473,31,'EQUALS','Equals(g1,g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially equal to g2.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mbr.html');
554
554
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (474,8,'XA','Syntax:\nXA {START|BEGIN} xid [JOIN|RESUME]\n\nXA END xid [SUSPEND [FOR MIGRATE]]\n\nXA PREPARE xid\n\nXA COMMIT xid [ONE PHASE]\n\nXA ROLLBACK xid\n\nXA RECOVER\n\nFor XA START, the JOIN and RESUME clauses are not supported.\n\nFor XA END the SUSPEND [FOR MIGRATE] clause is not supported.\n\nEach XA statement begins with the XA keyword, and most of them require\nan xid value. An xid is an XA transaction identifier. It indicates\nwhich transaction the statement applies to. xid values are supplied by\nthe client, or generated by the MySQL server. An xid value has from one\nto three parts:\n\nxid: gtrid [, bqual [, formatID ]]\n\ngtrid is a global transaction identifier, bqual is a branch qualifier,\nand formatID is a number that identifies the format used by the gtrid\nand bqual values. As indicated by the syntax, bqual and formatID are\noptional. The default bqual value is \'\' if not given. The default\nformatID value is 1 if not given.\n\ngtrid and bqual must be string literals, each up to 64 bytes (not\ncharacters) long. gtrid and bqual can be specified in several ways. You\ncan use a quoted string (\'ab\'), hex string (X\'6162\', 0x6162), or bit\nvalue (b\'nnnn\').\n\nformatID is an unsigned integer.\n\nThe gtrid and bqual values are interpreted in bytes by the MySQL\nserver\'s underlying XA support routines. However, while an SQL\nstatement containing an XA statement is being parsed, the server works\nwith some specific character set. To be safe, write gtrid and bqual as\nhex strings.\n\nxid values typically are generated by the Transaction Manager. Values\ngenerated by one TM must be different from values generated by other\nTMs. A given TM must be able to recognize its own xid values in a list\nof values returned by the XA RECOVER statement.\n\nFor XA START xid starts an XA transaction with the given xid value.\nEach XA transaction must have a unique xid value, so the value must not\ncurrently be used by another XA transaction. Uniqueness is assessed\nusing the gtrid and bqual values. All following XA statements for the\nXA transaction must be specified using the same xid value as that given\nin the XA START statement. If you use any of those statements but\nspecify an xid value that does not correspond to some existing XA\ntransaction, an error occurs.\n\nOne or more XA transactions can be part of the same global transaction.\nAll XA transactions within a given global transaction must use the same\ngtrid value in the xid value. For this reason, gtrid values must be\nglobally unique so that there is no ambiguity about which global\ntransaction a given XA transaction is part of. The bqual part of the\nxid value must be different for each XA transaction within a global\ntransaction. (The requirement that bqual values be different is a\nlimitation of the current MySQL XA implementation. It is not part of\nthe XA specification.)\n\nThe XA RECOVER statement returns information for those XA transactions\non the MySQL server that are in the PREPARED state. (See\nhttp://dev.mysql.com/doc/refman/5.5/en/xa-states.html.) The output\nincludes a row for each such XA transaction on the server, regardless\nof which client started it.\n\nXA RECOVER output rows look like this (for an example xid value\nconsisting of the parts \'abc\', \'def\', and 7):\n\nmysql> XA RECOVER;\n+----------+--------------+--------------+--------+\n| formatID | gtrid_length | bqual_length | data   |\n+----------+--------------+--------------+--------+\n|        7 |            3 |            3 | abcdef |\n+----------+--------------+--------------+--------+\n\nThe output columns have the following meanings:\n\no formatID is the formatID part of the transaction xid\n\no gtrid_length is the length in bytes of the gtrid part of the xid\n\no bqual_length is the length in bytes of the bqual part of the xid\n\no data is the concatenation of the gtrid and bqual parts of the xid\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/xa-statements.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/xa-statements.html');
555
555
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (475,2,'CENTROID','Centroid(mpoly)\n\nReturns the mathematical centroid for the MultiPolygon value mpoly as a\nPoint. The result is not guaranteed to be on the MultiPolygon.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n    -> GeomFromText(\'POLYGON((0 0,10 0,10 10,0 10,0 0),(5 5,7 5,7 7,5 7,5 5))\');\nmysql> SELECT GeometryType(@poly),AsText(Centroid(@poly));\n+---------------------+--------------------------------------------+\n| GeometryType(@poly) | AsText(Centroid(@poly))                    |\n+---------------------+--------------------------------------------+\n| POLYGON             | POINT(4.958333333333333 4.958333333333333) |\n+---------------------+--------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-polygon-property-functions.html');
589
589
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (509,3,'RADIANS','Syntax:\nRADIANS(X)\n\nReturns the argument X, converted from degrees to radians. (Note that\nπ radians equals 180 degrees.)\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT RADIANS(90);\n        -> 1.5707963267949\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html');
590
590
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (510,17,'COLLATION','Syntax:\nCOLLATION(str)\n\nReturns the collation of the string argument.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','mysql> SELECT COLLATION(\'abc\');\n        -> \'latin1_swedish_ci\'\nmysql> SELECT COLLATION(_utf8\'abc\');\n        -> \'utf8_general_ci\'\n','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html');
591
591
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (511,20,'COALESCE','Syntax:\nCOALESCE(value,...)\n\nReturns the first non-NULL value in the list, or NULL if there are no\nnon-NULL values.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT COALESCE(NULL,1);\n        -> 1\nmysql> SELECT COALESCE(NULL,NULL,NULL);\n        -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html');
592
 
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (512,17,'VERSION','Syntax:\nVERSION()\n\nReturns a string that indicates the MySQL server version. The string\nuses the utf8 character set. The value might have a suffix in addition\nto the version number. See the description of the version system\nvariable in\nhttp://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','mysql> SELECT VERSION();\n        -> \'5.5.54-standard\'\n','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html');
 
592
INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (512,17,'VERSION','Syntax:\nVERSION()\n\nReturns a string that indicates the MySQL server version. The string\nuses the utf8 character set. The value might have a suffix in addition\nto the version number. See the description of the version system\nvariable in\nhttp://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','mysql> SELECT VERSION();\n        -> \'5.5.55-standard\'\n','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html');
593
593
 
594
594
INSERT INTO help_keyword (help_keyword_id,name) VALUES (0,'JOIN');
595
595
INSERT INTO help_keyword (help_keyword_id,name) VALUES (1,'HOST');
842
842
INSERT INTO help_keyword (help_keyword_id,name) VALUES (248,'MERGE');
843
843
INSERT INTO help_keyword (help_keyword_id,name) VALUES (249,'SQL_NO_CACHE');
844
844
INSERT INTO help_keyword (help_keyword_id,name) VALUES (250,'DELAYED');
845
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (251,'WRITE');
846
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (252,'DATABASE');
847
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (253,'NULL');
848
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (254,'POWER');
849
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (255,'POINTFROMWKB');
850
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (256,'USE_FRM');
851
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (257,'TERMINATED');
852
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (258,'NVARCHAR');
853
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (259,'RETURN');
854
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (260,'DIRECTORY');
855
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (261,'AES_DECRYPT');
856
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (262,'GLENGTH');
857
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (263,'SHUTDOWN');
858
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (264,'CATALOG_NAME');
859
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (265,'FIXED');
860
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (266,'MULTIPOLYGONFROMTEXT');
861
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (267,'REPLACE');
862
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (268,'REPEAT');
863
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (269,'STARTS');
864
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (270,'COMPLETION');
865
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (271,'COLUMNS');
866
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (272,'DATETIME');
867
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (273,'MODE');
868
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (274,'INTEGER');
869
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (275,'VALUE');
870
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (276,'ASWKT');
871
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (277,'GEOMETRYCOLLECTIONFROMWKB');
872
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (278,'DROP');
873
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (279,'SQL_BIG_RESULT');
874
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (280,'MASTER_SSL_VERIFY_SERVER_CERT');
875
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (281,'SUBJECT');
876
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (282,'CHECK');
877
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (283,'FULL');
878
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (284,'BY');
879
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (285,'NO');
880
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (286,'DAY');
881
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (287,'DATA');
882
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (288,'PARTITION');
883
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (289,'REAL');
884
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (290,'SHARE');
885
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (291,'LINESTRING');
886
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (292,'MASTER_HEARTBEAT_PERIOD');
887
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (293,'MESSAGE_TEXT');
888
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (294,'COLUMN_NAME');
889
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (295,'LINEFROMTEXT');
890
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (296,'X509');
891
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (297,'WHERE');
892
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (298,'SUBCLASS_ORIGIN');
893
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (299,'EVENT');
894
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (300,'IGNORE');
895
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (301,'SUPER');
896
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (302,'SHA2');
897
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (303,'QUICK');
898
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (304,'SIGNED');
899
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (305,'OFFLINE');
900
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (306,'FALSE');
901
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (307,'POLYGONFROMWKB');
902
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (308,'FORCE');
903
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (309,'CHANGE');
904
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (310,'TO');
905
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (311,'POINT');
906
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (312,'TABLE_NAME');
907
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (313,'VARYING');
908
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (314,'FEDERATED');
909
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (315,'MAX_SIZE');
910
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (316,'HOUR_SECOND');
911
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (317,'GEOMETRYCOLLECTION');
912
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (318,'PROCEDURE');
913
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (319,'AGAINST');
914
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (320,'ENDPOINT');
915
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (321,'LONGBINARY');
916
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (322,'INSERT');
917
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (323,'COUNT');
918
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (324,'PORT');
919
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (325,'MLINEFROMTEXT');
920
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (326,'EXISTS');
921
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (327,'MUTEX');
922
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (328,'RELEASE');
923
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (329,'DEFAULT');
924
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (330,'TYPE');
925
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (331,'NO_WRITE_TO_BINLOG');
926
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (332,'OPTIMIZE');
927
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (333,'SQLSTATE');
928
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (334,'RESET');
929
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (335,'INSTALL');
930
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (336,'BIGINT');
931
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (337,'SET');
932
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (338,'ISSUER');
933
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (339,'STATUS');
934
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (340,'INNER');
935
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (341,'RELAYLOG');
936
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (342,'MRG_MYISAM');
937
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (343,'STOP');
938
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (344,'TRAILING');
939
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (345,'PARTITIONS');
940
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (346,'CASE');
941
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (347,'IO_THREAD');
942
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (348,'DEALLOCATE');
943
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (349,'CIPHER');
944
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (350,'CONTINUE');
945
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (351,'READ');
946
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (352,'MINUTE_SECOND');
947
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (353,'MIN_ROWS');
948
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (354,'FUNCTION');
949
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (355,'CHARSET');
950
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (356,'INT3');
951
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (357,'ADD');
952
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (358,'AVG_ROW_LENGTH');
953
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (359,'ARCHIVE');
954
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (360,'FLOAT4');
955
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (361,'ASTEXT');
956
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (362,'NUMGEOMETRIES');
957
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (363,'VIEW');
958
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (364,'REPEATABLE');
959
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (365,'STARTPOINT');
960
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (366,'CONSTRAINT_CATALOG');
961
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (367,'MPOLYFROMTEXT');
962
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (368,'UNSIGNED');
963
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (369,'DECIMAL');
964
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (370,'INDEXES');
965
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (371,'HOSTS');
966
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (372,'COMMIT');
967
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (373,'SNAPSHOT');
968
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (374,'DECLARE');
969
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (375,'NUMPOINTS');
970
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (376,'LOAD');
971
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (377,'SQL_CACHE');
972
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (378,'COLLATE');
973
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (379,'BYTE');
974
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (380,'LINESTRINGFROMWKB');
975
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (381,'GLOBAL');
976
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (382,'WHEN');
977
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (383,'TOUCHES');
978
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (384,'AS');
979
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (385,'GEOMCOLLFROMTEXT');
980
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (386,'GRANTS');
981
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (387,'OUTER');
982
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (388,'CURSOR_NAME');
983
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (389,'FLOOR');
984
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (390,'WITH');
985
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (391,'STD');
986
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (392,'AFTER');
987
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (393,'DISABLE');
988
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (394,'UNINSTALL');
989
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (395,'POW');
990
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (396,'SONAME');
991
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (397,'INDEX');
992
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (398,'DEFINER');
993
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (399,'MASTER_BIND');
994
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (400,'REMOVE');
995
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (401,'MULTILINESTRINGFROMWKB');
996
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (402,'ONLINE');
997
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (403,'UNDO');
998
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (404,'ZEROFILL');
999
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (405,'CLIENT');
1000
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (406,'MASTER_PASSWORD');
1001
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (407,'RELAY_LOG_FILE');
1002
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (408,'MBRTOUCHES');
1003
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (409,'MASTER_USER');
1004
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (410,'ENGINE');
1005
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (411,'INSERT_METHOD');
1006
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (412,'SQL_CALC_FOUND_ROWS');
1007
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (413,'UNION');
1008
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (414,'MYISAM');
1009
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (415,'DESC');
1010
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (416,'TIME');
1011
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (417,'EXPANSION');
1012
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (418,'NUMERIC');
1013
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (419,'CODE');
1014
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (420,'AREA');
1015
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (421,'LOGFILE');
1016
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (422,'EXTENT_SIZE');
1017
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (423,'INT2');
1018
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (424,'MAX_UPDATES_PER_HOUR');
1019
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (425,'ENDS');
1020
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (426,'ISEMPTY');
1021
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (427,'RECOVER');
1022
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (428,'LOGS');
1023
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (429,'HEAP');
1024
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (430,'BETWEEN');
1025
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (431,'REPAIR');
1026
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (432,'MBRDISJOINT');
1027
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (433,'CALL');
1028
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (434,'VALUES');
1029
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (435,'TRUNCATE');
1030
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (436,'SHOW');
1031
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (437,'BINLOG');
1032
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (438,'AND');
1033
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (439,'HOUR');
1034
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (440,'SELECT');
1035
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (441,'DATABASES');
1036
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (442,'WRAPPER');
1037
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (443,'BOOL');
1038
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (444,'MASTER_PORT');
1039
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (445,'CONCURRENT');
1040
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (446,'HELP');
1041
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (447,'OPTIONS');
1042
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (448,'PROCESS');
1043
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (449,'CONSISTENT');
1044
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (450,'MAX_CONNECTIONS_PER_HOUR');
1045
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (451,'IN');
1046
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (452,'DUMPFILE');
1047
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (453,'POLYFROMTEXT');
1048
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (454,'EXECUTE');
1049
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (455,'CEIL');
1050
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (456,'MASTER_HOST');
1051
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (457,'SERVER');
1052
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (458,'MULTIPOLYGONFROMWKB');
1053
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (459,'MASTER_SSL_CERT');
1054
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (460,'DAY_MINUTE');
1055
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (461,'DATE_SUB');
1056
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (462,'REBUILD');
1057
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (463,'GEOMETRYFROMWKB');
1058
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (464,'PARSER');
1059
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (465,'RENAME');
1060
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (466,'GEOMFROMTEXT');
1061
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (467,'SOCKET');
1062
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (468,'STRAIGHT_JOIN');
1063
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (469,'SHA1');
1064
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (470,'PASSWORD');
1065
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (471,'OFFSET');
1066
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (472,'NEXT');
1067
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (473,'ERRORS');
1068
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (474,'TEMPORARY');
1069
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (475,'SQL_LOG_BIN');
1070
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (476,'DIMENSION');
1071
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (477,'SQL_SMALL_RESULT');
1072
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (478,'COMMITTED');
1073
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (479,'EQUALS');
1074
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (480,'DELAY_KEY_WRITE');
1075
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (481,'BEGIN');
1076
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (482,'XA');
1077
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (483,'PROFILE');
1078
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (484,'CENTROID');
1079
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (485,'MEDIUM');
1080
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (486,'SSL');
1081
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (487,'DAY_HOUR');
1082
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (488,'AES_ENCRYPT');
1083
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (489,'GEOMCOLLROMWKB');
1084
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (490,'CEILING');
1085
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (491,'LINEFROMWKB');
1086
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (492,'GEOMETRYTYPE');
1087
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (493,'SIGNAL');
1088
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (494,'PLUGINS');
1089
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (495,'SAVEPOINT');
1090
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (496,'PRIMARY');
1091
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (497,'LAST');
1092
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (498,'KEYS');
1093
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (499,'MPOINTFROMWKB');
1094
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (500,'LIMIT');
1095
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (501,'KEY');
1096
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (502,'UNTIL');
1097
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (503,'CONSTRAINT_SCHEMA');
1098
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (504,'ANALYZE');
1099
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (505,'CONSTRAINT');
1100
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (506,'SERIAL');
1101
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (507,'ACTION');
1102
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (508,'INITIAL_SIZE');
1103
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (509,'SESSION');
1104
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (510,'SLAVE');
1105
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (511,'ASC');
1106
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (512,'ENABLE');
1107
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (513,'OPTIONALLY');
1108
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (514,'DISTINCT');
1109
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (515,'LOCAL');
1110
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (516,'WHILE');
1111
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (517,'MAX_USER_CONNECTIONS');
1112
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (518,'MASTER_SSL_KEY');
1113
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (519,'NONE');
1114
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (520,'TABLES');
1115
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (521,'<>');
1116
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (522,'RLIKE');
1117
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (523,'TRIGGER');
1118
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (524,'HIGH_PRIORITY');
1119
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (525,'COLLATION');
1120
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (526,'BTREE');
1121
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (527,'COALESCE');
1122
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (528,'FIRST');
1123
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (529,'WAIT');
1124
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (530,'MASTER');
1125
 
INSERT INTO help_keyword (help_keyword_id,name) VALUES (531,'ROW_FORMAT');
 
845
INSERT INTO help_keyword (help_keyword_id,name) VALUES (251,'PROXY');
 
846
INSERT INTO help_keyword (help_keyword_id,name) VALUES (252,'WRITE');
 
847
INSERT INTO help_keyword (help_keyword_id,name) VALUES (253,'DATABASE');
 
848
INSERT INTO help_keyword (help_keyword_id,name) VALUES (254,'NULL');
 
849
INSERT INTO help_keyword (help_keyword_id,name) VALUES (255,'POWER');
 
850
INSERT INTO help_keyword (help_keyword_id,name) VALUES (256,'POINTFROMWKB');
 
851
INSERT INTO help_keyword (help_keyword_id,name) VALUES (257,'USE_FRM');
 
852
INSERT INTO help_keyword (help_keyword_id,name) VALUES (258,'TERMINATED');
 
853
INSERT INTO help_keyword (help_keyword_id,name) VALUES (259,'NVARCHAR');
 
854
INSERT INTO help_keyword (help_keyword_id,name) VALUES (260,'RETURN');
 
855
INSERT INTO help_keyword (help_keyword_id,name) VALUES (261,'DIRECTORY');
 
856
INSERT INTO help_keyword (help_keyword_id,name) VALUES (262,'AES_DECRYPT');
 
857
INSERT INTO help_keyword (help_keyword_id,name) VALUES (263,'GLENGTH');
 
858
INSERT INTO help_keyword (help_keyword_id,name) VALUES (264,'SHUTDOWN');
 
859
INSERT INTO help_keyword (help_keyword_id,name) VALUES (265,'CATALOG_NAME');
 
860
INSERT INTO help_keyword (help_keyword_id,name) VALUES (266,'FIXED');
 
861
INSERT INTO help_keyword (help_keyword_id,name) VALUES (267,'MULTIPOLYGONFROMTEXT');
 
862
INSERT INTO help_keyword (help_keyword_id,name) VALUES (268,'REPLACE');
 
863
INSERT INTO help_keyword (help_keyword_id,name) VALUES (269,'REPEAT');
 
864
INSERT INTO help_keyword (help_keyword_id,name) VALUES (270,'STARTS');
 
865
INSERT INTO help_keyword (help_keyword_id,name) VALUES (271,'COMPLETION');
 
866
INSERT INTO help_keyword (help_keyword_id,name) VALUES (272,'COLUMNS');
 
867
INSERT INTO help_keyword (help_keyword_id,name) VALUES (273,'DATETIME');
 
868
INSERT INTO help_keyword (help_keyword_id,name) VALUES (274,'MODE');
 
869
INSERT INTO help_keyword (help_keyword_id,name) VALUES (275,'INTEGER');
 
870
INSERT INTO help_keyword (help_keyword_id,name) VALUES (276,'VALUE');
 
871
INSERT INTO help_keyword (help_keyword_id,name) VALUES (277,'ASWKT');
 
872
INSERT INTO help_keyword (help_keyword_id,name) VALUES (278,'GEOMETRYCOLLECTIONFROMWKB');
 
873
INSERT INTO help_keyword (help_keyword_id,name) VALUES (279,'DROP');
 
874
INSERT INTO help_keyword (help_keyword_id,name) VALUES (280,'SQL_BIG_RESULT');
 
875
INSERT INTO help_keyword (help_keyword_id,name) VALUES (281,'MASTER_SSL_VERIFY_SERVER_CERT');
 
876
INSERT INTO help_keyword (help_keyword_id,name) VALUES (282,'SUBJECT');
 
877
INSERT INTO help_keyword (help_keyword_id,name) VALUES (283,'CHECK');
 
878
INSERT INTO help_keyword (help_keyword_id,name) VALUES (284,'FULL');
 
879
INSERT INTO help_keyword (help_keyword_id,name) VALUES (285,'BY');
 
880
INSERT INTO help_keyword (help_keyword_id,name) VALUES (286,'NO');
 
881
INSERT INTO help_keyword (help_keyword_id,name) VALUES (287,'DAY');
 
882
INSERT INTO help_keyword (help_keyword_id,name) VALUES (288,'DATA');
 
883
INSERT INTO help_keyword (help_keyword_id,name) VALUES (289,'PARTITION');
 
884
INSERT INTO help_keyword (help_keyword_id,name) VALUES (290,'REAL');
 
885
INSERT INTO help_keyword (help_keyword_id,name) VALUES (291,'SHARE');
 
886
INSERT INTO help_keyword (help_keyword_id,name) VALUES (292,'LINESTRING');
 
887
INSERT INTO help_keyword (help_keyword_id,name) VALUES (293,'MASTER_HEARTBEAT_PERIOD');
 
888
INSERT INTO help_keyword (help_keyword_id,name) VALUES (294,'MESSAGE_TEXT');
 
889
INSERT INTO help_keyword (help_keyword_id,name) VALUES (295,'COLUMN_NAME');
 
890
INSERT INTO help_keyword (help_keyword_id,name) VALUES (296,'LINEFROMTEXT');
 
891
INSERT INTO help_keyword (help_keyword_id,name) VALUES (297,'X509');
 
892
INSERT INTO help_keyword (help_keyword_id,name) VALUES (298,'WHERE');
 
893
INSERT INTO help_keyword (help_keyword_id,name) VALUES (299,'SUBCLASS_ORIGIN');
 
894
INSERT INTO help_keyword (help_keyword_id,name) VALUES (300,'EVENT');
 
895
INSERT INTO help_keyword (help_keyword_id,name) VALUES (301,'IGNORE');
 
896
INSERT INTO help_keyword (help_keyword_id,name) VALUES (302,'SUPER');
 
897
INSERT INTO help_keyword (help_keyword_id,name) VALUES (303,'SHA2');
 
898
INSERT INTO help_keyword (help_keyword_id,name) VALUES (304,'QUICK');
 
899
INSERT INTO help_keyword (help_keyword_id,name) VALUES (305,'SIGNED');
 
900
INSERT INTO help_keyword (help_keyword_id,name) VALUES (306,'OFFLINE');
 
901
INSERT INTO help_keyword (help_keyword_id,name) VALUES (307,'FALSE');
 
902
INSERT INTO help_keyword (help_keyword_id,name) VALUES (308,'POLYGONFROMWKB');
 
903
INSERT INTO help_keyword (help_keyword_id,name) VALUES (309,'FORCE');
 
904
INSERT INTO help_keyword (help_keyword_id,name) VALUES (310,'CHANGE');
 
905
INSERT INTO help_keyword (help_keyword_id,name) VALUES (311,'TO');
 
906
INSERT INTO help_keyword (help_keyword_id,name) VALUES (312,'POINT');
 
907
INSERT INTO help_keyword (help_keyword_id,name) VALUES (313,'TABLE_NAME');
 
908
INSERT INTO help_keyword (help_keyword_id,name) VALUES (314,'VARYING');
 
909
INSERT INTO help_keyword (help_keyword_id,name) VALUES (315,'FEDERATED');
 
910
INSERT INTO help_keyword (help_keyword_id,name) VALUES (316,'MAX_SIZE');
 
911
INSERT INTO help_keyword (help_keyword_id,name) VALUES (317,'HOUR_SECOND');
 
912
INSERT INTO help_keyword (help_keyword_id,name) VALUES (318,'GEOMETRYCOLLECTION');
 
913
INSERT INTO help_keyword (help_keyword_id,name) VALUES (319,'PROCEDURE');
 
914
INSERT INTO help_keyword (help_keyword_id,name) VALUES (320,'AGAINST');
 
915
INSERT INTO help_keyword (help_keyword_id,name) VALUES (321,'ENDPOINT');
 
916
INSERT INTO help_keyword (help_keyword_id,name) VALUES (322,'LONGBINARY');
 
917
INSERT INTO help_keyword (help_keyword_id,name) VALUES (323,'INSERT');
 
918
INSERT INTO help_keyword (help_keyword_id,name) VALUES (324,'COUNT');
 
919
INSERT INTO help_keyword (help_keyword_id,name) VALUES (325,'PORT');
 
920
INSERT INTO help_keyword (help_keyword_id,name) VALUES (326,'MLINEFROMTEXT');
 
921
INSERT INTO help_keyword (help_keyword_id,name) VALUES (327,'EXISTS');
 
922
INSERT INTO help_keyword (help_keyword_id,name) VALUES (328,'MUTEX');
 
923
INSERT INTO help_keyword (help_keyword_id,name) VALUES (329,'RELEASE');
 
924
INSERT INTO help_keyword (help_keyword_id,name) VALUES (330,'DEFAULT');
 
925
INSERT INTO help_keyword (help_keyword_id,name) VALUES (331,'TYPE');
 
926
INSERT INTO help_keyword (help_keyword_id,name) VALUES (332,'NO_WRITE_TO_BINLOG');
 
927
INSERT INTO help_keyword (help_keyword_id,name) VALUES (333,'OPTIMIZE');
 
928
INSERT INTO help_keyword (help_keyword_id,name) VALUES (334,'SQLSTATE');
 
929
INSERT INTO help_keyword (help_keyword_id,name) VALUES (335,'RESET');
 
930
INSERT INTO help_keyword (help_keyword_id,name) VALUES (336,'INSTALL');
 
931
INSERT INTO help_keyword (help_keyword_id,name) VALUES (337,'BIGINT');
 
932
INSERT INTO help_keyword (help_keyword_id,name) VALUES (338,'SET');
 
933
INSERT INTO help_keyword (help_keyword_id,name) VALUES (339,'ISSUER');
 
934
INSERT INTO help_keyword (help_keyword_id,name) VALUES (340,'STATUS');
 
935
INSERT INTO help_keyword (help_keyword_id,name) VALUES (341,'INNER');
 
936
INSERT INTO help_keyword (help_keyword_id,name) VALUES (342,'RELAYLOG');
 
937
INSERT INTO help_keyword (help_keyword_id,name) VALUES (343,'MRG_MYISAM');
 
938
INSERT INTO help_keyword (help_keyword_id,name) VALUES (344,'STOP');
 
939
INSERT INTO help_keyword (help_keyword_id,name) VALUES (345,'TRAILING');
 
940
INSERT INTO help_keyword (help_keyword_id,name) VALUES (346,'PARTITIONS');
 
941
INSERT INTO help_keyword (help_keyword_id,name) VALUES (347,'CASE');
 
942
INSERT INTO help_keyword (help_keyword_id,name) VALUES (348,'IO_THREAD');
 
943
INSERT INTO help_keyword (help_keyword_id,name) VALUES (349,'DEALLOCATE');
 
944
INSERT INTO help_keyword (help_keyword_id,name) VALUES (350,'CIPHER');
 
945
INSERT INTO help_keyword (help_keyword_id,name) VALUES (351,'CONTINUE');
 
946
INSERT INTO help_keyword (help_keyword_id,name) VALUES (352,'READ');
 
947
INSERT INTO help_keyword (help_keyword_id,name) VALUES (353,'MINUTE_SECOND');
 
948
INSERT INTO help_keyword (help_keyword_id,name) VALUES (354,'MIN_ROWS');
 
949
INSERT INTO help_keyword (help_keyword_id,name) VALUES (355,'FUNCTION');
 
950
INSERT INTO help_keyword (help_keyword_id,name) VALUES (356,'CHARSET');
 
951
INSERT INTO help_keyword (help_keyword_id,name) VALUES (357,'INT3');
 
952
INSERT INTO help_keyword (help_keyword_id,name) VALUES (358,'ADD');
 
953
INSERT INTO help_keyword (help_keyword_id,name) VALUES (359,'AVG_ROW_LENGTH');
 
954
INSERT INTO help_keyword (help_keyword_id,name) VALUES (360,'ARCHIVE');
 
955
INSERT INTO help_keyword (help_keyword_id,name) VALUES (361,'FLOAT4');
 
956
INSERT INTO help_keyword (help_keyword_id,name) VALUES (362,'ASTEXT');
 
957
INSERT INTO help_keyword (help_keyword_id,name) VALUES (363,'NUMGEOMETRIES');
 
958
INSERT INTO help_keyword (help_keyword_id,name) VALUES (364,'VIEW');
 
959
INSERT INTO help_keyword (help_keyword_id,name) VALUES (365,'REPEATABLE');
 
960
INSERT INTO help_keyword (help_keyword_id,name) VALUES (366,'STARTPOINT');
 
961
INSERT INTO help_keyword (help_keyword_id,name) VALUES (367,'CONSTRAINT_CATALOG');
 
962
INSERT INTO help_keyword (help_keyword_id,name) VALUES (368,'MPOLYFROMTEXT');
 
963
INSERT INTO help_keyword (help_keyword_id,name) VALUES (369,'UNSIGNED');
 
964
INSERT INTO help_keyword (help_keyword_id,name) VALUES (370,'DECIMAL');
 
965
INSERT INTO help_keyword (help_keyword_id,name) VALUES (371,'INDEXES');
 
966
INSERT INTO help_keyword (help_keyword_id,name) VALUES (372,'HOSTS');
 
967
INSERT INTO help_keyword (help_keyword_id,name) VALUES (373,'COMMIT');
 
968
INSERT INTO help_keyword (help_keyword_id,name) VALUES (374,'SNAPSHOT');
 
969
INSERT INTO help_keyword (help_keyword_id,name) VALUES (375,'DECLARE');
 
970
INSERT INTO help_keyword (help_keyword_id,name) VALUES (376,'NUMPOINTS');
 
971
INSERT INTO help_keyword (help_keyword_id,name) VALUES (377,'LOAD');
 
972
INSERT INTO help_keyword (help_keyword_id,name) VALUES (378,'SQL_CACHE');
 
973
INSERT INTO help_keyword (help_keyword_id,name) VALUES (379,'COLLATE');
 
974
INSERT INTO help_keyword (help_keyword_id,name) VALUES (380,'BYTE');
 
975
INSERT INTO help_keyword (help_keyword_id,name) VALUES (381,'LINESTRINGFROMWKB');
 
976
INSERT INTO help_keyword (help_keyword_id,name) VALUES (382,'GLOBAL');
 
977
INSERT INTO help_keyword (help_keyword_id,name) VALUES (383,'WHEN');
 
978
INSERT INTO help_keyword (help_keyword_id,name) VALUES (384,'TOUCHES');
 
979
INSERT INTO help_keyword (help_keyword_id,name) VALUES (385,'AS');
 
980
INSERT INTO help_keyword (help_keyword_id,name) VALUES (386,'GEOMCOLLFROMTEXT');
 
981
INSERT INTO help_keyword (help_keyword_id,name) VALUES (387,'GRANTS');
 
982
INSERT INTO help_keyword (help_keyword_id,name) VALUES (388,'OUTER');
 
983
INSERT INTO help_keyword (help_keyword_id,name) VALUES (389,'CURSOR_NAME');
 
984
INSERT INTO help_keyword (help_keyword_id,name) VALUES (390,'FLOOR');
 
985
INSERT INTO help_keyword (help_keyword_id,name) VALUES (391,'WITH');
 
986
INSERT INTO help_keyword (help_keyword_id,name) VALUES (392,'STD');
 
987
INSERT INTO help_keyword (help_keyword_id,name) VALUES (393,'AFTER');
 
988
INSERT INTO help_keyword (help_keyword_id,name) VALUES (394,'DISABLE');
 
989
INSERT INTO help_keyword (help_keyword_id,name) VALUES (395,'UNINSTALL');
 
990
INSERT INTO help_keyword (help_keyword_id,name) VALUES (396,'POW');
 
991
INSERT INTO help_keyword (help_keyword_id,name) VALUES (397,'SONAME');
 
992
INSERT INTO help_keyword (help_keyword_id,name) VALUES (398,'INDEX');
 
993
INSERT INTO help_keyword (help_keyword_id,name) VALUES (399,'DEFINER');
 
994
INSERT INTO help_keyword (help_keyword_id,name) VALUES (400,'MASTER_BIND');
 
995
INSERT INTO help_keyword (help_keyword_id,name) VALUES (401,'REMOVE');
 
996
INSERT INTO help_keyword (help_keyword_id,name) VALUES (402,'MULTILINESTRINGFROMWKB');
 
997
INSERT INTO help_keyword (help_keyword_id,name) VALUES (403,'ONLINE');
 
998
INSERT INTO help_keyword (help_keyword_id,name) VALUES (404,'UNDO');
 
999
INSERT INTO help_keyword (help_keyword_id,name) VALUES (405,'ZEROFILL');
 
1000
INSERT INTO help_keyword (help_keyword_id,name) VALUES (406,'CLIENT');
 
1001
INSERT INTO help_keyword (help_keyword_id,name) VALUES (407,'MASTER_PASSWORD');
 
1002
INSERT INTO help_keyword (help_keyword_id,name) VALUES (408,'RELAY_LOG_FILE');
 
1003
INSERT INTO help_keyword (help_keyword_id,name) VALUES (409,'MBRTOUCHES');
 
1004
INSERT INTO help_keyword (help_keyword_id,name) VALUES (410,'MASTER_USER');
 
1005
INSERT INTO help_keyword (help_keyword_id,name) VALUES (411,'ENGINE');
 
1006
INSERT INTO help_keyword (help_keyword_id,name) VALUES (412,'INSERT_METHOD');
 
1007
INSERT INTO help_keyword (help_keyword_id,name) VALUES (413,'SQL_CALC_FOUND_ROWS');
 
1008
INSERT INTO help_keyword (help_keyword_id,name) VALUES (414,'UNION');
 
1009
INSERT INTO help_keyword (help_keyword_id,name) VALUES (415,'MYISAM');
 
1010
INSERT INTO help_keyword (help_keyword_id,name) VALUES (416,'DESC');
 
1011
INSERT INTO help_keyword (help_keyword_id,name) VALUES (417,'TIME');
 
1012
INSERT INTO help_keyword (help_keyword_id,name) VALUES (418,'EXPANSION');
 
1013
INSERT INTO help_keyword (help_keyword_id,name) VALUES (419,'NUMERIC');
 
1014
INSERT INTO help_keyword (help_keyword_id,name) VALUES (420,'CODE');
 
1015
INSERT INTO help_keyword (help_keyword_id,name) VALUES (421,'AREA');
 
1016
INSERT INTO help_keyword (help_keyword_id,name) VALUES (422,'LOGFILE');
 
1017
INSERT INTO help_keyword (help_keyword_id,name) VALUES (423,'EXTENT_SIZE');
 
1018
INSERT INTO help_keyword (help_keyword_id,name) VALUES (424,'INT2');
 
1019
INSERT INTO help_keyword (help_keyword_id,name) VALUES (425,'MAX_UPDATES_PER_HOUR');
 
1020
INSERT INTO help_keyword (help_keyword_id,name) VALUES (426,'ENDS');
 
1021
INSERT INTO help_keyword (help_keyword_id,name) VALUES (427,'ISEMPTY');
 
1022
INSERT INTO help_keyword (help_keyword_id,name) VALUES (428,'RECOVER');
 
1023
INSERT INTO help_keyword (help_keyword_id,name) VALUES (429,'LOGS');
 
1024
INSERT INTO help_keyword (help_keyword_id,name) VALUES (430,'HEAP');
 
1025
INSERT INTO help_keyword (help_keyword_id,name) VALUES (431,'BETWEEN');
 
1026
INSERT INTO help_keyword (help_keyword_id,name) VALUES (432,'REPAIR');
 
1027
INSERT INTO help_keyword (help_keyword_id,name) VALUES (433,'MBRDISJOINT');
 
1028
INSERT INTO help_keyword (help_keyword_id,name) VALUES (434,'CALL');
 
1029
INSERT INTO help_keyword (help_keyword_id,name) VALUES (435,'VALUES');
 
1030
INSERT INTO help_keyword (help_keyword_id,name) VALUES (436,'TRUNCATE');
 
1031
INSERT INTO help_keyword (help_keyword_id,name) VALUES (437,'SHOW');
 
1032
INSERT INTO help_keyword (help_keyword_id,name) VALUES (438,'BINLOG');
 
1033
INSERT INTO help_keyword (help_keyword_id,name) VALUES (439,'AND');
 
1034
INSERT INTO help_keyword (help_keyword_id,name) VALUES (440,'HOUR');
 
1035
INSERT INTO help_keyword (help_keyword_id,name) VALUES (441,'SELECT');
 
1036
INSERT INTO help_keyword (help_keyword_id,name) VALUES (442,'DATABASES');
 
1037
INSERT INTO help_keyword (help_keyword_id,name) VALUES (443,'WRAPPER');
 
1038
INSERT INTO help_keyword (help_keyword_id,name) VALUES (444,'BOOL');
 
1039
INSERT INTO help_keyword (help_keyword_id,name) VALUES (445,'MASTER_PORT');
 
1040
INSERT INTO help_keyword (help_keyword_id,name) VALUES (446,'CONCURRENT');
 
1041
INSERT INTO help_keyword (help_keyword_id,name) VALUES (447,'HELP');
 
1042
INSERT INTO help_keyword (help_keyword_id,name) VALUES (448,'OPTIONS');
 
1043
INSERT INTO help_keyword (help_keyword_id,name) VALUES (449,'PROCESS');
 
1044
INSERT INTO help_keyword (help_keyword_id,name) VALUES (450,'CONSISTENT');
 
1045
INSERT INTO help_keyword (help_keyword_id,name) VALUES (451,'MAX_CONNECTIONS_PER_HOUR');
 
1046
INSERT INTO help_keyword (help_keyword_id,name) VALUES (452,'IN');
 
1047
INSERT INTO help_keyword (help_keyword_id,name) VALUES (453,'DUMPFILE');
 
1048
INSERT INTO help_keyword (help_keyword_id,name) VALUES (454,'POLYFROMTEXT');
 
1049
INSERT INTO help_keyword (help_keyword_id,name) VALUES (455,'EXECUTE');
 
1050
INSERT INTO help_keyword (help_keyword_id,name) VALUES (456,'CEIL');
 
1051
INSERT INTO help_keyword (help_keyword_id,name) VALUES (457,'MASTER_HOST');
 
1052
INSERT INTO help_keyword (help_keyword_id,name) VALUES (458,'SERVER');
 
1053
INSERT INTO help_keyword (help_keyword_id,name) VALUES (459,'MULTIPOLYGONFROMWKB');
 
1054
INSERT INTO help_keyword (help_keyword_id,name) VALUES (460,'MASTER_SSL_CERT');
 
1055
INSERT INTO help_keyword (help_keyword_id,name) VALUES (461,'DAY_MINUTE');
 
1056
INSERT INTO help_keyword (help_keyword_id,name) VALUES (462,'DATE_SUB');
 
1057
INSERT INTO help_keyword (help_keyword_id,name) VALUES (463,'REBUILD');
 
1058
INSERT INTO help_keyword (help_keyword_id,name) VALUES (464,'GEOMETRYFROMWKB');
 
1059
INSERT INTO help_keyword (help_keyword_id,name) VALUES (465,'PARSER');
 
1060
INSERT INTO help_keyword (help_keyword_id,name) VALUES (466,'RENAME');
 
1061
INSERT INTO help_keyword (help_keyword_id,name) VALUES (467,'GEOMFROMTEXT');
 
1062
INSERT INTO help_keyword (help_keyword_id,name) VALUES (468,'SOCKET');
 
1063
INSERT INTO help_keyword (help_keyword_id,name) VALUES (469,'STRAIGHT_JOIN');
 
1064
INSERT INTO help_keyword (help_keyword_id,name) VALUES (470,'SHA1');
 
1065
INSERT INTO help_keyword (help_keyword_id,name) VALUES (471,'PASSWORD');
 
1066
INSERT INTO help_keyword (help_keyword_id,name) VALUES (472,'OFFSET');
 
1067
INSERT INTO help_keyword (help_keyword_id,name) VALUES (473,'NEXT');
 
1068
INSERT INTO help_keyword (help_keyword_id,name) VALUES (474,'ERRORS');
 
1069
INSERT INTO help_keyword (help_keyword_id,name) VALUES (475,'TEMPORARY');
 
1070
INSERT INTO help_keyword (help_keyword_id,name) VALUES (476,'SQL_LOG_BIN');
 
1071
INSERT INTO help_keyword (help_keyword_id,name) VALUES (477,'DIMENSION');
 
1072
INSERT INTO help_keyword (help_keyword_id,name) VALUES (478,'SQL_SMALL_RESULT');
 
1073
INSERT INTO help_keyword (help_keyword_id,name) VALUES (479,'COMMITTED');
 
1074
INSERT INTO help_keyword (help_keyword_id,name) VALUES (480,'EQUALS');
 
1075
INSERT INTO help_keyword (help_keyword_id,name) VALUES (481,'DELAY_KEY_WRITE');
 
1076
INSERT INTO help_keyword (help_keyword_id,name) VALUES (482,'BEGIN');
 
1077
INSERT INTO help_keyword (help_keyword_id,name) VALUES (483,'XA');
 
1078
INSERT INTO help_keyword (help_keyword_id,name) VALUES (484,'PROFILE');
 
1079
INSERT INTO help_keyword (help_keyword_id,name) VALUES (485,'CENTROID');
 
1080
INSERT INTO help_keyword (help_keyword_id,name) VALUES (486,'MEDIUM');
 
1081
INSERT INTO help_keyword (help_keyword_id,name) VALUES (487,'SSL');
 
1082
INSERT INTO help_keyword (help_keyword_id,name) VALUES (488,'DAY_HOUR');
 
1083
INSERT INTO help_keyword (help_keyword_id,name) VALUES (489,'AES_ENCRYPT');
 
1084
INSERT INTO help_keyword (help_keyword_id,name) VALUES (490,'GEOMCOLLROMWKB');
 
1085
INSERT INTO help_keyword (help_keyword_id,name) VALUES (491,'CEILING');
 
1086
INSERT INTO help_keyword (help_keyword_id,name) VALUES (492,'LINEFROMWKB');
 
1087
INSERT INTO help_keyword (help_keyword_id,name) VALUES (493,'GEOMETRYTYPE');
 
1088
INSERT INTO help_keyword (help_keyword_id,name) VALUES (494,'SIGNAL');
 
1089
INSERT INTO help_keyword (help_keyword_id,name) VALUES (495,'PLUGINS');
 
1090
INSERT INTO help_keyword (help_keyword_id,name) VALUES (496,'SAVEPOINT');
 
1091
INSERT INTO help_keyword (help_keyword_id,name) VALUES (497,'PRIMARY');
 
1092
INSERT INTO help_keyword (help_keyword_id,name) VALUES (498,'LAST');
 
1093
INSERT INTO help_keyword (help_keyword_id,name) VALUES (499,'KEYS');
 
1094
INSERT INTO help_keyword (help_keyword_id,name) VALUES (500,'MPOINTFROMWKB');
 
1095
INSERT INTO help_keyword (help_keyword_id,name) VALUES (501,'LIMIT');
 
1096
INSERT INTO help_keyword (help_keyword_id,name) VALUES (502,'KEY');
 
1097
INSERT INTO help_keyword (help_keyword_id,name) VALUES (503,'UNTIL');
 
1098
INSERT INTO help_keyword (help_keyword_id,name) VALUES (504,'CONSTRAINT_SCHEMA');
 
1099
INSERT INTO help_keyword (help_keyword_id,name) VALUES (505,'ANALYZE');
 
1100
INSERT INTO help_keyword (help_keyword_id,name) VALUES (506,'CONSTRAINT');
 
1101
INSERT INTO help_keyword (help_keyword_id,name) VALUES (507,'SERIAL');
 
1102
INSERT INTO help_keyword (help_keyword_id,name) VALUES (508,'ACTION');
 
1103
INSERT INTO help_keyword (help_keyword_id,name) VALUES (509,'INITIAL_SIZE');
 
1104
INSERT INTO help_keyword (help_keyword_id,name) VALUES (510,'SESSION');
 
1105
INSERT INTO help_keyword (help_keyword_id,name) VALUES (511,'SLAVE');
 
1106
INSERT INTO help_keyword (help_keyword_id,name) VALUES (512,'ASC');
 
1107
INSERT INTO help_keyword (help_keyword_id,name) VALUES (513,'ENABLE');
 
1108
INSERT INTO help_keyword (help_keyword_id,name) VALUES (514,'OPTIONALLY');
 
1109
INSERT INTO help_keyword (help_keyword_id,name) VALUES (515,'DISTINCT');
 
1110
INSERT INTO help_keyword (help_keyword_id,name) VALUES (516,'LOCAL');
 
1111
INSERT INTO help_keyword (help_keyword_id,name) VALUES (517,'WHILE');
 
1112
INSERT INTO help_keyword (help_keyword_id,name) VALUES (518,'MAX_USER_CONNECTIONS');
 
1113
INSERT INTO help_keyword (help_keyword_id,name) VALUES (519,'MASTER_SSL_KEY');
 
1114
INSERT INTO help_keyword (help_keyword_id,name) VALUES (520,'NONE');
 
1115
INSERT INTO help_keyword (help_keyword_id,name) VALUES (521,'TABLES');
 
1116
INSERT INTO help_keyword (help_keyword_id,name) VALUES (522,'<>');
 
1117
INSERT INTO help_keyword (help_keyword_id,name) VALUES (523,'RLIKE');
 
1118
INSERT INTO help_keyword (help_keyword_id,name) VALUES (524,'TRIGGER');
 
1119
INSERT INTO help_keyword (help_keyword_id,name) VALUES (525,'HIGH_PRIORITY');
 
1120
INSERT INTO help_keyword (help_keyword_id,name) VALUES (526,'COLLATION');
 
1121
INSERT INTO help_keyword (help_keyword_id,name) VALUES (527,'BTREE');
 
1122
INSERT INTO help_keyword (help_keyword_id,name) VALUES (528,'COALESCE');
 
1123
INSERT INTO help_keyword (help_keyword_id,name) VALUES (529,'FIRST');
 
1124
INSERT INTO help_keyword (help_keyword_id,name) VALUES (530,'WAIT');
 
1125
INSERT INTO help_keyword (help_keyword_id,name) VALUES (531,'MASTER');
 
1126
INSERT INTO help_keyword (help_keyword_id,name) VALUES (532,'ROW_FORMAT');
1126
1127
 
1127
1128
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (0,0);
1128
1129
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,0);
1595
1596
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (260,250);
1596
1597
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,250);
1597
1598
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (501,250);
1598
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (24,251);
1599
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (474,251);
1600
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,252);
1601
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (239,252);
1602
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (330,252);
1603
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (402,252);
1604
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (348,252);
1605
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (111,252);
1606
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (298,253);
1607
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (497,253);
1608
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (191,253);
1609
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (246,254);
1610
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (245,255);
1611
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (235,256);
1612
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,257);
1613
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (140,258);
1614
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (251,259);
1615
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,260);
1616
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (111,260);
1617
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (253,261);
1618
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (256,262);
1619
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,263);
1620
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,264);
1621
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,264);
1622
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (359,265);
1623
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,265);
1624
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (353,266);
1625
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (260,267);
1626
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (321,267);
1627
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,267);
1628
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (123,268);
1629
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (300,269);
1630
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (456,270);
 
1599
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (133,251);
 
1600
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (24,252);
 
1601
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (474,252);
 
1602
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,253);
 
1603
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (239,253);
 
1604
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (330,253);
 
1605
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (402,253);
 
1606
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (348,253);
 
1607
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (111,253);
 
1608
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (298,254);
 
1609
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (497,254);
 
1610
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (191,254);
 
1611
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (246,255);
 
1612
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (245,256);
 
1613
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (235,257);
 
1614
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,258);
 
1615
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (140,259);
 
1616
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (251,260);
 
1617
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,261);
 
1618
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (111,261);
 
1619
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (253,262);
 
1620
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (256,263);
 
1621
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,264);
 
1622
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,265);
 
1623
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,265);
 
1624
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (359,266);
 
1625
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,266);
 
1626
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (353,267);
 
1627
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (260,268);
 
1628
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (321,268);
 
1629
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,268);
 
1630
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (123,269);
1631
1631
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (300,270);
1632
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,271);
1633
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (265,271);
1634
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,271);
1635
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,271);
1636
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,271);
1637
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (121,272);
1638
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (299,273);
1639
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,273);
1640
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (255,274);
1641
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (55,274);
1642
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (121,274);
1643
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,275);
1644
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (260,275);
1645
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,275);
1646
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,275);
1647
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (374,275);
1648
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (343,276);
1649
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (309,277);
1650
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (498,278);
1651
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (271,278);
1652
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (372,278);
1653
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (397,278);
1654
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (6,278);
1655
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (388,278);
1656
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (210,278);
1657
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,278);
1658
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (214,278);
1659
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (462,278);
1660
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (49,278);
1661
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (269,278);
1662
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (142,278);
1663
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (348,278);
1664
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (122,278);
1665
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (414,278);
1666
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,279);
1667
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,280);
1668
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,281);
1669
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (215,282);
1670
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,282);
1671
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,282);
1672
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,283);
1673
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (265,283);
1674
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (160,283);
 
1632
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (456,271);
 
1633
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (300,271);
 
1634
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,272);
 
1635
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (265,272);
 
1636
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,272);
 
1637
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,272);
 
1638
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,272);
 
1639
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (121,273);
 
1640
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (299,274);
 
1641
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,274);
 
1642
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (255,275);
 
1643
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (55,275);
 
1644
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (121,275);
 
1645
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,276);
 
1646
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (260,276);
 
1647
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,276);
 
1648
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,276);
 
1649
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (374,276);
 
1650
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (343,277);
 
1651
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (309,278);
 
1652
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (498,279);
 
1653
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (271,279);
 
1654
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (372,279);
 
1655
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (397,279);
 
1656
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (6,279);
 
1657
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (388,279);
 
1658
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (210,279);
 
1659
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,279);
 
1660
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (214,279);
 
1661
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (462,279);
 
1662
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (49,279);
 
1663
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (269,279);
 
1664
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (142,279);
 
1665
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (348,279);
 
1666
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (122,279);
 
1667
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (414,279);
 
1668
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,280);
 
1669
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,281);
 
1670
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,282);
 
1671
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (215,283);
1675
1672
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,283);
1676
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (484,283);
1677
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (321,284);
1678
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (30,284);
 
1673
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,283);
 
1674
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,284);
 
1675
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (265,284);
 
1676
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (160,284);
1679
1677
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,284);
1680
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (46,284);
1681
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,284);
1682
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,284);
1683
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,284);
1684
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (295,284);
1685
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (433,284);
1686
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,284);
1687
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (497,285);
 
1678
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (484,284);
 
1679
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (321,285);
 
1680
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (30,285);
1688
1681
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,285);
1689
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (195,286);
1690
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (239,287);
1691
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,287);
1692
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (111,287);
1693
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,287);
 
1682
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (46,285);
 
1683
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,285);
 
1684
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,285);
 
1685
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,285);
 
1686
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (295,285);
 
1687
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (433,285);
 
1688
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,285);
 
1689
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (497,286);
 
1690
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,286);
 
1691
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (195,287);
 
1692
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (239,288);
1694
1693
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,288);
1695
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,288);
1696
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (405,289);
1697
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (55,289);
1698
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,290);
1699
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (276,291);
1700
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,292);
1701
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,293);
1702
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,293);
 
1694
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (111,288);
 
1695
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,288);
 
1696
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,289);
 
1697
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,289);
 
1698
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (405,290);
 
1699
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (55,290);
 
1700
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,291);
 
1701
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (276,292);
 
1702
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,293);
1703
1703
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,294);
1704
1704
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,294);
1705
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (283,295);
1706
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,296);
1707
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (30,297);
1708
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (46,297);
1709
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (59,297);
1710
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,298);
1711
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,298);
1712
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (456,299);
1713
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (300,299);
1714
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (397,299);
1715
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (185,299);
1716
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (0,300);
1717
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (321,300);
1718
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,300);
1719
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,300);
1720
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (46,300);
1721
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,300);
1722
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,300);
1723
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,301);
1724
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (288,302);
1725
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (235,303);
1726
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (215,303);
1727
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (30,303);
1728
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (121,304);
1729
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (49,305);
1730
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (110,305);
1731
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,305);
1732
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (200,306);
1733
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (51,307);
1734
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (0,308);
1735
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,309);
1736
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,309);
1737
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (146,310);
1738
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (489,310);
 
1705
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,295);
 
1706
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,295);
 
1707
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (283,296);
 
1708
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,297);
 
1709
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (30,298);
 
1710
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (46,298);
 
1711
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (59,298);
 
1712
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,299);
 
1713
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,299);
 
1714
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (456,300);
 
1715
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (300,300);
 
1716
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (397,300);
 
1717
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (185,300);
 
1718
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (0,301);
 
1719
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (321,301);
 
1720
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,301);
 
1721
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,301);
 
1722
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (46,301);
 
1723
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,301);
 
1724
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,301);
 
1725
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,302);
 
1726
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (288,303);
 
1727
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (235,304);
 
1728
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (215,304);
 
1729
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (30,304);
 
1730
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (121,305);
 
1731
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (49,306);
 
1732
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (110,306);
 
1733
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,306);
 
1734
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (200,307);
 
1735
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (51,308);
 
1736
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (0,309);
1739
1737
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,310);
1740
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (296,311);
1741
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,312);
1742
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,312);
1743
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (140,313);
1744
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,314);
1745
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (103,315);
1746
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (195,316);
1747
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (302,317);
1748
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (12,318);
1749
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,318);
1750
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (226,318);
1751
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (165,318);
1752
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (502,318);
1753
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (462,318);
1754
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (175,318);
1755
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (99,318);
1756
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,318);
1757
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (299,319);
1758
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (305,320);
1759
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (391,321);
1760
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (104,322);
1761
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,322);
1762
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (501,322);
1763
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (164,322);
1764
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (293,323);
1765
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (222,323);
1766
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (413,323);
1767
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (239,324);
1768
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (308,325);
1769
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (330,326);
1770
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (269,326);
1771
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (300,326);
1772
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (397,326);
1773
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (348,326);
1774
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (6,326);
1775
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (388,326);
1776
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,327);
1777
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (436,327);
1778
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (327,328);
1779
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (489,328);
1780
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (474,328);
1781
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (260,329);
1782
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (330,329);
1783
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,329);
1784
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (354,329);
1785
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (111,329);
1786
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,329);
1787
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (374,329);
1788
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,329);
 
1738
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,310);
 
1739
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (146,311);
 
1740
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (489,311);
 
1741
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,311);
 
1742
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (296,312);
 
1743
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,313);
 
1744
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,313);
 
1745
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (140,314);
 
1746
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,315);
 
1747
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (103,316);
 
1748
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (195,317);
 
1749
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (302,318);
 
1750
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (12,319);
 
1751
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,319);
 
1752
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (226,319);
 
1753
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (165,319);
 
1754
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (502,319);
 
1755
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (462,319);
 
1756
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (175,319);
 
1757
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (99,319);
 
1758
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,319);
 
1759
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (299,320);
 
1760
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (305,321);
 
1761
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (391,322);
 
1762
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (104,323);
 
1763
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,323);
 
1764
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (501,323);
 
1765
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (164,323);
 
1766
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (293,324);
 
1767
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (222,324);
 
1768
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (413,324);
 
1769
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (239,325);
 
1770
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (308,326);
 
1771
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (330,327);
 
1772
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (269,327);
 
1773
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (300,327);
 
1774
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (397,327);
 
1775
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (348,327);
 
1776
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (6,327);
 
1777
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (388,327);
 
1778
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,328);
 
1779
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (436,328);
 
1780
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (327,329);
 
1781
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (489,329);
 
1782
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (474,329);
 
1783
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (260,330);
 
1784
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (330,330);
 
1785
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,330);
 
1786
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (354,330);
 
1787
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (111,330);
 
1788
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,330);
 
1789
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (374,330);
1789
1790
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,330);
1790
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (235,331);
1791
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (173,331);
1792
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (313,331);
1793
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (495,331);
 
1791
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,331);
 
1792
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (235,332);
 
1793
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (173,332);
1794
1794
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (313,332);
1795
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,332);
1796
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,333);
1797
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,333);
1798
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (273,334);
1799
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (316,334);
1800
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (143,334);
1801
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (81,334);
1802
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (463,335);
1803
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (116,336);
1804
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (177,337);
1805
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (319,337);
1806
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (292,337);
1807
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (260,337);
1808
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (330,337);
1809
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (321,337);
1810
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,337);
1811
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (250,337);
1812
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,337);
1813
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (252,337);
1814
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (111,337);
1815
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,337);
1816
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,337);
1817
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,337);
1818
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,337);
1819
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (46,337);
1820
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (327,337);
1821
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (497,337);
1822
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (97,337);
1823
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,337);
1824
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (242,337);
1825
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,337);
1826
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,338);
1827
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,339);
1828
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (417,339);
1829
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (436,339);
1830
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (117,339);
1831
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (35,339);
1832
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (175,339);
1833
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (326,339);
1834
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (114,339);
1835
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (0,340);
1836
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (218,341);
1837
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,342);
1838
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (282,343);
1839
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (487,344);
1840
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (137,345);
1841
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (47,346);
1842
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (34,346);
1843
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (282,347);
1844
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (412,347);
1845
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (372,348);
1846
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,349);
1847
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (406,350);
1848
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (229,351);
1849
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (24,351);
1850
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (474,351);
1851
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (59,351);
1852
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (195,352);
1853
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,353);
1854
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (290,354);
1855
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,354);
1856
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (417,354);
1857
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (271,354);
1858
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (55,354);
1859
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (165,354);
1860
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (462,354);
1861
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (203,354);
1862
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (360,354);
1863
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (210,354);
1864
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (370,354);
1865
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (250,355);
1866
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (135,356);
1867
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (103,357);
1868
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (498,357);
1869
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (38,357);
1870
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,357);
1871
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,358);
 
1795
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (495,332);
 
1796
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (313,333);
 
1797
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,333);
 
1798
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,334);
 
1799
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,334);
 
1800
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (273,335);
 
1801
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (316,335);
 
1802
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (143,335);
 
1803
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (81,335);
 
1804
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (463,336);
 
1805
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (116,337);
 
1806
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (177,338);
 
1807
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (319,338);
 
1808
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (292,338);
 
1809
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (260,338);
 
1810
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (330,338);
 
1811
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (321,338);
 
1812
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,338);
 
1813
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (250,338);
 
1814
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,338);
 
1815
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (252,338);
 
1816
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (111,338);
 
1817
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,338);
 
1818
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,338);
 
1819
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,338);
 
1820
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,338);
 
1821
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (46,338);
 
1822
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (327,338);
 
1823
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (497,338);
 
1824
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (97,338);
 
1825
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,338);
 
1826
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (242,338);
 
1827
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,338);
 
1828
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,339);
 
1829
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,340);
 
1830
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (417,340);
 
1831
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (436,340);
 
1832
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (117,340);
 
1833
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (35,340);
 
1834
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (175,340);
 
1835
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (326,340);
 
1836
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (114,340);
 
1837
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (0,341);
 
1838
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (218,342);
 
1839
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,343);
 
1840
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (282,344);
 
1841
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (487,345);
 
1842
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (137,346);
 
1843
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (47,347);
 
1844
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (34,347);
 
1845
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (282,348);
 
1846
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (412,348);
 
1847
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (372,349);
 
1848
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,350);
 
1849
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (406,351);
 
1850
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (229,352);
 
1851
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (24,352);
 
1852
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (474,352);
 
1853
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (59,352);
 
1854
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (195,353);
 
1855
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,354);
 
1856
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (290,355);
 
1857
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,355);
 
1858
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (417,355);
 
1859
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (271,355);
 
1860
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (55,355);
 
1861
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (165,355);
 
1862
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (462,355);
 
1863
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (203,355);
 
1864
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (360,355);
 
1865
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (210,355);
 
1866
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (370,355);
 
1867
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (250,356);
 
1868
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (135,357);
 
1869
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (103,358);
 
1870
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (498,358);
 
1871
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (38,358);
1872
1872
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,358);
1873
1873
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,359);
1874
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (338,360);
1875
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (343,361);
1876
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (346,362);
1877
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (486,363);
1878
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (269,363);
1879
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (87,363);
1880
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (229,364);
1881
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (352,365);
1882
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,366);
1883
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,366);
1884
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (353,367);
1885
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (405,368);
1886
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (255,368);
1887
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (359,368);
1888
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (121,368);
1889
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (266,368);
1890
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (338,368);
1891
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (317,368);
1892
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (85,369);
1893
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (55,369);
 
1874
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,359);
 
1875
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,360);
 
1876
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (338,361);
 
1877
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (343,362);
 
1878
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (346,363);
 
1879
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (486,364);
 
1880
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (269,364);
 
1881
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (87,364);
 
1882
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (229,365);
 
1883
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (352,366);
 
1884
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,367);
 
1885
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,367);
 
1886
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (353,368);
 
1887
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (405,369);
 
1888
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (255,369);
 
1889
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (359,369);
1894
1890
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (121,369);
1895
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,370);
1896
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (328,371);
 
1891
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (266,369);
 
1892
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (338,369);
 
1893
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (317,369);
 
1894
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (85,370);
 
1895
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (55,370);
 
1896
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (121,370);
1897
1897
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,371);
1898
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (327,372);
1899
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (474,372);
 
1898
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (328,372);
 
1899
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,372);
1900
1900
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (327,373);
1901
1901
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (474,373);
1902
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (406,374);
1903
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (344,374);
1904
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (465,374);
1905
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (354,374);
1906
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (366,375);
1907
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (399,376);
1908
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,376);
1909
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,377);
1910
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (330,378);
1911
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,378);
1912
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (111,378);
1913
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (493,379);
1914
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (483,380);
1915
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (319,381);
1916
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (229,381);
1917
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (97,381);
1918
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (427,381);
1919
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (326,381);
1920
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (47,382);
1921
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (34,382);
1922
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (373,383);
1923
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (0,384);
1924
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (24,384);
1925
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,384);
1926
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (376,385);
1927
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,386);
1928
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (350,386);
1929
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (0,387);
1930
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,388);
1931
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,388);
1932
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (116,389);
1933
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (299,390);
1934
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,390);
1935
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (110,390);
1936
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,390);
1937
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,390);
1938
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (380,391);
1939
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,392);
1940
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (456,393);
1941
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (300,393);
 
1902
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (327,374);
 
1903
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (474,374);
 
1904
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (406,375);
 
1905
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (344,375);
 
1906
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (465,375);
 
1907
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (354,375);
 
1908
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (366,376);
 
1909
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (399,377);
 
1910
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,377);
 
1911
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,378);
 
1912
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (330,379);
 
1913
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,379);
 
1914
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (111,379);
 
1915
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (493,380);
 
1916
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (483,381);
 
1917
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (319,382);
 
1918
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (229,382);
 
1919
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (97,382);
 
1920
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (427,382);
 
1921
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (326,382);
 
1922
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (47,383);
 
1923
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (34,383);
 
1924
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (373,384);
 
1925
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (0,385);
 
1926
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (24,385);
 
1927
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,385);
 
1928
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (376,386);
 
1929
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,387);
 
1930
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (350,387);
 
1931
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (0,388);
 
1932
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,389);
 
1933
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,389);
 
1934
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (116,390);
 
1935
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (299,391);
 
1936
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,391);
 
1937
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (110,391);
 
1938
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,391);
 
1939
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,391);
 
1940
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (380,392);
1942
1941
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,393);
1943
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (158,394);
1944
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (387,395);
1945
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (55,396);
1946
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,397);
1947
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (0,397);
1948
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,397);
1949
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (399,397);
1950
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (49,397);
1951
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (57,397);
1952
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (38,397);
1953
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (403,397);
1954
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (110,397);
1955
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,397);
1956
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (456,398);
1957
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (300,398);
1958
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,399);
1959
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,400);
1960
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (149,401);
1961
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (49,402);
1962
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (110,402);
1963
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,402);
1964
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (406,403);
1965
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (405,404);
1966
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (255,404);
1967
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (359,404);
1968
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (266,404);
1969
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (338,404);
1970
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (317,404);
1971
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,405);
1972
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,406);
 
1942
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (456,394);
 
1943
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (300,394);
 
1944
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,394);
 
1945
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (158,395);
 
1946
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (387,396);
 
1947
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (55,397);
 
1948
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,398);
 
1949
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (0,398);
 
1950
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,398);
 
1951
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (399,398);
 
1952
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (49,398);
 
1953
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (57,398);
 
1954
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (38,398);
 
1955
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (403,398);
 
1956
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (110,398);
 
1957
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,398);
 
1958
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (456,399);
 
1959
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (300,399);
 
1960
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,400);
 
1961
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,401);
 
1962
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (149,402);
 
1963
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (49,403);
 
1964
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (110,403);
 
1965
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,403);
 
1966
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (406,404);
 
1967
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (405,405);
 
1968
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (255,405);
 
1969
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (359,405);
 
1970
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (266,405);
 
1971
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (338,405);
 
1972
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (317,405);
 
1973
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,406);
1973
1974
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,407);
1974
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (396,408);
1975
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,409);
1976
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (103,410);
1977
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (498,410);
1978
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,410);
1979
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (436,410);
1980
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,410);
1981
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (214,410);
1982
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,410);
 
1975
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,408);
 
1976
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (396,409);
 
1977
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,410);
 
1978
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (103,411);
 
1979
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (498,411);
 
1980
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,411);
 
1981
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (436,411);
1983
1982
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,411);
1984
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,412);
1985
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (400,413);
1986
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,414);
1987
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,415);
1988
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (137,415);
1989
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (433,415);
1990
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (407,416);
1991
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (194,416);
1992
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (121,416);
1993
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (299,417);
1994
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (359,418);
1995
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (290,419);
1996
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (502,419);
1997
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (411,420);
1998
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (103,421);
1999
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (278,421);
2000
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (367,421);
2001
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (122,421);
 
1983
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (214,411);
 
1984
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,411);
 
1985
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,412);
 
1986
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,413);
 
1987
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (400,414);
 
1988
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,415);
 
1989
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,416);
 
1990
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (137,416);
 
1991
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (433,416);
 
1992
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (407,417);
 
1993
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (194,417);
 
1994
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (121,417);
 
1995
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (299,418);
 
1996
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (359,419);
 
1997
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (290,420);
 
1998
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (502,420);
 
1999
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (411,421);
2002
2000
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (103,422);
2003
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (124,423);
2004
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,424);
2005
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (300,425);
2006
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (416,426);
2007
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (474,427);
2008
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (25,428);
2009
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,428);
2010
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (146,428);
2011
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,429);
2012
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (78,430);
2013
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (235,431);
2014
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,431);
2015
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (419,432);
2016
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (421,433);
2017
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (260,434);
2018
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,434);
2019
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (410,435);
2020
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,435);
2021
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (102,436);
2022
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (290,436);
2023
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (177,436);
2024
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (293,436);
2025
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (417,436);
2026
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (4,436);
2027
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (323,436);
2028
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (150,436);
2029
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (7,436);
2030
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (390,436);
2031
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (326,436);
2032
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (114,436);
2033
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (12,436);
2034
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,436);
2035
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (265,436);
2036
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (427,436);
2037
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (45,436);
2038
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (117,436);
2039
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (17,436);
2040
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (328,436);
2041
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (160,436);
2042
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (185,436);
2043
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (218,436);
2044
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (22,436);
2045
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (436,436);
2046
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (88,436);
2047
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (502,436);
2048
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (248,436);
2049
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (25,436);
2050
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (505,436);
2051
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (402,436);
2052
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (403,436);
2053
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (91,436);
2054
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (35,436);
2055
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (203,436);
2056
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (175,436);
2057
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (413,436);
2058
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (66,436);
2059
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (350,436);
2060
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (484,436);
 
2001
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (278,422);
 
2002
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (367,422);
 
2003
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (122,422);
 
2004
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (103,423);
 
2005
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (124,424);
 
2006
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,425);
 
2007
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (300,426);
 
2008
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (416,427);
 
2009
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (474,428);
 
2010
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (25,429);
 
2011
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,429);
 
2012
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (146,429);
 
2013
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,430);
 
2014
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (78,431);
 
2015
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (235,432);
 
2016
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,432);
 
2017
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (419,433);
 
2018
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (421,434);
 
2019
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (260,435);
 
2020
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,435);
 
2021
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (410,436);
 
2022
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,436);
 
2023
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (102,437);
 
2024
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (290,437);
 
2025
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (177,437);
 
2026
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (293,437);
 
2027
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (417,437);
 
2028
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (4,437);
 
2029
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (323,437);
 
2030
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (150,437);
 
2031
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (7,437);
 
2032
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (390,437);
 
2033
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (326,437);
 
2034
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (114,437);
 
2035
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (12,437);
 
2036
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,437);
 
2037
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (265,437);
 
2038
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (427,437);
 
2039
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (45,437);
 
2040
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (117,437);
 
2041
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (17,437);
 
2042
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (328,437);
 
2043
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (160,437);
 
2044
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (185,437);
 
2045
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (218,437);
 
2046
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (22,437);
 
2047
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (436,437);
 
2048
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (88,437);
 
2049
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (502,437);
 
2050
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (248,437);
 
2051
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (25,437);
 
2052
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (505,437);
 
2053
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (402,437);
 
2054
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (403,437);
 
2055
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (91,437);
 
2056
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (35,437);
 
2057
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (203,437);
 
2058
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (175,437);
 
2059
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (413,437);
2061
2060
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (66,437);
2062
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (428,437);
2063
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (430,438);
2064
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (78,438);
2065
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (195,439);
2066
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (260,440);
2067
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,440);
2068
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,440);
2069
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (164,440);
2070
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (137,440);
2071
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,441);
2072
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (88,441);
2073
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (239,442);
2074
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (62,443);
2075
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (266,443);
2076
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,444);
2077
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (321,445);
2078
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,445);
2079
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (449,446);
2080
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (64,446);
2081
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (192,447);
2082
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (239,447);
2083
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,448);
2084
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (327,449);
2085
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (474,449);
2086
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,450);
2087
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (218,451);
2088
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (299,451);
2089
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (66,451);
2090
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,451);
 
2061
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (350,437);
 
2062
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (484,437);
 
2063
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (66,438);
 
2064
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (428,438);
 
2065
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (430,439);
 
2066
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (78,439);
 
2067
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (195,440);
 
2068
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (260,441);
 
2069
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,441);
 
2070
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,441);
 
2071
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (164,441);
 
2072
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (137,441);
 
2073
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,442);
 
2074
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (88,442);
 
2075
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (239,443);
 
2076
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (62,444);
 
2077
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (266,444);
 
2078
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,445);
 
2079
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (321,446);
 
2080
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,446);
 
2081
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (449,447);
 
2082
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (64,447);
 
2083
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (192,448);
 
2084
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (239,448);
 
2085
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,449);
 
2086
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (327,450);
 
2087
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (474,450);
 
2088
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,451);
 
2089
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (218,452);
 
2090
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (299,452);
 
2091
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (66,452);
2091
2092
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,452);
2092
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (452,453);
2093
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (48,454);
2094
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,454);
2095
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (454,455);
2096
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,456);
2097
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (192,457);
2098
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (239,457);
2099
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (6,457);
2100
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (67,458);
2101
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,459);
2102
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (195,460);
 
2093
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,453);
 
2094
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (452,454);
 
2095
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (48,455);
 
2096
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,455);
 
2097
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (454,456);
 
2098
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,457);
 
2099
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (192,458);
 
2100
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (239,458);
 
2101
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (6,458);
 
2102
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (67,459);
 
2103
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,460);
2103
2104
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (195,461);
2104
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,462);
2105
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (77,463);
2106
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,464);
2107
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (110,464);
2108
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,464);
2109
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (456,465);
2110
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (61,465);
2111
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (365,465);
 
2105
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (195,462);
 
2106
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,463);
 
2107
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (77,464);
 
2108
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,465);
 
2109
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (110,465);
2112
2110
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,465);
2113
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (459,466);
2114
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (239,467);
2115
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (0,468);
2116
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,468);
2117
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (467,469);
2118
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (239,470);
2119
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (242,470);
2120
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,470);
2121
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (295,470);
2122
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,471);
2123
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (59,472);
2124
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (293,473);
2125
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,473);
2126
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (388,474);
2127
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (252,475);
2128
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (471,476);
2129
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,477);
2130
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (229,478);
2131
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (473,479);
2132
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,480);
2133
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (327,481);
2134
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (174,481);
2135
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (474,481);
 
2111
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (456,466);
 
2112
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (61,466);
 
2113
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (365,466);
 
2114
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,466);
 
2115
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (459,467);
 
2116
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (239,468);
 
2117
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (0,469);
 
2118
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,469);
 
2119
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (467,470);
 
2120
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (239,471);
 
2121
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (242,471);
 
2122
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,471);
 
2123
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (295,471);
 
2124
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,472);
 
2125
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (59,473);
 
2126
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (293,474);
 
2127
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,474);
 
2128
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (388,475);
 
2129
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (252,476);
 
2130
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (471,477);
 
2131
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,478);
 
2132
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (229,479);
 
2133
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (473,480);
 
2134
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,481);
 
2135
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (327,482);
 
2136
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (174,482);
2136
2137
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (474,482);
2137
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (248,483);
2138
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (475,484);
2139
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (215,485);
2140
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,486);
2141
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (195,487);
2142
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (478,488);
2143
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (309,489);
2144
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (482,490);
2145
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (483,491);
2146
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (485,492);
2147
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,493);
2148
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (22,494);
2149
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (489,495);
2150
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,496);
2151
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (59,497);
2152
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,498);
2153
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (403,498);
2154
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,498);
2155
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (490,499);
2156
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (218,500);
2157
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (30,500);
2158
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (66,500);
2159
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,500);
2160
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (46,500);
2161
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (59,500);
2162
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (497,501);
2163
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (38,501);
2164
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,501);
2165
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,501);
2166
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,501);
2167
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (123,502);
2168
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,503);
2169
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,503);
2170
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (495,504);
2171
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,504);
2172
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,505);
 
2138
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (474,483);
 
2139
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (248,484);
 
2140
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (475,485);
 
2141
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (215,486);
 
2142
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,487);
 
2143
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (195,488);
 
2144
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (478,489);
 
2145
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (309,490);
 
2146
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (482,491);
 
2147
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (483,492);
 
2148
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (485,493);
 
2149
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,494);
 
2150
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (22,495);
 
2151
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (489,496);
 
2152
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,497);
 
2153
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (59,498);
 
2154
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,499);
 
2155
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (403,499);
 
2156
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,499);
 
2157
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (490,500);
 
2158
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (218,501);
 
2159
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (30,501);
 
2160
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (66,501);
 
2161
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,501);
 
2162
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (46,501);
 
2163
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (59,501);
 
2164
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (497,502);
 
2165
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (38,502);
 
2166
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,502);
 
2167
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,502);
 
2168
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,502);
 
2169
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (123,503);
 
2170
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (488,504);
 
2171
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (193,504);
 
2172
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (495,505);
2173
2173
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,505);
2174
2174
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,506);
2175
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (374,506);
2176
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (497,507);
 
2175
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,506);
2177
2176
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,507);
2178
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (103,508);
2179
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (498,508);
2180
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (319,509);
2181
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (229,509);
2182
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (427,509);
2183
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (326,509);
2184
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (328,510);
2185
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (273,510);
2186
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (456,510);
2187
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (300,510);
2188
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (117,510);
2189
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (282,510);
2190
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (412,510);
2191
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,511);
2192
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (433,511);
2193
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (456,512);
2194
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (300,512);
2195
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,512);
2196
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,513);
2197
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (259,514);
2198
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (54,514);
2199
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (445,514);
2200
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (393,514);
2201
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (222,514);
2202
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (400,514);
2203
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,514);
2204
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (433,514);
2205
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (235,515);
2206
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (173,515);
2207
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (24,515);
2208
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (321,515);
2209
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (313,515);
2210
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,515);
2211
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (495,515);
2212
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (507,516);
2213
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,517);
2214
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,518);
2215
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,519);
2216
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (323,520);
2217
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,520);
2218
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (160,520);
2219
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (24,520);
2220
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (506,521);
2221
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (19,522);
2222
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,523);
2223
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (15,523);
2224
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (142,523);
2225
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,524);
2226
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,524);
2227
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,525);
2228
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (505,525);
2229
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (110,526);
2230
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,527);
2231
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,528);
2232
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (59,528);
 
2177
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (374,507);
 
2178
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (497,508);
 
2179
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,508);
 
2180
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (103,509);
 
2181
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (498,509);
 
2182
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (319,510);
 
2183
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (229,510);
 
2184
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (427,510);
 
2185
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (326,510);
 
2186
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (328,511);
 
2187
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (273,511);
 
2188
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (456,511);
 
2189
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (300,511);
 
2190
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (117,511);
 
2191
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (282,511);
 
2192
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (412,511);
 
2193
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,512);
 
2194
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (433,512);
 
2195
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (456,513);
 
2196
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (300,513);
 
2197
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,513);
 
2198
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,514);
 
2199
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (259,515);
 
2200
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (54,515);
 
2201
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (445,515);
 
2202
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (393,515);
 
2203
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (222,515);
 
2204
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (400,515);
 
2205
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,515);
 
2206
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (433,515);
 
2207
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (235,516);
 
2208
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (173,516);
 
2209
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (24,516);
 
2210
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (321,516);
 
2211
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (313,516);
 
2212
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (464,516);
 
2213
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (495,516);
 
2214
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (507,517);
 
2215
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,518);
 
2216
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,519);
 
2217
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (106,520);
 
2218
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (323,521);
 
2219
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,521);
 
2220
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (160,521);
 
2221
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (24,521);
 
2222
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (506,522);
 
2223
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (19,523);
 
2224
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,524);
 
2225
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (15,524);
 
2226
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (142,524);
 
2227
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (432,525);
 
2228
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (307,525);
 
2229
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (426,526);
 
2230
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (505,526);
 
2231
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (110,527);
2233
2232
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,528);
2234
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (103,529);
2235
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (498,529);
2236
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (25,530);
2237
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (35,530);
2238
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (146,530);
2239
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,530);
2240
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (143,530);
2241
 
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,531);
 
2233
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,529);
 
2234
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (59,529);
 
2235
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (491,529);
 
2236
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (103,530);
 
2237
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (498,530);
 
2238
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (25,531);
 
2239
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (35,531);
 
2240
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (146,531);
 
2241
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (349,531);
 
2242
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (143,531);
 
2243
INSERT INTO help_relation (help_topic_id,help_keyword_id) VALUES (237,532);
2242
2244
 
2243
2245
 
2244
2246
COMMIT;