The firs one query is
And the second one is Then I need to do a join with this second query and create a list with the results.
I dont know if with the SQL Executor transformer I can replicate this two querys.
Any idea?
Thanks
The firs one query is
And the second one is Then I need to do a join with this second query and create a list with the results.
I dont know if with the SQL Executor transformer I can replicate this two querys.
Any idea?
Thanks
Best answer by ctredinnick
Yeah, you should be able to write it in one statement using a CTE. ie
with _FME_Gare_ETC_SQ as (
SELECT ...
)
SELECT ...
FROM Gare LEFT JOIN _FME_Gare_ETC_SQ ON ...
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.