AutomationFlowsData & Sheets › Import Data From Google Sheets Into Mysql

Import Data From Google Sheets Into Mysql

Import Data From Google Sheets Into Mysql. Uses mySql, googleSheets. Scheduled trigger; 3 nodes.

Cron / scheduled trigger★☆☆☆☆ complexity3 nodesMy SqlGoogle Sheets
Data & Sheets Trigger: Cron / scheduled Nodes: 3 Complexity: ★☆☆☆☆

The workflow JSON

Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →

Download .json
{
  "nodes": [
    {
      "name": "Cron",
      "type": "n8n-nodes-base.cron",
      "position": [
        100,
        160
      ],
      "parameters": {
        "triggerTimes": {
          "item": [
            {
              "hour": 5,
              "mode": "everyWeek"
            }
          ]
        }
      },
      "typeVersion": 1
    },
    {
      "name": "MySQL - insert",
      "type": "n8n-nodes-base.mySql",
      "position": [
        500,
        160
      ],
      "parameters": {
        "table": "books",
        "columns": "title, price",
        "options": {
          "ignore": true,
          "priority": "LOW_PRIORITY"
        }
      },
      "credentials": {
        "mySql": {
          "name": "<your credential>"
        }
      },
      "typeVersion": 1
    },
    {
      "name": "Google Sheets - read",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        300,
        160
      ],
      "parameters": {
        "options": {},
        "sheetId": "qwertz",
        "authentication": "oAuth2"
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "name": "<your credential>"
        }
      },
      "typeVersion": 1
    }
  ],
  "connections": {
    "Cron": {
      "main": [
        [
          {
            "node": "Google Sheets - read",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Google Sheets - read": {
      "main": [
        [
          {
            "node": "MySQL - insert",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}

Credentials you'll need

Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.

About this workflow

Import Data From Google Sheets Into Mysql. Uses mySql, googleSheets. Scheduled trigger; 3 nodes.

Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →

More Data & Sheets workflows → · Browse all categories →