Common issues
Update rows by composite key
UPDATE orders SET quantity = 3 WHERE customer_id = 538 AND product_id = 800;Can't connect to a local MySQL server when using Docker
If only MySQL is in Docker
docker run -p 3306:3306 --name my-mysql -d mysql:latestIf only n8n is in Docker
If MySQL and n8n are running in separate Docker containers
If MySQL and n8n are running in the same Docker container
Decimal numbers returned as strings
Last updated
Was this helpful?