i have full date(with time). But i want only millisecond from date.
please tell me one line solution
for example: date= 2016/03/16 10:45:04.252
i want this answer= 252
i try to use this query.
SELECT ADD_MONTHS(millisecond, -datepart('2016/03/16 10:45:04.252', millisecond),
'2016/03/16 10:45:04.252') FROM DUAL;
but i'm not success.