无法在打开的Office数据库中的表中添加记录

时间:2018-12-17 10:12:48

标签: sql

当我尝试在开放式Officebase表1中插入记录时,出现错误table not found(请检查图像)

enter image description here

1 个答案:

答案 0 :(得分:0)

您的查询在语法上不正确,您必须使用valuesselect语句:

insert into table1(col1, col2, . . . )
     select '8', . . . ;

您也可以使用values

 insert into table1(col1, col2, . . . )
      values ('8', . . .);