﻿{"id":2125,"date":"2013-03-08T19:14:11","date_gmt":"2013-03-08T10:14:11","guid":{"rendered":"http:\/\/fujiitoshiki.com\/improvesociety\/?p=2125"},"modified":"2014-07-31T13:48:23","modified_gmt":"2014-07-31T04:48:23","slug":"how-to-export-excel-worksheets-to-database-with-sql-statement-file","status":"publish","type":"post","link":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125","title":{"rendered":"How to export Excel worksheets to database with SQL statement file."},"content":{"rendered":"<div class=\"theContentWrap-ccc\"><p>When you&#8217;d like to register Excel worksheets in database, you could &#8216;BULK INSERT&#8217; txt file into database. In this article, I&#8217;d like to explain VBA code that exports Excel worksheets to sql file. It&#8217;s assumed that worksheet name is same as table name and first column order is same as table attribute order. <\/p>\n<pre class=\"toolbar-overlay:true lang:vb decode:true \" >Option Explicit\r\n\r\nSub EXPORT_SQL()\r\n    Dim mySht   As Worksheet\r\n    Dim myAr    As Variant\r\n    Dim i       As Long\r\n    Dim j       As Long\r\n    Dim mySQL   As String\r\n    Dim SQLAr() As String\r\n    Dim myFSO   As Object\r\n    Dim myTS    As Object\r\n    Dim myPath  As String\r\n    Dim n       As Long\r\n    myPath = ThisWorkbook.Path\r\n    For Each mySht In Worksheets\r\n        myAr = mySht.UsedRange.Resize(mySht.UsedRange.Rows.Count - 1).Offset(1)\r\n        ReDim SQLAr(LBound(myAr) To UBound(myAr))\r\n        For i = LBound(myAr) To UBound(myAr)\r\n            For j = LBound(myAr, 2) To UBound(myAr, 2)\r\n                If myAr(i, j) = Empty Then\r\n                    mySQL = mySQL & \"NULL, \"\r\n                Else\r\n                    mySQL = mySQL & \"'\" & myAr(i, j) & \"', \"\r\n                End If\r\n            Next j\r\n            mySQL = \"INSERT INTO \" &amp; mySht.Name &amp; \" VALUES (\" &amp; Left(mySQL, Len(mySQL) - 2) &amp; \")\"\r\n            SQLAr(i) = mySQL\r\n            mySQL = \"\"\r\n        Next i\r\n        Set myFSO = CreateObject(\"Scripting.FileSystemObject\")\r\n        Set myTS = myFSO.CreateTextFile(Filename:=myPath &amp; \"\\\" &amp; mySht.Name &amp; \".sql\", Overwrite:=True)\r\n        For n = LBound(SQLAr) To UBound(SQLAr)\r\n            myTS.writeline SQLAr(n)\r\n        Next n\r\n        myTS.Close\r\n        Set myFSO = Nothing\r\n        Set myTS = Nothing\r\n    Next mySht\r\nEnd Sub\r\n<\/pre>\n<p><iframe style=\"width:120px;height:240px;\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" frameborder=\"0\" src=\"\/\/ws-na.amazon-adsystem.com\/widgets\/q?ServiceVersion=20070822&#038;OneJS=1&#038;Operation=GetAdHtml&#038;MarketPlace=US&#038;source=ss&#038;ref=ss_til&#038;ad_type=product_link&#038;tracking_id=improsocie-20&#038;marketplace=amazon&#038;region=US&#038;placement=0123820227&#038;asins=0123820227&#038;linkId=LXJBROSN54NZGFQG&#038;show_border=true&#038;link_opens_in_new_window=true\"><br \/>\n<\/iframe><iframe style=\"width:120px;height:240px;\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" frameborder=\"0\" src=\"\/\/ws-na.amazon-adsystem.com\/widgets\/q?ServiceVersion=20070822&#038;OneJS=1&#038;Operation=GetAdHtml&#038;MarketPlace=US&#038;source=ss&#038;ref=ss_til&#038;ad_type=product_link&#038;tracking_id=improsocie-20&#038;marketplace=amazon&#038;region=US&#038;placement=B00JI50L0M&#038;asins=B00JI50L0M&#038;linkId=TBXDLJXWCL2FZME3&#038;show_border=true&#038;link_opens_in_new_window=true\"><br \/>\n<\/iframe><\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>When you&#8217;d like to register Excel worksheets in database, you could &#8216;BULK INSERT&#8217; txt file i &hellip; <a href=\"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125\" class=\"more-link\"><span class=\"screen-reader-text\">&#8220;How to export Excel worksheets to database with SQL statement file.&#8221; \u306e<\/span>\u7d9a\u304d\u3092\u8aad\u3080<\/a><\/p>\n","protected":false},"author":1,"featured_media":6026,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[1,6],"tags":[],"class_list":["post-2125","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-database","category-excel"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"I&#039;d like to explain VBA code that exports Excel worksheets to sql file. It&#039;s assumed that worksheet name is same as table name and column order is same as table attribute.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"admin\"\/>\n\t<meta name=\"keywords\" content=\"excel,vba,sql,database,export,insert\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"ja_JP\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Improve Society | with Database, Statistics and Nutrition\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How to export Excel worksheets to database with SQL statement file. | Improve Society\" \/>\n\t\t<meta property=\"og:description\" content=\"I&#039;d like to explain VBA code that exports Excel worksheets to sql file. It&#039;s assumed that worksheet name is same as table name and column order is same as table attribute.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2013-03-08T10:14:11+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2014-07-31T04:48:23+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to export Excel worksheets to database with SQL statement file. | Improve Society\" \/>\n\t\t<meta name=\"twitter:description\" content=\"I&#039;d like to explain VBA code that exports Excel worksheets to sql file. It&#039;s assumed that worksheet name is same as table name and column order is same as table attribute.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=2125#article\",\"name\":\"How to export Excel worksheets to database with SQL statement file. | Improve Society\",\"headline\":\"How to export Excel worksheets to database with SQL statement file.\",\"author\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/wp-content\\\/uploads\\\/SpreadSheetIcon.jpg\",\"width\":225,\"height\":225},\"datePublished\":\"2013-03-08T19:14:11+09:00\",\"dateModified\":\"2014-07-31T13:48:23+09:00\",\"inLanguage\":\"ja\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=2125#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=2125#webpage\"},\"articleSection\":\"Database, EXCEL\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=2125#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?cat=1#listItem\",\"name\":\"Database\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?cat=1#listItem\",\"position\":2,\"name\":\"Database\",\"item\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?cat=1\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=2125#listItem\",\"name\":\"How to export Excel worksheets to database with SQL statement file.\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=2125#listItem\",\"position\":3,\"name\":\"How to export Excel worksheets to database with SQL statement file.\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?cat=1#listItem\",\"name\":\"Database\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/#person\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=2125#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4ae816121e2fdbfad4bfba7268a6d5a7910d91a047394738018fa9b82a7da661?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"admin\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?author=1#author\",\"url\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?author=1\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=2125#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4ae816121e2fdbfad4bfba7268a6d5a7910d91a047394738018fa9b82a7da661?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"admin\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=2125#webpage\",\"url\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=2125\",\"name\":\"How to export Excel worksheets to database with SQL statement file. | Improve Society\",\"description\":\"I'd like to explain VBA code that exports Excel worksheets to sql file. It's assumed that worksheet name is same as table name and column order is same as table attribute.\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=2125#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/wp-content\\\/uploads\\\/SpreadSheetIcon.jpg\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=2125\\\/#mainImage\",\"width\":225,\"height\":225},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=2125#mainImage\"},\"datePublished\":\"2013-03-08T19:14:11+09:00\",\"dateModified\":\"2014-07-31T13:48:23+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/#website\",\"url\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/\",\"name\":\"Improve Society\",\"description\":\"with Database, Statistics and Nutrition\",\"inLanguage\":\"ja\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to export Excel worksheets to database with SQL statement file. | Improve Society","description":"I'd like to explain VBA code that exports Excel worksheets to sql file. It's assumed that worksheet name is same as table name and column order is same as table attribute.","canonical_url":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125","robots":"max-image-preview:large","keywords":"excel,vba,sql,database,export,insert","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125#article","name":"How to export Excel worksheets to database with SQL statement file. | Improve Society","headline":"How to export Excel worksheets to database with SQL statement file.","author":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?author=1#author"},"publisher":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/www.fujiitoshiki.com\/improvesociety\/wp-content\/uploads\/SpreadSheetIcon.jpg","width":225,"height":225},"datePublished":"2013-03-08T19:14:11+09:00","dateModified":"2014-07-31T13:48:23+09:00","inLanguage":"ja","mainEntityOfPage":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125#webpage"},"isPartOf":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125#webpage"},"articleSection":"Database, EXCEL"},{"@type":"BreadcrumbList","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety#listItem","position":1,"name":"Home","item":"https:\/\/www.fujiitoshiki.com\/improvesociety","nextItem":{"@type":"ListItem","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?cat=1#listItem","name":"Database"}},{"@type":"ListItem","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?cat=1#listItem","position":2,"name":"Database","item":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?cat=1","nextItem":{"@type":"ListItem","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125#listItem","name":"How to export Excel worksheets to database with SQL statement file."},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125#listItem","position":3,"name":"How to export Excel worksheets to database with SQL statement file.","previousItem":{"@type":"ListItem","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?cat=1#listItem","name":"Database"}}]},{"@type":"Person","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/#person","name":"admin","image":{"@type":"ImageObject","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/4ae816121e2fdbfad4bfba7268a6d5a7910d91a047394738018fa9b82a7da661?s=96&d=mm&r=g","width":96,"height":96,"caption":"admin"}},{"@type":"Person","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?author=1#author","url":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?author=1","name":"admin","image":{"@type":"ImageObject","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/4ae816121e2fdbfad4bfba7268a6d5a7910d91a047394738018fa9b82a7da661?s=96&d=mm&r=g","width":96,"height":96,"caption":"admin"}},{"@type":"WebPage","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125#webpage","url":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125","name":"How to export Excel worksheets to database with SQL statement file. | Improve Society","description":"I'd like to explain VBA code that exports Excel worksheets to sql file. It's assumed that worksheet name is same as table name and column order is same as table attribute.","inLanguage":"ja","isPartOf":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/#website"},"breadcrumb":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125#breadcrumblist"},"author":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?author=1#author"},"creator":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?author=1#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.fujiitoshiki.com\/improvesociety\/wp-content\/uploads\/SpreadSheetIcon.jpg","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125\/#mainImage","width":225,"height":225},"primaryImageOfPage":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125#mainImage"},"datePublished":"2013-03-08T19:14:11+09:00","dateModified":"2014-07-31T13:48:23+09:00"},{"@type":"WebSite","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/#website","url":"https:\/\/www.fujiitoshiki.com\/improvesociety\/","name":"Improve Society","description":"with Database, Statistics and Nutrition","inLanguage":"ja","publisher":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/#person"}}]},"og:locale":"ja_JP","og:site_name":"Improve Society | with Database, Statistics and Nutrition","og:type":"article","og:title":"How to export Excel worksheets to database with SQL statement file. | Improve Society","og:description":"I'd like to explain VBA code that exports Excel worksheets to sql file. It's assumed that worksheet name is same as table name and column order is same as table attribute.","og:url":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125","article:published_time":"2013-03-08T10:14:11+00:00","article:modified_time":"2014-07-31T04:48:23+00:00","twitter:card":"summary","twitter:title":"How to export Excel worksheets to database with SQL statement file. | Improve Society","twitter:description":"I'd like to explain VBA code that exports Excel worksheets to sql file. It's assumed that worksheet name is same as table name and column order is same as table attribute."},"aioseo_meta_data":{"post_id":"2125","title":"How to export Excel worksheets to database with SQL statement file. | #site_title","description":"I'd like to explain VBA code that exports Excel worksheets to sql file. It's assumed that worksheet name is same as table name and column order is same as table attribute.","keywords":[{"label":"Excel","value":"Excel"},{"label":"VBA","value":"VBA"},{"label":"SQL","value":"SQL"},{"label":"database","value":"database"},{"label":"export","value":"export"},{"label":"insert","value":"insert"}],"keyphrases":null,"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":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"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":"","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":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-21 23:41:52","updated":"2025-06-04 04:56:51","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.fujiitoshiki.com\/improvesociety\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.fujiitoshiki.com\/improvesociety\/?cat=1\" title=\"Database\">Database<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to export Excel worksheets to database with SQL statement file.\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.fujiitoshiki.com\/improvesociety"},{"label":"Database","link":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?cat=1"},{"label":"How to export Excel worksheets to database with SQL statement file.","link":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=2125"}],"_links":{"self":[{"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=\/wp\/v2\/posts\/2125","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2125"}],"version-history":[{"count":10,"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=\/wp\/v2\/posts\/2125\/revisions"}],"predecessor-version":[{"id":5948,"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=\/wp\/v2\/posts\/2125\/revisions\/5948"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=\/wp\/v2\/media\/6026"}],"wp:attachment":[{"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2125"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2125"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2125"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}