home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2003 Spring / INTERNET101.ISO / pc / software / windows / building / sqlyog / sqlyog251.exe / SQLyog.exe / string.txt next >
Encoding:
Text File  |  2002-11-26  |  9.3 KB  |  111 lines

  1. 39100     Open this document
  2. 39101     Open this document
  3. 39102     Open this document
  4. 39103     Open this document
  5. 39104     Open this document
  6. 40000     Template
  7. 40002     Create a window with new connection
  8. 40003     Close the current MDI and connection
  9. 40004     Close all MDI window and connections
  10. 40005     Save the current SQL statement(s)
  11. 40006     Open a SQL file in the current connection
  12. 40007     Exit from the application
  13. 40008     Specify and save the current SQL into a file
  14. 40011     Cuts the selection and moves it to the clipboard ( Ctrl + X )
  15. 40012     Copies the current selection into clipboard ( Ctrl + C )
  16. 40013     Inserts the clipboard content at the current insertion point ( Ctrl + V )
  17. 40014     Undoes the last action
  18. 40016     Change selected text to uppercase
  19. 40017     Change selected text to lowercase
  20. 40018     Comment the current line
  21. 40019     Remove comment from the current line
  22. 40020     Adds the current SQL to the personal folder
  23. 40024     Arranges the windows as operlapped window
  24. 40025     Tiles the window
  25. 40026     Arrange the minimized MDI windows
  26. 40027     Displays the program information and copyright
  27. 40028     List of keyboard shortcuts in SQLyog
  28. 40046     Export table data and structure in SQL
  29. 40047     Execute a batch file of SQL commands
  30. 40048    /*
  31. \nSelect Statement
  32. \nSource : mySQL documentation
  33. \n*/
  34. \nSELECT [ STRAIGHT_JOIN ]  [ SQL_SMALL_RESULT ]  
  35. \n    [ SQL_BIG_RESULT ]  [ SQL_BUFFER_RESULT ] 
  36.         [ HIGH_PRIORITY ]  \n        [ DISTINCT | DISTINCT ROW | ALL ] 
  37. \n    select_expression,... 
  38. \n    [ INTO {OUTFILE | DUMPFILE} \'file_name\' export_options ] 
  39. \n    [ FROM table_references[ WHERE where_definition ]
  40. \n    [ GROUP BY {unsigned_integer | col_name | formula} [ ASC | DESC ], ... ]
  41. \n    [ HAVING where_definition ]
  42. \n    [ ORDER BY {unsigned_integer | col_name | formula} [ ASC | DESC ] ,... ]
  43. \n    [ LIMIT [ offset, ] rows ]
  44. \n    [ PROCEDURE procedure_name ]
  45. \n    FOR UPDATE | LOCK IN SHARE MODE ] ]
  46. 40049    /*
  47. \nJoin Statement
  48. \nSource : mySQL documentation
  49. \n*/
  50. \ntable_reference, table_reference
  51. \ntable_reference [ CROSS ] JOIN table_reference
  52. \ntable_reference INNER JOIN table_reference join_condition
  53. \ntable_reference STRAIGHT_JOIN table_reference
  54. \n
  55. \ntable_reference LEFT [ OUTER ] JOIN table_reference join_condition
  56. \ntable_reference LEFT [ OUTER ] JOIN table_reference
  57. \ntable_reference NATURAL [ LEFT [ OUTER ] ] JOIN table_reference
  58. \n{ oj table_reference LEFT OUTER JOIN table_reference ON conditional_expr }
  59. \ntable_reference RIGHT [ OUTER ] JOIN table_reference join_condition
  60. \ntable_reference RIGHT [ OUTER ] JOIN table_reference
  61. \ntable_reference NATURAL [ RIGHT [ OUTER ] ] JOIN table_reference
  62. 40050    /*
  63. \nInsert Statement
  64. \nSource : mySQL documentation
  65. \n*/
  66. \nINSERT [ LOW_PRIORITY | DELAYED ] [ IGNORE ]
  67. \n    [ INTO ] tbl_name [ (col_name,...) ]
  68. \n    VALUES (expression,...),(...),...
  69. \n
  70. \nINSERT [ LOW_PRIORITY | DELAYED ] [ IGNORE ]
  71. \n    [ INTO ] tbl_name [ (col_name,...) ]
  72. \n    SELECT ...
  73. \n
  74. \nINSERT [ LOW_PRIORITY | DELAYED ] [ IGNORE ]
  75. \n    [ INTO ] tbl_name
  76. \n    SET col_name=expression, col_name=expression, ...
  77. 40051    /*
  78. \nInsert_Select Statement
  79. \nSource : mySQL documentation
  80. \n*/
  81. \nINSERT [ LOW_PRIORITY ] [ IGNORE ] [ INTO ] tbl_name 
  82. \n    [ (column list) ] SELECT ...
  83. 40052    /*
  84. \nUpdate Statement
  85. \nSource : mySQL documentation
  86. \n*/
  87. \nUPDATE [ LOW_PRIORITY ] [ IGNORE ] tbl_name
  88. \n    SET col_name1=expr1, [ col_name2=expr2, ... ]
  89. \n    [ WHERE where_definition ]
  90. \n    [ LIMIT # ]
  91. 40053    /*
  92. \nDelete Statement
  93. \nSource : mySQL documentation
  94. \n*/
  95. \nDELETE [ LOW_PRIORITY ] FROM tbl_name
  96. \n    [ WHERE where_definition ]
  97. \n    [ LIMIT rows ]
  98. 40054    /*
  99. \nTruncate Statement
  100. \nSource : mySQL documentation
  101. \n*/
  102. \nTRUNCATE TABLE table_name
  103. 40055    /*
  104. \nReplace Statement
  105. \nSource : mySQL documentation
  106. \n*/
  107. \nREPLACE [ LOW_PRIORITY | DELAYED ]
  108. \n    [ INTO ] tbl_name [ (col_name,...) ]
  109. \n    VALUES (expression,...),(...),...
  110. \n
  111. \nREPLACE [ LOW_PRIORITY | DELAYED ]
  112. \n    [ INTO ] tbl_name [ (col_name,...) ]
  113. \n    SELECT ...
  114. \n    REPLACE [ LOW_PRIORITY | DELAYED ]
  115. \n    [ INTO ] tbl_name
  116. \n    SET col_name=expression, col_name=expression,...
  117. 40056    /*
  118. \nLoaddata Statement
  119. \nSource : mySQL documentation
  120. \n*/
  121. \nLOAD DATA [ LOW_PRIORITY | CONCURRENT ] [ LOCAL ] 
  122. \n    INFILE 'file_name.txt'
  123. \n    [ REPLACE | IGNORE ]
  124. \n    INTO TABLE tbl_name
  125. \n    [ FIELDS
  126. \n        [ TERMINATED BY '' ]
  127. \n        [ [ OPTIONALLY ] ENCLOSED BY '' ]
  128. \n        
  129. \n        [ ESCAPED BY '\'  ]
  130. \n     ]
  131. \n    [ LINES TERMINATED BY '' ]
  132. \n    [ IGNORE number LINES ]
  133. \n    [ (col_name,...) ]
  134. 40057    /*
  135. \nCreate Table Statement
  136. \nSource : mySQL documentation
  137. \n*/
  138. \nCREATE [ TEMPORARY ] TABLE [ IF NOT EXISTS ] 
  139. \n    tbl_name [ (create_definition,...) ]
  140. \n    [ table_options ] [ select_statement ]
  141. 40058    /*
  142. \nCreate Database Statement
  143. \nSource : mySQL documentation
  144. \n*/
  145. \nCREATE DATABASE [ IF NOT EXISTS ] db_name 
  146. 40059    /*
  147. \nDrop database Statement
  148. \nSource : mySQL documentation
  149. \n*/
  150. \nDROP DATABASE [ IF EXISTS ] db_name 
  151. 40060    /*
  152. \nDrop table Statement
  153. \nSource : mySQL documentation
  154. \n*/
  155. \nDROP TABLE [ IF EXISTS ] tbl_name [ , tbl_name,... ] 
  156. \n    [ RESTRICT | CASCADE ]
  157. 40061    /*
  158. \nAlter table Statement
  159. \nSource : mySQL documentation
  160. \n*/
  161. \nALTER [ IGNORE ] TABLE tbl_name alter_spec 
  162. \n    [ , alter_spec ... ]
  163. 40062    /*
  164. \nRename table Statement
  165. \nSource : mySQL documentation
  166. \n*/
  167. \nRENAME TABLE tbl_name TO new_table_name[ , tbl_name2 TO 
  168. \n    new_table_name2,... ]
  169. 40064    /*
  170. \nUSE Statement
  171. \nSource : mySQL documentation
  172. \n*/
  173. \nUSE db_name
  174. 40065    /*
  175. \nDESCRIBE Statement
  176. \nSource : mySQL documentation
  177. \n*/
  178. \n{ DESCRIBE | DESC } tbl_name {col_name | wild}
  179. 40067    /*
  180. \nBEGIN/COMMMIT/ROLLBACK Statement
  181. \nSource : mySQL documentation
  182. \n*/
  183. \nBEGIN;
  184. \nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;
  185. \nUPDATE table2 SET summmary=@A WHERE type=1;
  186. \nCOMMIT;
  187. \nROLLBACK
  188. 40068    /*
  189. \nBEGIN/COMMMIT/ROLLBACK Statement
  190. \nSource : mySQL documentation
  191. \n*/
  192. \nBEGIN;
  193. \nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;
  194. \nUPDATE table2 SET summmary=@A WHERE type=1;
  195. \nCOMMIT;
  196. \nROLLBACK
  197. 40069    /*
  198. \nBEGIN/COMMMIT/ROLLBACK Statement
  199. \nSource : mySQL documentation
  200. \n*/
  201. \nBEGIN;
  202. \nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;
  203. \nUPDATE table2 SET summmary=@A WHERE type=1;
  204. \nCOMMIT;
  205. \nROLLBACK
  206. 40070    /*
  207. \nLOCK/UNLOCK Statement
  208. \nSource : mySQL documentation
  209. \n*/
  210. \nLOCK TABLES tbl_name [ AS alias ] { READ | [ READ LOCAL ] | 
  211. \n    [ LOW_PRIORITY ] WRITE }
  212. \n    [ , tbl_name { READ | [ LOW_PRIORITY ] WRITE } ... ]
  213. \n...
  214. \nUNLOCK TABLES
  215. 40071    /*
  216. \nLOCK/UNLOCK Statement
  217. \nSource : mySQL documentation
  218. \n*/
  219. \nLOCK TABLES tbl_name [ AS alias ] {READ | [ READ LOCAL ] | 
  220. \n    [ LOW_PRIORITY ] WRITE}
  221. \n        [ , tbl_name {READ | [ LOW_PRIORITY ] WRITE} ... ]
  222. \n...
  223. \nUNLOCK TABLES
  224. 40072    /*
  225. \nTransaction Statement
  226. \nSource : mySQL documentation
  227. \n*/
  228. \nSET [ GLOBAL | SESSION ] TRANSACTION ISOLATION LEVEL
  229. \n[ READ UNCOMMITTED | READ COMMITTED | 
  230. \n  REPEATABLE READ | SERIALIZABLE ]
  231. 40073    /*
  232. \nCreate Index Statement
  233. \nSource : mySQL documentation
  234. \n*/
  235. \nCREATE [ UNIQUE| FULLTEXT ] INDEX index_name 
  236. \n    ON tbl_name (col_name[ (length) ],... ]
  237. 40074     Redoes the previously undone action
  238. 40077     Execute Query(s)
  239. 40079     Selects the entire selection
  240. 40080     Refresh ObjectBrowser ( F9 )
  241. 40082     Drop the database
  242. 40083     Drop the table
  243. 40084     Create a Insert SQL statement for the table
  244. 40086     Manage personal folder
  245. 40097     Show the HELP file for SQLyog
  246. 40101     Create a new table in the selected database
  247. 40107     Create Table
  248. 40116     Diagnose your tables
  249. 40118     Show results in text mode
  250. 40129     Finds the specified text
  251. 40130     Finds the specified text and replaces it with a different text
  252. 40133     Show or Hides the object browser
  253. 40137     Flush logs, privileges, hosts etc.
  254. 40139     Show templates for SQL commands
  255. 40140     Export the data in XML, CSV and HTML format
  256. 40141    /*
  257. \nBackup / Restore Statement
  258. \nSource : mySQL documentation
  259. \n*/
  260. \nBACKUP TABLE tbl_name[,tbl_name...] TO '/path/to/backup/directory'
  261. \n
  262. \nRESTORE TABLE tbl_name[,tbl_name...] FROM '/path/to/backup/directory'
  263. 40150     Rename the table
  264. 40151     View the data of the table 
  265. 40152     Empty the table
  266. 40153     View the advanced properties of the table
  267. 40155     Drop the selected column
  268. 40156     Create Schema for the database in HTML
  269. 40157     Create a new window with the current connection
  270. 40162     Make of copy of the table in the database
  271. 40165     Alter the table structure
  272. 40166     Add a user and set its Global Privileges
  273. 40167     Edit a existing users Global Privileges
  274. 40170     Insert and Update data of the table
  275. 40180     Create a database
  276. 40184     Change the table type to ISAM
  277. 40185     Change the table type to MyISAM
  278. 40186     Change the table type to HEAP
  279. 40187     Change the table type to MERGE
  280. 40188     Change the table type to InnoDB
  281. 40189     Change the table type to BDB
  282. 40190     Change the table type to GEMINI
  283. 40191     Create and Edit Indexes for the table
  284. 40192     Give Database, Table and Column level privileges to a user
  285. 40196     Export the data of the table as CSV
  286. 40197     Import data into the table from a CSV file
  287. 40198     Backup the database
  288. 40199     Restore the database from a backup
  289. 40200     Show or Hide the Result Window
  290. 40201     Open the Personal SQL in the current connection
  291. 40202     Open the Personal SQL in the current connection
  292. 40203     Open the Personal SQL in the current connection
  293. 40204     Open the Personal SQL in the current connection
  294. 40205     Open the Personal SQL in the current connection
  295. 40206     Drop the currently selected Index
  296. 40214     Export data of the database as SQL
  297. 40215     Export data of the table as SQL
  298. 40219     Clear the Query Editor
  299. 40220     Create and edit indexes for the table
  300.