首页 > 解决方案 > 无法在开放式办公数据库的表中添加记录

问题描述

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

在此处输入图像描述

标签: sql

解决方案


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

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

您还可以使用values

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

推荐阅读