insert office_supplies_formbaseinfo(boinsid,form_no,applicant_pserson,applicant_department)
values('00-5N3SSH32-E7JN-KORU-DWCB-SPGHQJFVP76D&TaskId=119415','20120215dept','某某','中国移动通信集团公司')
运行的时候。按f8首先出来:变量,taskid的对话框,然后输入值,确定。就报错了missing into keyword这个是什么原因?

解决方案 »

  1.   

    insert into office_supplies_formbaseinfo(boinsid,form_no,applicant_pserson,applicant_department)
    values('00-5N3SSH32-E7JN-KORU-DWCB-SPGHQJFVP76D&TaskId=119415','20120215dept','某某','中国移动通信集团公司')
      

  2.   

    into
      

  3.   

    恁真强 insert光杆司令 哈哈
      

  4.   

    语法都不对
    insert into...
      

  5.   

    楼主要会看错误提示,你不能忽视它
    missing into keyword  这个不是提示的很明确吗
      

  6.   

    楼上正解,
    insert into tableA(COLOMN1,COLOMN2) values('123','345');