I have an interesting query I need to do. I have a table with an INT column containing ip address numbers (using INET_ATON), and a timestamp<
INT
INET_ATON
timestamp<
SELECT DATE(timestamp) Date, COUNT(DISTINCT ipNum) totalCOunt FROM tableName GROUP BY DATE(timestamp)