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,
420
],
"parameters": {
"triggerTimes": {
"item": [
{
"hour": 5,
"mode": "everyWeek"
}
]
}
},
"typeVersion": 1
},
{
"name": "MySQL - select",
"type": "n8n-nodes-base.mySql",
"position": [
300,
420
],
"parameters": {
"query": "SELECT * FROM books;",
"operation": "executeQuery"
},
"credentials": {
"mySql": {
"name": "<your credential>"
}
},
"typeVersion": 1
},
{
"name": "Google Sheets - write",
"type": "n8n-nodes-base.googleSheets",
"position": [
500,
420
],
"parameters": {
"options": {},
"sheetId": "qwertz",
"operation": "append",
"authentication": "oAuth2"
},
"credentials": {
"googleSheetsOAuth2Api": {
"name": "<your credential>"
}
},
"typeVersion": 1
}
],
"connections": {
"Cron": {
"main": [
[
{
"node": "MySQL - select",
"type": "main",
"index": 0
}
]
]
},
"MySQL - select": {
"main": [
[
{
"node": "Google Sheets - write",
"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
About this workflow
Import Data From Mysql Into Google Sheets. Uses mySql, googleSheets. Scheduled trigger; 3 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →