Skip to main content
. 2019 Aug 18;19(16):3594. doi: 10.3390/s19163594
Description ReQL Statement
Query the outdated “Occupied“ tuple
that temporarily resided in RethinkDB
r.db(’spdb’).
table(’raw_historical_table’).
without(’id’, ’edge_arrivingTime’, ’fog_arrivingTime’).
filter({“spot_id“: str(item[’spot_id’]), “event“: “Occupied“}).
order_by(r.desc(’startTime’)).limit(1).run(conn)