I'm currently encountering an issue with executing an SQL query in Zapier. The SQL query, which works perfectly in pgAdmin, is encountering difficulties within Zapier.
Description of the Issue: When attempting to execute the following SQL query in Zapier:
SELECT * FROM public."User" ORDER BY id ASC LIMIT 100;
(I enclosed the table name in double quotes because the first letter is uppercase.)
I get this error:
The query aims to retrieve records from the "User" table in the "public" schema, ordering them by the "id" column and limiting the results to 100.
If you have any advice or if you've encountered a similar situation, please share your thoughts.
Thank you for your assistance!