Hi I need help working out how to calculate how many peak concurrent calls I have in a day from my CDR date stored in MySQL. The data set looks like this: INSERT INTO `cdr` (`calldate`, `clid`, `src`, `dst`, `dcontext`, `channel`, `dstchannel`, `lastapp`, `lastdata`, `duration`, `billsec`, `disposition`, `amaflags`, `accountcode`, `uniqueid`, `userfield`) VALUES I can user the following query to calculate how many entries there are for each unique date. SELECT COUNT(1) AS entries, date(calldate) AS DATE FROM `cdr` GROUP BY DATE (calldate) LIMIT 0 , 1000 However this only tells me the