How can I solve ORA-00911: invalid character error?

后端 未结 8 803
梦如初夏
梦如初夏 2020-12-08 19:47

I tried to execute an SQL INSERT with Toad for oracle:

INSERT INTO GRAT_ACTIVITY
   (UUID, IP_ADRESS, SEND_MAIL, DATE_         


        
8条回答
  •  借酒劲吻你
    2020-12-08 20:28

    Remove the semicolon ( ; ).

    In oracle, you can use semicolon or not when u ran query directly on DB. But when u using java to ran a oracle query, u have to remove semicolon at the end.

提交回复
热议问题