I try to make a query between a stream (contains a datetime) and a store mongodb table on a datetime column.
define stream TriggerStream (lastexec string);
@info(name = 'ExtractData')
from TriggerStream as e right outer join OFFRELOG as o
on o.lastmodified> e.lastexec
select CLIC_OFFRELOG,lastmodified
insert into RECO_TEST;
I get no data from this query. Is there a way to cast datetime column in timsstamp format ?
Best regards, Nicolas