- Print
Common SQL Connector Functions
This articles describes how to write some commonly used SQL functions in Tulip Connectors.
Before reading this guide, see our other tutorial for creating your first SQL connector function in Tulip
Listed below are a few simple and commonly used SQL Connector Functions that you can utilize in your SQL queries:
SELECT Statement:
Consider a scenario where you would like to view details about a particular Work Order that is stored in your MES/ERP database. The SELECT statement can help us with this task:
This will return all rows and columns from your table.
You can return either a single row or multiple rows. If you want to return a single row, add conditions or limits to your query. Tulip inputs are commonly used in this case. In the example below work_order_number is a Tulip function input.
If you want to return multiple rows, make sure to check the box under "Return Multiple Rows?"
Returning Data
If the database column names match the output names that you have defined in the connector function, Tulip will automatically associate the query results with the function outputs. Example: Tulip output is output_1 and database column is also output_1
If the column names in your database differ from what you would like to use in Tulip you must use an alias to make the proper association between the two.
In the example below column_1 is from the database and output_1 is the Tulip output.
INSERT Statement:
Consider a scenario where you would like to insert into your MES/ERP with data from a Tulip App. You would utilize a simple INSERT function to achieve this task. Here is a sample of what this function looks like in SQL:
Now let's break down each part of this function:
Identify the table in your database
Choose the columns in your database
Define the values from Tulip
UPDATE Statement:
Consider a scenario where you would like to update your MES/ERP with data from a Tulip App, using a Work Order as a key. You would utilize the UPDATE function, as shown below:
Now let's break down each part of this function:
Identify the table in your database
Define the columns to update with Tulip data
Use the Work Order as a condition
Further Reading
Did you find what you were looking for?
You can also head to community.tulip.co to post your question or see if others have faced a similar question!