blob: b54f28a399ad920525be4047a00d7bf73c84a4b0 [file] [log] [blame]
select
c_date,
c_time,
rank() over(partition by c_date order by c_time nulls first),
rank() over(partition by c_time order by c_time nulls first)
from
j6
order by
1,2 nulls first;