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

后端 未结 8 796
梦如初夏
梦如初夏 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:30

    If a special character other than $, _, and # is used in the name of a column or table, the name must be enclosed in double quotations. Link

    0 讨论(0)
  • 2020-12-08 20:33

    Remove the semicolon (;), backtick (``) etc. from inside a query

    0 讨论(0)
提交回复
热议问题