source

ORA-00917: 쉼표 오류 누락

manysource 2023. 8. 23. 21:51

ORA-00917: 쉼표 오류 누락

아래는 Oracle에 대한 제 질문입니다.ORA-00917: missing comma오류

INSERT INTO user_account_statement(
   statement_id,
   session_key,
   login_id,
   user_id,
   account_number,
   from_date,
   to_date,
   ipaddress,
   create_date_time
) 
VALUES(1070,
      'fe79e0345986b5a439c26f731234868b53f877366f529',
      '2335',
      '204254',
      '108142',
       to_date('2014-08-18','yyyy-mm-dd'),
       to_date('2014-08-23','yyyy-mm-dd'),
       '106.79.126.249',
       to_date('2014-08-23 16:45:06','yyyy-mm-dd hh24:mi:ss');

나는 지금 쉼표가 어디에 필요한지 모릅니다.

실종자가 있는 것 같습니다)마지막에:

INSERT INTO user_account_statement(statement_id,session_key,login_id,user_id,
        account_number,from_date,to_date,ipaddress,create_date_time)
   VALUES(1070,'fe79e0345986b5a439c26f731234868b53f877366f529','2335','204254','108142',
          to_date('2014-08-18','yyyy-mm-dd'),to_date('2014-08-23','yyyy-mm-dd'),
                  '106.79.126.249',to_date('2014-08-23 16:45:06','yyyy-mm-dd hh24:mi:ss'));

언급URL : https://stackoverflow.com/questions/25602356/ora-00917-missing-comma-error