I am trying to put pandas table like this into my Oracle Database. My pandas table looks like this
this is my script to insert the data
INSERT INTO DATA
(NO_TRANSMITTER,ZONA,STATUS_PELABUHAN,TO_DATE(REPORTDATE,'YYYY-MM-DD HH24:MI:SS'),STATUS)
VALUES(:1,:2,:3,:4,:5)
It gets result like this
There is a problem with Oracle ORA-00917: missing comma
I don't know where comma needed to. Thanks for the help.
