Connect Airtable to MySQL
Keep Airtable and MySQL in step without copying records between them by hand. Autonoly watches Airtable for the events you care about and runs the matching action in MySQL — on a free plan, with no code and nothing to host.
What you can automate between Airtable and MySQL
When → Then
New record created in table in Airtable → Insert records in MySQL
When → Then
Record field value updated in Airtable → Update records in MySQL
When → Then
Record status changed in Airtable → Bulk insert or update in MySQL
When → Then
View filter criteria matched in Airtable → Delete records in MySQL
When → Then
Scheduled polling interval elapsed in Airtable → Run a transaction in MySQL
When → Then
Webhook from external system received in Airtable → Insert records in MySQL
Airtable triggers and MySQL actions
Airtable triggers
- New record created in table
- Record field value updated
- Record status changed
- View filter criteria matched
- Scheduled polling interval elapsed
- Webhook from external system received
MySQL actions
- Run a SELECT query
- Insert records
- Update records
- Delete records
- Run a transaction
- Bulk insert or update
- Aggregate records
How to connect Airtable to MySQL
- Connect your Airtable account. Authorize Autonoly using your Airtable API key or OAuth token. Your credentials are encrypted and stored securely.
- Select your base and table. Choose which Airtable base, table, and view your workflow will interact with.
- Add your connection details. Host, port, database and credentials, stored encrypted.
- Allow the connection. Permit access from Autonoly, or run against a read replica.
- Pick your trigger and action. Choose the Airtable event that should start the workflow, then the MySQL action it should run. Add a condition step if only some records should pass through.
- Test with one record, then turn it on. Run the workflow once against a real record and check the result in MySQL before enabling it.
What to watch when writing Airtable data into MySQL
Match the types before the first run
A date in the source is often text in the destination. Decide how each field maps and cast explicitly rather than relying on the database to coerce it, which is where silent corruption starts.
Use an upsert key, not a blind insert
Pick a column that uniquely identifies the record and update on conflict. A workflow that only inserts will duplicate every row the second time a record changes.
Batch large syncs
Writing thousands of rows one statement at a time is slow and holds connections open. Use the bulk operation for backfills and keep single writes for ongoing changes.
Constrain the credentials
Give the workflow a user that can only touch the tables it needs. A sync job does not need schema-drop rights.
Syncing the other way instead? Connect MySQL to Airtable covers that direction, which raises different questions about which system holds the authoritative copy.
Frequently asked questions
How do I connect Airtable to MySQL?
Connect both accounts to Autonoly, choose a Airtable trigger such as “New record created in table”, then pick the MySQL action you want to run. The workflow goes live as soon as you save it — there is no code to write and nothing to host.
Is the Airtable to MySQL integration free?
Autonoly has a free plan you can build and run this workflow on. Paid plans add volume and advanced steps. See the pricing page for current limits.
How quickly does data sync between Airtable and MySQL?
Workflows run as soon as the Airtable trigger fires. You can also run them on a schedule if you would rather batch updates than send them one at a time.
Can I filter which Airtable records reach MySQL?
Yes. Add a condition step between the trigger and the action, and only records matching your rule continue. This is the usual way to keep test or draft records out of a production system.
Do I need a developer to set this up?
No. The builder is visual, and both Airtable and MySQL connect through standard authentication. If you do want code, you can drop into a script step at any point in the workflow.
More Airtable and MySQL integrations
Related automations, guides and terms
More on automating Airtable and MySQL.