How to get milliseconds from timestamp field if my connection library does not support it?
You can use EXTRACT like this:
SELECT EXTRACT(SECOND FROM timestamp_column) FROM table_name;
It will return the number of seconds and milliseconds with 4 decimal digits (the result is decimal(9,4)). Alternatively, you can CAST the timestamp to CHAR or VARCHAR, and get the result as string. Example:
SELECT CAST(timestamp_column AS VARCHAR(24)) FROM table_name;
Do you find this FAQ incorrect or incomplete? Please e-mail us what
needs to be changed. To ensure quality, each change is checked by our editors (and often tested on live Firebird
databases), before it enters the main FAQ database. If you desire so, the
changes will be credited to your name. To learn more, visit our add content page.
All contents are copyright © 2007-2024 FirebirdFAQ.org unless otherwise stated in the text.