{"id":667,"date":"2010-03-11T12:57:24","date_gmt":"2010-03-11T12:57:24","guid":{"rendered":"http:\/\/kedar.nitty-witty.com\/?p=667"},"modified":"2023-09-05T07:47:10","modified_gmt":"2023-09-05T07:47:10","slug":"sql-syntax-with-c-style-comments-in-mysqldump","status":"publish","type":"post","link":"https:\/\/kedar.nitty-witty.com\/blog\/sql-syntax-with-c-style-comments-in-mysqldump","title":{"rendered":"SQL syntax with \/*! c-style comments in MySQLdump"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">In mysql we have &#8212; , \/* and \/*! comments. &nbsp;This post is mainly about very basic c-style comments.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\/*! : C-Style comments in MySQL<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">We normally see comments in MySQLdump as follows:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\/*!40000 ALTER TABLE `a` DISABLE KEYS *\/;<\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>\/*!50013 DEFINER=`nitty_witty_com`@`%` SQL SECURITY DEFINER *\/<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">These are actually C-Style comments which has embeded sql and treated specially by MySQL server, but ignored by other database engines.<br>This helps in writing portable comments, it&#8217;s treated as a part of surrounding SQL by MySQL while ignored by other databases.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">But still you may wonder what are these numbers after \/*! &#8211;&nbsp;\/*!40000 or \/*!50013 !!<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>There are two ways you can write the C-Style comments.<br><\/strong> 1. \/*! SQL *\/<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">When SQL is embeded with comments [\/*! and *\/] it&#8217;s executed by MySQL server along with surrounding SQL.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">2. \/*!version-number SQL *\/<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">When SQL is embeded with comment that begins with \/*! follwed by a version number, the SQL becomes version specific.<br>MySQL executes SQL body only if it server&#8217;s version is atleast as recent as version-number.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So if your MySQL version is 5.x, following syntax will give error.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><em>SHOW \/*!60000 status *\/;<\/em><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">but following will work fine!<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><em>SHOW \/*!50000 status *\/;<\/em><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\" id=\"_mcePaste\"><span style=\"font-weight: normal;\"><span style=\"font-weight: normal;\"><span style=\"font-size: 13px;\">Similarly see below example:<\/span><\/span><\/span><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><span style=\"font-weight: normal;\"><span style=\"font-weight: normal;\"><span style=\"font-size: 13px;\"><em>mysql&gt; show \/*!50077 full*\/ tables;\n+----------------+------------+\n| Tables_in_test | Table_type |\n+----------------+------------+\n| comments &nbsp; &nbsp; &nbsp; | BASE TABLE |\n+----------------+------------+\n1 row in set (0.00 sec)<\/em><\/span><\/span><\/span><\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><em>mysql&gt; show \/*!50078 full*\/ tables;<br>+----------------+<br>| Tables_in_test |<br>+----------------+<br>| comments &nbsp; &nbsp; &nbsp; |<br>+----------------+<br>1 row in set (0.00 sec)<\/em><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Above code works at first attempt as MySQL Version was 5.0.77 &nbsp;but for version specific comment \/*!50078 it don&#8217;t.<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Further this can be used for adjusting the syntax or keywords change in latest releases. For eg MySQL 8.0.26 has replaced the word &#8220;slave&#8221; with &#8220;replica&#8221; in variables and you can use your query to hint the execution as:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SELECT @@global.version as version, @@global.hostname as service \\\n\/*!80026 , @@global.replica_exec_mode as replica_exec_mode *\/ \\\n\/*<em>!80026 , @@global.replica_skip_errors as replica_skip_errors<\/em> *\/\\G<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Other comments in MySQL:<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>&#8212; : double slash and a space or # : Hash<\/strong><\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">This is spanned till end of the line.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>\/* :<\/strong><\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">This is a normal multi-line comment.<\/p>\n","protected":false},"excerpt":{"rendered":"In mysql we have &#8212; , \/* and \/*! comments. &nbsp;This post is mainly about very basic c-style comments. \/*! : C-Style comments in MySQL We normally see comments in&hellip;\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[8,377],"tags":[547,549,238,681,27,427],"class_list":["post-667","post","type-post","status-publish","format-standard","category-mysql","category-mysql-articles","tag-547","tag-80001-2","tag-c-style-comments-in-mysqldump","tag-comment-in-sql","tag-comments","tag-mysql"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"About c-style comments MySQL syntaxes with \/*! in MySQLdump\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Kedar\"\/>\n\t<meta name=\"google-site-verification\" content=\"_Bu1h5r0PxIC0D2jBVdmYN45RTeG9ogcX85XLkbG1qA\" \/>\n\t<meta name=\"msvalidate.01\" content=\"116B62074CBCA1BA99B8CCE09CCF2FB8\" \/>\n\t<meta name=\"keywords\" content=\"mysqldump,comments,\/*!,mysql,c-style,\/*!57000,\/*!80001,c-style comments in mysqldump,comment in sql\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/kedar.nitty-witty.com\/blog\/sql-syntax-with-c-style-comments-in-mysqldump\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Change Is Inevitable | Kedar Vaijanapurkar&#039;s Blog for MySQL, technology and various subjects\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"SQL syntax with \/*! c-style comments in MySQLdump | Change Is Inevitable\" \/>\n\t\t<meta property=\"og:description\" content=\"About c-style comments MySQL syntaxes with \/*! in MySQLdump\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/kedar.nitty-witty.com\/blog\/sql-syntax-with-c-style-comments-in-mysqldump\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2010-03-11T12:57:24+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2023-09-05T07:47:10+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"SQL syntax with \/*! c-style comments in MySQLdump | Change Is Inevitable\" \/>\n\t\t<meta name=\"twitter:description\" content=\"About c-style comments MySQL syntaxes with \/*! in MySQLdump\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/sql-syntax-with-c-style-comments-in-mysqldump#article\",\"name\":\"SQL syntax with \\\/*! c-style comments in MySQLdump | Change Is Inevitable\",\"headline\":\"SQL syntax with \\\/*! c-style comments in MySQLdump\",\"author\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/sql-syntax-with-c-style-comments-in-mysqldump#articleImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kedar\"},\"datePublished\":\"2010-03-11T12:57:24+00:00\",\"dateModified\":\"2023-09-05T07:47:10+00:00\",\"inLanguage\":\"en-US\",\"commentCount\":3,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/sql-syntax-with-c-style-comments-in-mysqldump#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/sql-syntax-with-c-style-comments-in-mysqldump#webpage\"},\"articleSection\":\"MySQL, MySQL-Articles, \\\/*!57000, \\\/*!80001, c-style comments in mysqldump, comment in sql, comments, MySQL\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/sql-syntax-with-c-style-comments-in-mysqldump#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql#listItem\",\"name\":\"MySQL\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql#listItem\",\"position\":2,\"name\":\"MySQL\",\"item\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql\\\/mysql-articles#listItem\",\"name\":\"MySQL-Articles\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql\\\/mysql-articles#listItem\",\"position\":3,\"name\":\"MySQL-Articles\",\"item\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql\\\/mysql-articles\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/sql-syntax-with-c-style-comments-in-mysqldump#listItem\",\"name\":\"SQL syntax with \\\/*! c-style comments in MySQLdump\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql#listItem\",\"name\":\"MySQL\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/sql-syntax-with-c-style-comments-in-mysqldump#listItem\",\"position\":4,\"name\":\"SQL syntax with \\\/*! c-style comments in MySQLdump\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql\\\/mysql-articles#listItem\",\"name\":\"MySQL-Articles\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#person\",\"name\":\"Kedar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/sql-syntax-with-c-style-comments-in-mysqldump#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kedar\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\",\"url\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin\",\"name\":\"Kedar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/sql-syntax-with-c-style-comments-in-mysqldump#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kedar\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/sql-syntax-with-c-style-comments-in-mysqldump#webpage\",\"url\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/sql-syntax-with-c-style-comments-in-mysqldump\",\"name\":\"SQL syntax with \\\/*! c-style comments in MySQLdump | Change Is Inevitable\",\"description\":\"About c-style comments MySQL syntaxes with \\\/*! in MySQLdump\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/sql-syntax-with-c-style-comments-in-mysqldump#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\"},\"datePublished\":\"2010-03-11T12:57:24+00:00\",\"dateModified\":\"2023-09-05T07:47:10+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/\",\"name\":\"..::CHANGE is INEVITABLE::..\",\"description\":\"Kedar Vaijanapurkar's Blog for MySQL, technology and various subjects\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"SQL syntax with \/*! c-style comments in MySQLdump | Change Is Inevitable","description":"About c-style comments MySQL syntaxes with \/*! in MySQLdump","canonical_url":"https:\/\/kedar.nitty-witty.com\/blog\/sql-syntax-with-c-style-comments-in-mysqldump","robots":"max-image-preview:large","keywords":"mysqldump,comments,\/*!,mysql,c-style,\/*!57000,\/*!80001,c-style comments in mysqldump,comment in sql","webmasterTools":{"google-site-verification":"_Bu1h5r0PxIC0D2jBVdmYN45RTeG9ogcX85XLkbG1qA","msvalidate.01":"116B62074CBCA1BA99B8CCE09CCF2FB8","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kedar.nitty-witty.com\/blog\/sql-syntax-with-c-style-comments-in-mysqldump#article","name":"SQL syntax with \/*! c-style comments in MySQLdump | Change Is Inevitable","headline":"SQL syntax with \/*! c-style comments in MySQLdump","author":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author"},"publisher":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/#person"},"image":{"@type":"ImageObject","@id":"https:\/\/kedar.nitty-witty.com\/blog\/sql-syntax-with-c-style-comments-in-mysqldump#articleImage","url":"https:\/\/secure.gravatar.com\/avatar\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kedar"},"datePublished":"2010-03-11T12:57:24+00:00","dateModified":"2023-09-05T07:47:10+00:00","inLanguage":"en-US","commentCount":3,"mainEntityOfPage":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/sql-syntax-with-c-style-comments-in-mysqldump#webpage"},"isPartOf":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/sql-syntax-with-c-style-comments-in-mysqldump#webpage"},"articleSection":"MySQL, MySQL-Articles, \/*!57000, \/*!80001, c-style comments in mysqldump, comment in sql, comments, MySQL"},{"@type":"BreadcrumbList","@id":"https:\/\/kedar.nitty-witty.com\/blog\/sql-syntax-with-c-style-comments-in-mysqldump#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/kedar.nitty-witty.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql#listItem","name":"MySQL"}},{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql#listItem","position":2,"name":"MySQL","item":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql","nextItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\/mysql-articles#listItem","name":"MySQL-Articles"},"previousItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\/mysql-articles#listItem","position":3,"name":"MySQL-Articles","item":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\/mysql-articles","nextItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/sql-syntax-with-c-style-comments-in-mysqldump#listItem","name":"SQL syntax with \/*! c-style comments in MySQLdump"},"previousItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql#listItem","name":"MySQL"}},{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/sql-syntax-with-c-style-comments-in-mysqldump#listItem","position":4,"name":"SQL syntax with \/*! c-style comments in MySQLdump","previousItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\/mysql-articles#listItem","name":"MySQL-Articles"}}]},{"@type":"Person","@id":"https:\/\/kedar.nitty-witty.com\/blog\/#person","name":"Kedar","image":{"@type":"ImageObject","@id":"https:\/\/kedar.nitty-witty.com\/blog\/sql-syntax-with-c-style-comments-in-mysqldump#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kedar"}},{"@type":"Person","@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author","url":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin","name":"Kedar","image":{"@type":"ImageObject","@id":"https:\/\/kedar.nitty-witty.com\/blog\/sql-syntax-with-c-style-comments-in-mysqldump#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kedar"}},{"@type":"WebPage","@id":"https:\/\/kedar.nitty-witty.com\/blog\/sql-syntax-with-c-style-comments-in-mysqldump#webpage","url":"https:\/\/kedar.nitty-witty.com\/blog\/sql-syntax-with-c-style-comments-in-mysqldump","name":"SQL syntax with \/*! c-style comments in MySQLdump | Change Is Inevitable","description":"About c-style comments MySQL syntaxes with \/*! in MySQLdump","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/sql-syntax-with-c-style-comments-in-mysqldump#breadcrumblist"},"author":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author"},"creator":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author"},"datePublished":"2010-03-11T12:57:24+00:00","dateModified":"2023-09-05T07:47:10+00:00"},{"@type":"WebSite","@id":"https:\/\/kedar.nitty-witty.com\/blog\/#website","url":"https:\/\/kedar.nitty-witty.com\/blog\/","name":"..::CHANGE is INEVITABLE::..","description":"Kedar Vaijanapurkar's Blog for MySQL, technology and various subjects","inLanguage":"en-US","publisher":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/#person"}}]},"og:locale":"en_US","og:site_name":"Change Is Inevitable | Kedar Vaijanapurkar's Blog for MySQL, technology and various subjects","og:type":"article","og:title":"SQL syntax with \/*! c-style comments in MySQLdump | Change Is Inevitable","og:description":"About c-style comments MySQL syntaxes with \/*! in MySQLdump","og:url":"https:\/\/kedar.nitty-witty.com\/blog\/sql-syntax-with-c-style-comments-in-mysqldump","article:published_time":"2010-03-11T12:57:24+00:00","article:modified_time":"2023-09-05T07:47:10+00:00","twitter:card":"summary","twitter:title":"SQL syntax with \/*! c-style comments in MySQLdump | Change Is Inevitable","twitter:description":"About c-style comments MySQL syntaxes with \/*! in MySQLdump"},"aioseo_meta_data":{"post_id":"667","title":"SQL syntax with \/*! c-style comments in MySQLdump | #site_title","description":"About c-style comments MySQL syntaxes with \/*! in MySQLdump","keywords":[{"label":"mysqldump","value":"mysqldump"},{"label":"comments","value":"comments"},{"label":"\/*!","value":"\/*!"},{"label":"mysql","value":"mysql"},{"label":"c-style","value":"c-style"}],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-03-24 17:44:27","updated":"2025-08-16 19:06:59","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kedar.nitty-witty.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\" title=\"MySQL\">MySQL<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\/mysql-articles\" title=\"MySQL-Articles\">MySQL-Articles<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tSQL syntax with \/*! c-style comments in MySQLdump\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/kedar.nitty-witty.com\/blog"},{"label":"MySQL","link":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql"},{"label":"MySQL-Articles","link":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\/mysql-articles"},{"label":"SQL syntax with \/*! c-style comments in MySQLdump","link":"https:\/\/kedar.nitty-witty.com\/blog\/sql-syntax-with-c-style-comments-in-mysqldump"}],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts\/667","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/comments?post=667"}],"version-history":[{"count":5,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts\/667\/revisions"}],"predecessor-version":[{"id":3027,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts\/667\/revisions\/3027"}],"wp:attachment":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/media?parent=667"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/categories?post=667"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/tags?post=667"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}