Hey team, I'm running a postgres row lookup column and I need it to output a result column that I can use to filter the rest of my table. Right now there doesn't seem to be any output column variables available. Any insight on this?
Looks like this sql query is not returning any values. Can you try running this sample query in postgres (it simulates the query for row 1) and see if you're able to return any records?
SELECT * FROM "User" u WHERE (u."email" = 'ayush@syntra.com' OR u."linkedinUrl" = 'https://www.linkedin.com/in/ayushjain04') AND (u."email" IS NOT NULL AND u."email" <> '' OR u."linkedinUrl" IS NOT NULL AND u."linkedinUrl" <> '') LIMIT 1;