cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Getting SQL error in recipe

ajitkumar_a
Deputy Chef I
Deputy Chef I
 

Screenshot 2025-06-17 130333.png

5 REPLIES 5

manojksurisetty
Deputy Chef II
Deputy Chef II

Try using Text mode when writing your code, or if you're using Formula mode, make sure to wrap any text values in single (') or double (") quotes and use the + operator to concatenate.

Example for Formula mode:
"Select " + <columnname datapill> + " from " + <tablename datapill>;

This ensures that static strings and datapills are combined correctly in the expression.