我想使用 'insert into' 插入任何值,但它不起作用。啥是“未找到列错误”? [关闭]

Posted

技术标签:

【中文标题】我想使用 \'insert into\' 插入任何值,但它不起作用。啥是“未找到列错误”? [关闭]【英文标题】:I'd like to insert any value using 'insert into' but it doesn't work. What is "Column not found error"? [closed]我想使用 'insert into' 插入任何值,但它不起作用。什么是“未找到列错误”? [关闭] 【发布时间】:2021-08-18 04:56:54 【问题描述】:

我创建了表“成员”。它有两列名称,id 和没有值。我正在尝试将值“spring”插入列名! 但它不起作用......有人可以帮帮我吗?

我是这样写的:

insert into member(name) values("spring");

错误是:

Column "spring" not found; SQL statement:
insert into member(name)
values("spring") [42122-200] 42S22/42122 

【问题讨论】:

你的数据库是什么? 我认为是“H2”....对不起,没有详细说明..我正在看一些讲座,我的老师说要下载“H2”。所以我只是下载 h2 db 并编写了该命令 尝试插入成员(名称)值('spring'); !!!它有效!非常感谢 对字符串常量使用单引号。我投票结束是一个错字。 【参考方案1】:

您应该为您的 String/Varchar 值使用单引号。 试试这个查询:

 insert into member(name) values('spring');

【讨论】:

以上是关于我想使用 'insert into' 插入任何值,但它不起作用。啥是“未找到列错误”? [关闭]的主要内容,如果未能解决你的问题,请参考以下文章

使用 INSERT INTO (SQL Server 2005) 插入多个值

关于insert into(插入值)

使用 select 语句编写 Sql insert into 语句

数据库 insert into 插入数据

SQL INSERT INTO 语句

如何用insert into values插入多条数据