There is a table with fields id, date, time of a line
1,2016-07-07,11:31:38 2,2016-07-07,11:31:45 3,2016-07-07,11:31:55 5,2016-07-08,10:31:38 6,2016-07-08,12:31:38
standard query SELECT td.* FROM total td
displays everything, but it is necessary when the duplicate date is converted to a null or empty field an example of the answer:
1,2016-07-07,11:31:38 2,null,11:31:45 3,null,11:31:55 5,2016-07-08,10:31:38 6,null,12:31:38