DEV Community

Cover image for Performing SQL query on MySQL server
Kaiwalya Koparkar for Elestio

Posted on • Originally published at blog.elest.io on

Performing SQL query on MySQL server

Hey everyone, In this blog we are going to see how you can create API Endpoints that perform SQL query on MySQL server. During this tutorial, we will be creating the workflow from scratch. You can choose to use different databases to perform similar actions. Before we start, make sure you have deployed N8N, we will be self-hosting it on Elestio.

What is N8N?

N8N is an open-source workflow automation tool that allows you to automate tasks and workflows by connecting various applications, services, and APIs together. It provides a visual interface where users can create workflows using a node-based system, similar to flowcharts, without needing to write any code. You can integrate n8n with a wide range of applications and services, including popular ones like Google Drive, Slack, GitHub, and more. This flexibility enables users to automate a variety of tasks, such as data synchronization, notifications, data processing, and more.

This application is a simple workflow that takes id as input and returns a record with the ID after querying the SQL server. The end of the workflow should look something similar to:

N8N: Performing SQL query on MySQL server

Configuring Webhook

When you are starting, click on the "+" button and add the following Webhook and MySQL components. After that click on the Webhook component to configure it to accept the incoming request.

N8N: Performing SQL query on MySQL server

Once you click on Webhook you can copy the Test URL/Production URL , Select the HTTP Method. Here we are trying to make a GET request so we have selected it from the drop-down menu. Let's keep Authentication as none for simplicity but make sure while in production you add the authentication to provide security to the endpoints. Additionally, we will configure the response to be made When Last Node Finishes under Respond.

N8N: Performing SQL query on MySQL server

Configuring MySQL Server

Now it's time to configure the MySQL component. In this configuration, we connect this component with our MySQL server that is hosted on the cloud. Here we have already deployed MySQL Server on Elestio and you can too by heading over to Elestio Dashboard.

N8N: Performing SQL query on MySQL server

Once you click on Credential to connect with section and click on Create New Credential.

N8N: Performing SQL query on MySQL server

Now head over to your deployed MySQL service and copy all the information as it will be required to configure your N8N MySQL service.

N8N: Performing SQL query on MySQL server

This is a test database and table that is created for this blog. This will be useful when you write the query you want to run once the component is running.

N8N: Performing SQL query on MySQL server

Now, paste all the information copied before into the connection settings of the MySQL component.

N8N: Performing SQL query on MySQL server

Once the MySQL server is connected, head over to Table switch the criteria to Name and select the table name of your choice. Like in this case it is student. Now, under Select Rows set it up as

Column: Id

Operator: Equal

Value: {{$json.query.id.toInt()}}

N8N: Performing SQL query on MySQL server

Testing Workflow

For testing your workflow you will see the Test workflow button. Click on it and paste the endpoint URL copied from the Webhook component in the earlier steps. Make sure you add the query property to it. In this case, it will be ?id=<Id from table> so the final URL will look something like:

https://n8n-ygblb-u7774.vm.elestio.app/webhook-test/8b6ac879-866b-4048-bcba-b04b4efa3ee7?id=1
Enter fullscreen mode Exit fullscreen mode

N8N: Performing SQL query on MySQL server

You should see output like below.

N8N: Performing SQL query on MySQL server

And done! You have successfully created an application that queries the SQL server and responds with the row data adjacent to the ID provided. You can form multiple such workflows based on the request type.

Thanks for reading ❀️

Thank you so much for reading and do check out the Elestio resources and Official N8N documentation to learn more about N8N. You can click the button below to create your service on Elestio and perform queries on your SQL server. See you in the next oneπŸ‘‹

N8N: Performing SQL query on MySQL server

Top comments (0)