标签: sql
当我尝试在开放式Officebase表1中插入记录时,出现错误table not found(请检查图像)
table not found
答案 0 :(得分:0)
您的查询在语法上不正确,您必须使用values或select语句:
values
select
insert into table1(col1, col2, . . . ) select '8', . . . ;
您也可以使用values:
insert into table1(col1, col2, . . . ) values ('8', . . .);