When I query a dateTime(6) PHP is truncating my 6 fractional seconds.
Here is an example of my php code:
$sql = \'SELECT date FROM tbl\'; $
You can format it to include it. The %f includes the six-digit microseconds.
SELECT DATE_FORMAT(date, '%Y-%m-%d %H:%i:%s.%f') FROM tbl