-2
--minino
select min("timestamp")
from teste
--maior que
select *
from teste t1
where "timestamp" > (select min("timestamp")
from teste t2
where t2.uf = t1.uf)
-2
1
--minino
select min("timestamp")
from teste
--maior que
select *
from teste t1
where "timestamp" > (select min("timestamp")
from teste t2
where t2.uf = t1.uf)
Browser other questions tagged sql oracle
You are not signed in. Login or sign up in order to post.