{"id":1822,"date":"2022-01-06T15:00:02","date_gmt":"2022-01-06T07:00:02","guid":{"rendered":"https:\/\/www.citerp.com.tw\/citwordpress\/?p=1822"},"modified":"2022-06-17T14:30:01","modified_gmt":"2022-06-17T06:30:01","slug":"mysql000002","status":"publish","type":"post","link":"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/","title":{"rendered":"[Mysql\uff0fMariaDB]\u7d42\u7aef\u6a5f\u64cd\u4f5c\u6307\u4ee4~"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"877\" height=\"643\" src=\"https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001.png\" alt=\"\" class=\"wp-image-1839\" srcset=\"https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001.png 877w, https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001-300x220.png 300w, https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001-768x563.png 768w\" sizes=\"auto, (max-width: 877px) 100vw, 877px\" \/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>List of all client commands:\nNote that all text commands must be first on line and end with ';'\n?         (\\?) Synonym for `help'.\nclear     (\\c) Clear the current input statement.\nconnect   (\\r) Reconnect to the server. Optional arguments are db and host.\ndelimiter (\\d) Set statement delimiter.\nego       (\\G) Send command to MariaDB server, display result vertically.\nexit      (\\q) Exit mysql. Same as quit.\ngo        (\\g) Send command to MariaDB server.\nhelp      (\\h) Display this help.\nnotee     (\\t) Don't write into outfile.\nprint     (\\p) Print current command.\nprompt    (\\R) Change your mysql prompt.\nquit      (\\q) Quit mysql.\nrehash    (\\#) Rebuild completion hash.\nsource    (\\.) Execute an SQL script file. Takes a file name as an argument.\nstatus    (\\s) Get status information from the server.\ntee       (\\T) Set outfile &#91;to_outfile]. Append everything into given outfile.\nuse       (\\u) Use another database. Takes database name as argument.\ncharset   (\\C) Switch to another charset. Might be needed for processing binlog with multi-byte charsets.\nwarnings  (\\W) Show warnings after every statement.\nnowarning (\\w) Don't show warnings after every statement.\n\nFor server side help, type 'help contents'<\/code><\/pre>\n\n\n\n<p>\u767b\u5165mysql<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>PS C:\\wamp\\bin\\mariadb\\mariadb10.4.10\\bin&gt; .\\mysql -uroot\nWelcome to the MariaDB monitor.  Commands end with ; or \\g.\nYour MariaDB connection id is 1251\nServer version: 10.4.10-MariaDB mariadb.org binary distribution\n\nCopyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.\n\nType 'help;' or '\\h' for help. Type '\\c' to clear the current input statement.\n\nMariaDB &#91;(none)]&gt;<\/code><\/pre>\n\n\n\n<p>select \u4f7f\u7528\u8005 table<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>MariaDB &#91;(none)]&gt; SELECT USER();\n+----------------+\n| USER()         |\n+----------------+\n| root@localhost |\n+----------------+\n1 row in set (0.002 sec)\n\nMariaDB &#91;(none)]&gt;<\/code><\/pre>\n\n\n\n<p>show \u51fa\u76ee\u524d\u7684\u57f7\u884c\u6e05\u55ae<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>MariaDB &#91;(none)]&gt; show processlist;\n+------+-------------+-----------------+------------+---------+------+--------------------------+-----------------------\n----------------------------------------------------------------------+----------+\n| Id   | User        | Host            | db         | Command | Time | State                    | Info\n                                                                      | Progress |\n+------+-------------+-----------------+------------+---------+------+--------------------------+-----------------------\n----------------------------------------------------------------------+----------+\n|    1 | system user |                 | NULL       | Daemon  | NULL | InnoDB purge worker      | NULL\n                                                                      |    0.000 |\n|    2 | system user |                 | NULL       | Daemon  | NULL | InnoDB purge worker      | NULL\n                                                                      |    0.000 |\n|    3 | system user |                 | NULL       | Daemon  | NULL | InnoDB purge coordinator | NULL\n                                                                      |    0.000 |\n|    4 | system user |                 | NULL       | Daemon  | NULL | InnoDB purge worker      | NULL\n                                                                      |    0.000 |\n|    5 | system user |                 | NULL       | Daemon  | NULL | InnoDB shutdown handler  | NULL\n                                                                      |    0.000 |\n| 1251 | root        | localhost:49205 | NULL       | Query   |    0 | Init                     | show processlist\n                                                                      |    0.000 |\n| 1269 | root        | localhost:49226 | cit01_site | Sleep   |    0 |                          | NULL\n                                                                      |    0.000 |\n| 1270 | root        | localhost:49227 | cit01_site | Query   |    0 | Writing to net           | SELECT option_value FR\nOM cit02_options WHERE option_name = 'elementor_custom_tasks' LIMIT 1 |    0.000 |\n| 1271 | root        | localhost:49228 | cit01_site | Sleep   |    1 |                          | NULL\n                                                                      |    0.000 |\n+------+-------------+-----------------+------------+---------+------+--------------------------+-----------------------\n----------------------------------------------------------------------+----------+\n9 rows in set (0.001 sec)\n\nMariaDB &#91;(none)]&gt;<\/code><\/pre>\n\n\n\n<p> show \u51fa\u76ee\u524d\u7684\u5b8c\u6574\u57f7\u884c\u6e05\u55ae <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>MariaDB &#91;(none)]&gt; show full processlist;\n+------+-------------+-----------------+------------+---------+------+--------------------------+-----------------------\n------------------------------------------------------------------------------+----------+\n| Id   | User        | Host            | db         | Command | Time | State                    | Info\n                                                                              | Progress |\n+------+-------------+-----------------+------------+---------+------+--------------------------+-----------------------\n------------------------------------------------------------------------------+----------+\n|    1 | system user |                 | NULL       | Daemon  | NULL | InnoDB purge worker      | NULL\n                                                                              |    0.000 |\n|    2 | system user |                 | NULL       | Daemon  | NULL | InnoDB purge worker      | NULL\n                                                                              |    0.000 |\n|    3 | system user |                 | NULL       | Daemon  | NULL | InnoDB purge coordinator | NULL\n                                                                              |    0.000 |\n|    4 | system user |                 | NULL       | Daemon  | NULL | InnoDB purge worker      | NULL\n                                                                              |    0.000 |\n|    5 | system user |                 | NULL       | Daemon  | NULL | InnoDB shutdown handler  | NULL\n                                                                              |    0.000 |\n| 1251 | root        | localhost:49205 | NULL       | Query   |    0 | Init                     | show full processlist\n                                                                              |    0.000 |\n| 1415 | root        | localhost:49398 | cit01_site | Query   |    0 | Writing to net           | SELECT meta_id FROM ci\nt01_postmeta WHERE meta_key = 'pen_sidebar_bottom_display' AND post_id = 1822 |    0.000 |\n+------+-------------+-----------------+------------+---------+------+--------------------------+-----------------------\n------------------------------------------------------------------------------+----------+\n7 rows in set (0.000 sec)\n\nMariaDB &#91;(none)]&gt;<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>MariaDB &#91;(none)]&gt; show full processlist;\n+------+-------------+-----------------+------------+---------+------+--------------------------+-----------------------\n-----------------------------------------------------------------+----------+\n| Id   | User        | Host            | db         | Command | Time | State                    | Info\n                                                                 | Progress |\n+------+-------------+-----------------+------------+---------+------+--------------------------+-----------------------\n-----------------------------------------------------------------+----------+\n|    1 | system user |                 | NULL       | Daemon  | NULL | InnoDB purge worker      | NULL\n                                                                 |    0.000 |\n|    2 | system user |                 | NULL       | Daemon  | NULL | InnoDB purge worker      | NULL\n                                                                 |    0.000 |\n|    3 | system user |                 | NULL       | Daemon  | NULL | InnoDB purge coordinator | NULL\n                                                                 |    0.000 |\n|    4 | system user |                 | NULL       | Daemon  | NULL | InnoDB purge worker      | NULL\n                                                                 |    0.000 |\n|    5 | system user |                 | NULL       | Daemon  | NULL | InnoDB shutdown handler  | NULL\n                                                                 |    0.000 |\n| 1251 | root        | localhost:49205 | NULL       | Query   |    0 | Init                     | show full processlist\n                                                                 |    0.000 |\n| 1445 | root        | localhost:49435 | cit01_site | Query   |    0 | Writing to net           | SELECT option_value FR\nOM cit01_options WHERE option_name = 'WpFastestCacheCDN' LIMIT 1 |    0.000 |\n+------+-------------+-----------------+------------+---------+------+--------------------------+-----------------------\n-----------------------------------------------------------------+----------+\n7 rows in set (0.001 sec)<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>[Mysql\uff0fMariaDB]\u7d42\u7aef\u6a5f\u64cd\u4f5c\u6307\u4ee4~<\/p>\n","protected":false},"author":2,"featured_media":1839,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"qubely_global_settings":"","qubely_interactions":"","footnotes":""},"categories":[148],"tags":[150,149,151],"class_list":["post-1822","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-mysql","tag-mariadb","tag-mysql","tag-151"],"qubely_featured_image_url":{"full":["https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001.png",877,643,false],"landscape":["https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001.png",877,643,false],"portraits":["https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001-540x320.png",540,320,true],"thumbnail":["https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001-150x150.png",150,150,true],"medium":["https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001-300x220.png",300,220,true],"medium_large":["https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001-768x563.png",740,542,true],"large":["https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001.png",740,543,false],"1536x1536":["https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001.png",877,643,false],"2048x2048":["https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001.png",877,643,false],"qubely_landscape":["https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001.png",877,643,false],"qubely_portrait":["https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001-540x320.png",540,320,true],"qubely_thumbnail":["https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001-140x100.png",140,100,true],"post-thumbnail":["https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001-225x225.png",225,225,true]},"qubely_author":{"display_name":"\u5eb7\u6377Qoo","author_link":"https:\/\/www.citerp.com.tw\/citwordpress\/author\/cit001\/"},"qubely_comment":0,"qubely_category":"<a href=\"https:\/\/www.citerp.com.tw\/citwordpress\/category\/mysql\/\" rel=\"category tag\">MYSQL<\/a>","qubely_excerpt":"[Mysql\uff0fMariaDB]\u7d42\u7aef\u6a5f\u64cd\u4f5c\u6307\u4ee4~","yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>[Mysql\uff0fMariaDB]\u7d42\u7aef\u6a5f\u64cd\u4f5c\u6307\u4ee4~ - \u514d\u8cbb\u8cc7\u6e90\u5206\u4eab<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/\" \/>\n<meta property=\"og:locale\" content=\"zh_TW\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Mysql\uff0fMariaDB]\u7d42\u7aef\u6a5f\u64cd\u4f5c\u6307\u4ee4~ - \u514d\u8cbb\u8cc7\u6e90\u5206\u4eab\" \/>\n<meta property=\"og:description\" content=\"[Mysql\uff0fMariaDB]\u7d42\u7aef\u6a5f\u64cd\u4f5c\u6307\u4ee4~\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/\" \/>\n<meta property=\"og:site_name\" content=\"\u514d\u8cbb\u8cc7\u6e90\u5206\u4eab\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/citerptw\" \/>\n<meta property=\"article:published_time\" content=\"2022-01-06T07:00:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-17T06:30:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001.png\" \/>\n\t<meta property=\"og:image:width\" content=\"877\" \/>\n\t<meta property=\"og:image:height\" content=\"643\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"\u5eb7\u6377Qoo\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005:\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u5eb7\u6377Qoo\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9810\u4f30\u95b1\u8b80\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 \u5206\u9418\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/\"},\"author\":{\"name\":\"\u5eb7\u6377Qoo\",\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/#\/schema\/person\/28cfdf2cec7315f2efe90573114fed37\"},\"headline\":\"[Mysql\uff0fMariaDB]\u7d42\u7aef\u6a5f\u64cd\u4f5c\u6307\u4ee4~\",\"datePublished\":\"2022-01-06T07:00:02+00:00\",\"dateModified\":\"2022-06-17T06:30:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/\"},\"wordCount\":7,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001.png\",\"keywords\":[\"MariaDB\",\"MYSQL\",\"\u7d42\u7aef\u6a5f\"],\"articleSection\":[\"MYSQL\"],\"inLanguage\":\"zh-TW\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/\",\"url\":\"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/\",\"name\":\"[Mysql\uff0fMariaDB]\u7d42\u7aef\u6a5f\u64cd\u4f5c\u6307\u4ee4~ - \u514d\u8cbb\u8cc7\u6e90\u5206\u4eab\",\"isPartOf\":{\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001.png\",\"datePublished\":\"2022-01-06T07:00:02+00:00\",\"dateModified\":\"2022-06-17T06:30:01+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/#breadcrumb\"},\"inLanguage\":\"zh-TW\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-TW\",\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/#primaryimage\",\"url\":\"https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001.png\",\"contentUrl\":\"https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001.png\",\"width\":877,\"height\":643},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9801\",\"item\":\"https:\/\/www.citerp.com.tw\/citwordpress\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Mysql\uff0fMariaDB]\u7d42\u7aef\u6a5f\u64cd\u4f5c\u6307\u4ee4~\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/#website\",\"url\":\"https:\/\/www.citerp.com.tw\/citwordpress\/\",\"name\":\"\u514d\u8cbb\u8cc7\u6e90\u5206\u4eab\",\"description\":\"\u514d\u8cbb\u8cc7\u6e90\u5171\u4eab\",\"publisher\":{\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.citerp.com.tw\/citwordpress\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-TW\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/#organization\",\"name\":\"\u514d\u8cbb\u8cc7\u6e90\u5206\u4eab\",\"url\":\"https:\/\/www.citerp.com.tw\/citwordpress\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-TW\",\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/06\/find2.png\",\"contentUrl\":\"https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/06\/find2.png\",\"width\":128,\"height\":128,\"caption\":\"\u514d\u8cbb\u8cc7\u6e90\u5206\u4eab\"},\"image\":{\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/citerptw\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/#\/schema\/person\/28cfdf2cec7315f2efe90573114fed37\",\"name\":\"\u5eb7\u6377Qoo\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-TW\",\"@id\":\"https:\/\/www.citerp.com.tw\/citwordpress\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/87fa59ff417f35a6d53f05479d9dd918615095cadddb02e447511edc4f8b6302?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/87fa59ff417f35a6d53f05479d9dd918615095cadddb02e447511edc4f8b6302?s=96&d=mm&r=g\",\"caption\":\"\u5eb7\u6377Qoo\"},\"url\":\"https:\/\/www.citerp.com.tw\/citwordpress\/author\/cit001\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Mysql\uff0fMariaDB]\u7d42\u7aef\u6a5f\u64cd\u4f5c\u6307\u4ee4~ - \u514d\u8cbb\u8cc7\u6e90\u5206\u4eab","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/","og_locale":"zh_TW","og_type":"article","og_title":"[Mysql\uff0fMariaDB]\u7d42\u7aef\u6a5f\u64cd\u4f5c\u6307\u4ee4~ - \u514d\u8cbb\u8cc7\u6e90\u5206\u4eab","og_description":"[Mysql\uff0fMariaDB]\u7d42\u7aef\u6a5f\u64cd\u4f5c\u6307\u4ee4~","og_url":"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/","og_site_name":"\u514d\u8cbb\u8cc7\u6e90\u5206\u4eab","article_publisher":"https:\/\/www.facebook.com\/citerptw","article_published_time":"2022-01-06T07:00:02+00:00","article_modified_time":"2022-06-17T06:30:01+00:00","og_image":[{"width":877,"height":643,"url":"https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001.png","type":"image\/png"}],"author":"\u5eb7\u6377Qoo","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005:":"\u5eb7\u6377Qoo","\u9810\u4f30\u95b1\u8b80\u6642\u9593":"3 \u5206\u9418"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/#article","isPartOf":{"@id":"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/"},"author":{"name":"\u5eb7\u6377Qoo","@id":"https:\/\/www.citerp.com.tw\/citwordpress\/#\/schema\/person\/28cfdf2cec7315f2efe90573114fed37"},"headline":"[Mysql\uff0fMariaDB]\u7d42\u7aef\u6a5f\u64cd\u4f5c\u6307\u4ee4~","datePublished":"2022-01-06T07:00:02+00:00","dateModified":"2022-06-17T06:30:01+00:00","mainEntityOfPage":{"@id":"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/"},"wordCount":7,"commentCount":0,"publisher":{"@id":"https:\/\/www.citerp.com.tw\/citwordpress\/#organization"},"image":{"@id":"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/#primaryimage"},"thumbnailUrl":"https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001.png","keywords":["MariaDB","MYSQL","\u7d42\u7aef\u6a5f"],"articleSection":["MYSQL"],"inLanguage":"zh-TW","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/","url":"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/","name":"[Mysql\uff0fMariaDB]\u7d42\u7aef\u6a5f\u64cd\u4f5c\u6307\u4ee4~ - \u514d\u8cbb\u8cc7\u6e90\u5206\u4eab","isPartOf":{"@id":"https:\/\/www.citerp.com.tw\/citwordpress\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/#primaryimage"},"image":{"@id":"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/#primaryimage"},"thumbnailUrl":"https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001.png","datePublished":"2022-01-06T07:00:02+00:00","dateModified":"2022-06-17T06:30:01+00:00","breadcrumb":{"@id":"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/#breadcrumb"},"inLanguage":"zh-TW","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/"]}]},{"@type":"ImageObject","inLanguage":"zh-TW","@id":"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/#primaryimage","url":"https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001.png","contentUrl":"https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/01\/MySQL000002-001.png","width":877,"height":643},{"@type":"BreadcrumbList","@id":"https:\/\/www.citerp.com.tw\/citwordpress\/mysql000002\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9801","item":"https:\/\/www.citerp.com.tw\/citwordpress\/"},{"@type":"ListItem","position":2,"name":"[Mysql\uff0fMariaDB]\u7d42\u7aef\u6a5f\u64cd\u4f5c\u6307\u4ee4~"}]},{"@type":"WebSite","@id":"https:\/\/www.citerp.com.tw\/citwordpress\/#website","url":"https:\/\/www.citerp.com.tw\/citwordpress\/","name":"\u514d\u8cbb\u8cc7\u6e90\u5206\u4eab","description":"\u514d\u8cbb\u8cc7\u6e90\u5171\u4eab","publisher":{"@id":"https:\/\/www.citerp.com.tw\/citwordpress\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.citerp.com.tw\/citwordpress\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-TW"},{"@type":"Organization","@id":"https:\/\/www.citerp.com.tw\/citwordpress\/#organization","name":"\u514d\u8cbb\u8cc7\u6e90\u5206\u4eab","url":"https:\/\/www.citerp.com.tw\/citwordpress\/","logo":{"@type":"ImageObject","inLanguage":"zh-TW","@id":"https:\/\/www.citerp.com.tw\/citwordpress\/#\/schema\/logo\/image\/","url":"https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/06\/find2.png","contentUrl":"https:\/\/www.citerp.com.tw\/citwordpress\/wp-content\/uploads\/2022\/06\/find2.png","width":128,"height":128,"caption":"\u514d\u8cbb\u8cc7\u6e90\u5206\u4eab"},"image":{"@id":"https:\/\/www.citerp.com.tw\/citwordpress\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/citerptw"]},{"@type":"Person","@id":"https:\/\/www.citerp.com.tw\/citwordpress\/#\/schema\/person\/28cfdf2cec7315f2efe90573114fed37","name":"\u5eb7\u6377Qoo","image":{"@type":"ImageObject","inLanguage":"zh-TW","@id":"https:\/\/www.citerp.com.tw\/citwordpress\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/87fa59ff417f35a6d53f05479d9dd918615095cadddb02e447511edc4f8b6302?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/87fa59ff417f35a6d53f05479d9dd918615095cadddb02e447511edc4f8b6302?s=96&d=mm&r=g","caption":"\u5eb7\u6377Qoo"},"url":"https:\/\/www.citerp.com.tw\/citwordpress\/author\/cit001\/"}]}},"_links":{"self":[{"href":"https:\/\/www.citerp.com.tw\/citwordpress\/wp-json\/wp\/v2\/posts\/1822","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.citerp.com.tw\/citwordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.citerp.com.tw\/citwordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.citerp.com.tw\/citwordpress\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.citerp.com.tw\/citwordpress\/wp-json\/wp\/v2\/comments?post=1822"}],"version-history":[{"count":0,"href":"https:\/\/www.citerp.com.tw\/citwordpress\/wp-json\/wp\/v2\/posts\/1822\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.citerp.com.tw\/citwordpress\/wp-json\/wp\/v2\/media\/1839"}],"wp:attachment":[{"href":"https:\/\/www.citerp.com.tw\/citwordpress\/wp-json\/wp\/v2\/media?parent=1822"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.citerp.com.tw\/citwordpress\/wp-json\/wp\/v2\/categories?post=1822"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.citerp.com.tw\/citwordpress\/wp-json\/wp\/v2\/tags?post=1822"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}