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 →
{
"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.
googleSheetsOAuth2ApimySql
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
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 →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Import Data From Mysql Into Google Sheets. Uses mySql, googleSheets. Scheduled trigger; 3 nodes.
This workflow queries a table in MySQL and inserts the data into Google Sheets.
This workflow imports data from Google Sheets into a MySQL database.
Import data from Google Sheets into MySQL. Uses mySql, googleSheets. Scheduled trigger; 3 nodes.