David
David

Reputation: 31

Oracle date time

I have four fields:

I need to calculate the difference from start to end. I tried using the to_date(Start_date || Start_Time) but keep getting this error message:

ORA-01830: date format picture ends before converting entire input string 01830.00000 - "date format picture ends before converting entire input string"

Thank you for your help. David

Upvotes: 0

Views: 331

Answers (1)

rfusca
rfusca

Reputation: 7705

to_date(Start_date||start_time,'DD-MON-YYHH24:MI')

Upvotes: 5

Related Questions