SQLite Forum

Convert datetime string to second since Epoch with millisecond precision
Login
how about

```sql
sqlite> SELECT strftime('%s', a) +  strftime('%f', a) - strftime('%S', a) FROM
   ...> (SELECT '2016-06-13T09:36:34.123Z' a);
1465810594.123
sqlite>
```