Is there a way to replicate the millisecond value obtained from using the date.now() method in JavaScript through an SQL select statement?
I believe this SQL query could be a starting point:
select (strftime('%s','now') || substr(strftime('%f', 'now'),4,3)) from dual;
However, I am having difficulties formatting it to match the result mentioned above.