home *** CD-ROM | disk | FTP | other *** search
- 39100 Open this document
- 39101 Open this document
- 39102 Open this document
- 39103 Open this document
- 39104 Open this document
- 40000 Template
- 40002 Create a window with new connection
- 40003 Close the current MDI and connection
- 40004 Close all MDI window and connections
- 40005 Save the current SQL statement(s)
- 40006 Open a SQL file in the current connection
- 40007 Exit from the application
- 40008 Specify and save the current SQL into a file
- 40011 Cuts the selection and moves it to the clipboard ( Ctrl + X )
- 40012 Copies the current selection into clipboard ( Ctrl + C )
- 40013 Inserts the clipboard content at the current insertion point ( Ctrl + V )
- 40014 Undoes the last action
- 40016 Change selected text to uppercase
- 40017 Change selected text to lowercase
- 40018 Comment the current line
- 40019 Remove comment from the current line
- 40020 Adds the current SQL to the personal folder
- 40024 Arranges the windows as operlapped window
- 40025 Tiles the window
- 40026 Arrange the minimized MDI windows
- 40027 Displays the program information and copyright
- 40028 List of keyboard shortcuts in SQLyog
- 40046 Export table data and structure in SQL
- 40047 Execute a batch file of SQL commands
- 40048 /*
- \nSelect Statement
- \nSource : mySQL documentation
- \n*/
- \nSELECT [ STRAIGHT_JOIN ] [ SQL_SMALL_RESULT ]
- \n [ SQL_BIG_RESULT ] [ SQL_BUFFER_RESULT ]
- [ HIGH_PRIORITY ] \n [ DISTINCT | DISTINCT ROW | ALL ]
- \n select_expression,...
- \n [ INTO {OUTFILE | DUMPFILE} \'file_name\' export_options ]
- \n [ FROM table_references[ WHERE where_definition ]
- \n [ GROUP BY {unsigned_integer | col_name | formula} [ ASC | DESC ], ... ]
- \n [ HAVING where_definition ]
- \n [ ORDER BY {unsigned_integer | col_name | formula} [ ASC | DESC ] ,... ]
- \n [ LIMIT [ offset, ] rows ]
- \n [ PROCEDURE procedure_name ]
- \n FOR UPDATE | LOCK IN SHARE MODE ] ]
- 40049 /*
- \nJoin Statement
- \nSource : mySQL documentation
- \n*/
- \ntable_reference, table_reference
- \ntable_reference [ CROSS ] JOIN table_reference
- \ntable_reference INNER JOIN table_reference join_condition
- \ntable_reference STRAIGHT_JOIN table_reference
- \n
- \ntable_reference LEFT [ OUTER ] JOIN table_reference join_condition
- \ntable_reference LEFT [ OUTER ] JOIN table_reference
- \ntable_reference NATURAL [ LEFT [ OUTER ] ] JOIN table_reference
- \n{ oj table_reference LEFT OUTER JOIN table_reference ON conditional_expr }
- \ntable_reference RIGHT [ OUTER ] JOIN table_reference join_condition
- \ntable_reference RIGHT [ OUTER ] JOIN table_reference
- \ntable_reference NATURAL [ RIGHT [ OUTER ] ] JOIN table_reference
- 40050 /*
- \nInsert Statement
- \nSource : mySQL documentation
- \n*/
- \nINSERT [ LOW_PRIORITY | DELAYED ] [ IGNORE ]
- \n [ INTO ] tbl_name [ (col_name,...) ]
- \n VALUES (expression,...),(...),...
- \n
- \nINSERT [ LOW_PRIORITY | DELAYED ] [ IGNORE ]
- \n [ INTO ] tbl_name [ (col_name,...) ]
- \n SELECT ...
- \n
- \nINSERT [ LOW_PRIORITY | DELAYED ] [ IGNORE ]
- \n [ INTO ] tbl_name
- \n SET col_name=expression, col_name=expression, ...
- 40051 /*
- \nInsert_Select Statement
- \nSource : mySQL documentation
- \n*/
- \nINSERT [ LOW_PRIORITY ] [ IGNORE ] [ INTO ] tbl_name
- \n [ (column list) ] SELECT ...
- 40052 /*
- \nUpdate Statement
- \nSource : mySQL documentation
- \n*/
- \nUPDATE [ LOW_PRIORITY ] [ IGNORE ] tbl_name
- \n SET col_name1=expr1, [ col_name2=expr2, ... ]
- \n [ WHERE where_definition ]
- \n [ LIMIT # ]
- 40053 /*
- \nDelete Statement
- \nSource : mySQL documentation
- \n*/
- \nDELETE [ LOW_PRIORITY ] FROM tbl_name
- \n [ WHERE where_definition ]
- \n [ LIMIT rows ]
- 40054 /*
- \nTruncate Statement
- \nSource : mySQL documentation
- \n*/
- \nTRUNCATE TABLE table_name
- 40055 /*
- \nReplace Statement
- \nSource : mySQL documentation
- \n*/
- \nREPLACE [ LOW_PRIORITY | DELAYED ]
- \n [ INTO ] tbl_name [ (col_name,...) ]
- \n VALUES (expression,...),(...),...
- \n
- \nREPLACE [ LOW_PRIORITY | DELAYED ]
- \n [ INTO ] tbl_name [ (col_name,...) ]
- \n SELECT ...
- \n REPLACE [ LOW_PRIORITY | DELAYED ]
- \n [ INTO ] tbl_name
- \n SET col_name=expression, col_name=expression,...
- 40056 /*
- \nLoaddata Statement
- \nSource : mySQL documentation
- \n*/
- \nLOAD DATA [ LOW_PRIORITY | CONCURRENT ] [ LOCAL ]
- \n INFILE 'file_name.txt'
- \n [ REPLACE | IGNORE ]
- \n INTO TABLE tbl_name
- \n [ FIELDS
- \n [ TERMINATED BY '' ]
- \n [ [ OPTIONALLY ] ENCLOSED BY '' ]
- \n
- \n [ ESCAPED BY '\' ]
- \n ]
- \n [ LINES TERMINATED BY '' ]
- \n [ IGNORE number LINES ]
- \n [ (col_name,...) ]
- 40057 /*
- \nCreate Table Statement
- \nSource : mySQL documentation
- \n*/
- \nCREATE [ TEMPORARY ] TABLE [ IF NOT EXISTS ]
- \n tbl_name [ (create_definition,...) ]
- \n [ table_options ] [ select_statement ]
- 40058 /*
- \nCreate Database Statement
- \nSource : mySQL documentation
- \n*/
- \nCREATE DATABASE [ IF NOT EXISTS ] db_name
- 40059 /*
- \nDrop database Statement
- \nSource : mySQL documentation
- \n*/
- \nDROP DATABASE [ IF EXISTS ] db_name
- 40060 /*
- \nDrop table Statement
- \nSource : mySQL documentation
- \n*/
- \nDROP TABLE [ IF EXISTS ] tbl_name [ , tbl_name,... ]
- \n [ RESTRICT | CASCADE ]
- 40061 /*
- \nAlter table Statement
- \nSource : mySQL documentation
- \n*/
- \nALTER [ IGNORE ] TABLE tbl_name alter_spec
- \n [ , alter_spec ... ]
- 40062 /*
- \nRename table Statement
- \nSource : mySQL documentation
- \n*/
- \nRENAME TABLE tbl_name TO new_table_name[ , tbl_name2 TO
- \n new_table_name2,... ]
- 40064 /*
- \nUSE Statement
- \nSource : mySQL documentation
- \n*/
- \nUSE db_name
- 40065 /*
- \nDESCRIBE Statement
- \nSource : mySQL documentation
- \n*/
- \n{ DESCRIBE | DESC } tbl_name {col_name | wild}
- 40067 /*
- \nBEGIN/COMMMIT/ROLLBACK Statement
- \nSource : mySQL documentation
- \n*/
- \nBEGIN;
- \nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;
- \nUPDATE table2 SET summmary=@A WHERE type=1;
- \nCOMMIT;
- \nROLLBACK
- 40068 /*
- \nBEGIN/COMMMIT/ROLLBACK Statement
- \nSource : mySQL documentation
- \n*/
- \nBEGIN;
- \nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;
- \nUPDATE table2 SET summmary=@A WHERE type=1;
- \nCOMMIT;
- \nROLLBACK
- 40069 /*
- \nBEGIN/COMMMIT/ROLLBACK Statement
- \nSource : mySQL documentation
- \n*/
- \nBEGIN;
- \nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;
- \nUPDATE table2 SET summmary=@A WHERE type=1;
- \nCOMMIT;
- \nROLLBACK
- 40070 /*
- \nLOCK/UNLOCK Statement
- \nSource : mySQL documentation
- \n*/
- \nLOCK TABLES tbl_name [ AS alias ] { READ | [ READ LOCAL ] |
- \n [ LOW_PRIORITY ] WRITE }
- \n [ , tbl_name { READ | [ LOW_PRIORITY ] WRITE } ... ]
- \n...
- \nUNLOCK TABLES
- 40071 /*
- \nLOCK/UNLOCK Statement
- \nSource : mySQL documentation
- \n*/
- \nLOCK TABLES tbl_name [ AS alias ] {READ | [ READ LOCAL ] |
- \n [ LOW_PRIORITY ] WRITE}
- \n [ , tbl_name {READ | [ LOW_PRIORITY ] WRITE} ... ]
- \n...
- \nUNLOCK TABLES
- 40072 /*
- \nTransaction Statement
- \nSource : mySQL documentation
- \n*/
- \nSET [ GLOBAL | SESSION ] TRANSACTION ISOLATION LEVEL
- \n[ READ UNCOMMITTED | READ COMMITTED |
- \n REPEATABLE READ | SERIALIZABLE ]
- 40073 /*
- \nCreate Index Statement
- \nSource : mySQL documentation
- \n*/
- \nCREATE [ UNIQUE| FULLTEXT ] INDEX index_name
- \n ON tbl_name (col_name[ (length) ],... ]
- 40074 Redoes the previously undone action
- 40077 Execute Query(s)
- 40079 Selects the entire selection
- 40080 Refresh ObjectBrowser ( F9 )
- 40082 Drop the database
- 40083 Drop the table
- 40084 Create a Insert SQL statement for the table
- 40086 Manage personal folder
- 40097 Show the HELP file for SQLyog
- 40101 Create a new table in the selected database
- 40107 Create Table
- 40116 Diagnose your tables
- 40118 Show results in text mode
- 40129 Finds the specified text
- 40130 Finds the specified text and replaces it with a different text
- 40133 Show or Hides the object browser
- 40137 Flush logs, privileges, hosts etc.
- 40139 Show templates for SQL commands
- 40140 Export the data in XML, CSV and HTML format
- 40141 /*
- \nBackup / Restore Statement
- \nSource : mySQL documentation
- \n*/
- \nBACKUP TABLE tbl_name[,tbl_name...] TO '/path/to/backup/directory'
- \n
- \nRESTORE TABLE tbl_name[,tbl_name...] FROM '/path/to/backup/directory'
- 40150 Rename the table
- 40151 View the data of the table
- 40152 Empty the table
- 40153 View the advanced properties of the table
- 40155 Drop the selected column
- 40156 Create Schema for the database in HTML
- 40157 Create a new window with the current connection
- 40162 Make of copy of the table in the database
- 40165 Alter the table structure
- 40166 Add a user and set its Global Privileges
- 40167 Edit a existing users Global Privileges
- 40170 Insert and Update data of the table
- 40180 Create a database
- 40184 Change the table type to ISAM
- 40185 Change the table type to MyISAM
- 40186 Change the table type to HEAP
- 40187 Change the table type to MERGE
- 40188 Change the table type to InnoDB
- 40189 Change the table type to BDB
- 40190 Change the table type to GEMINI
- 40191 Create and Edit Indexes for the table
- 40192 Give Database, Table and Column level privileges to a user
- 40196 Export the data of the table as CSV
- 40197 Import data into the table from a CSV file
- 40198 Backup the database
- 40199 Restore the database from a backup
- 40200 Show or Hide the Result Window
- 40201 Open the Personal SQL in the current connection
- 40202 Open the Personal SQL in the current connection
- 40203 Open the Personal SQL in the current connection
- 40204 Open the Personal SQL in the current connection
- 40205 Open the Personal SQL in the current connection
- 40206 Drop the currently selected Index
- 40214 Export data of the database as SQL
- 40215 Export data of the table as SQL
- 40219 Clear the Query Editor
- 40220 Create and edit indexes for the table
-