How to insert time 2009-09-22 18:09:37.881 in mysql. Actually I can insert and retrieve the time 2009-09-22 18:09:37 in mysql but whenever I am try
2009-09-22 18:09:37.881
2009-09-22 18:09:37
All time types in MySQL have only a precision of seconds
[...] microseconds cannot be stored into a column of any temporal data type. Any microseconds part is discarded.
You'll need some workaround.