SET Unix_Time = UNIX_EPOCH_TO_DATE(data.time);SELECT data.serverip AS serverip:STRING,COUNT(*) AS"count":BIGINTFROM"TIME_SERIES_w_NULLs"GROUP BY data.serverip
Count the number of entries for each time interval:
SET Unix_Time = UNIX_EPOCH_TO_DATE(data.time);SELECTCOUNT(data.serverip) AS count_data_serverip:BIGINT, Unix_Time AS unix_time:TIMESTAMPFROM""TIME_SERIES_w_NULLs""GROUP BY Unix_Time