In SQL, it's possible to select all your data starting with "2023" like this :
-------------------------------------
SELECT *
FROM mydata
WHERE date LIKE "2023%"
--------------------------------------
Is there a way to do it with FME?
I have already apply a "DateTimeConverter" to convert my data in FME format (20230223).
I see on FME Workbanch that there is a "SQLCreator", but I need to import my data from a url and not from an DataBase like PostGIS