Hey,
I have a very simple workflow:
- I get the rows of a google sheet
- For each row I do a postgres query with a query param with the data from the row
My query doesn’t work when I use the query param, but it works fine with static data.
I believe it’s a very simple fix, but I need to see what the actual query looks like to fix it.
For example, let’s say my query is the following:
SELECT * from customers where email = $1
And $1 is the email column from my sheet.
I look like to see the actual query for each row like:
- SELECT * from customers where email = ‘[email protected]’
- SELECT * from customers where email = ‘[email protected]’
So I can correct any errors. Now I only see the results of the query not it’s “body”.
How can I achieve that ? I’m running the desktop app.
Thanks a lot,
Matthias