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
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 ...
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 ...
yeah! thanks @ctredinnick I tryed in PGADMIN4 and it works fine. In FME I had to add some file as iniciator for SQL Executor.
Thanks