更新 MySQL 中的列

发布于 2024-11-17 17:43:07 字数 288 浏览 1 评论 0原文

我有一个包含三列和一堆行的表 table1

[key_col|col_a|col_b]

我想用一组值更新 col_a (即保持 col_b 不变),如下所示:

INSERT INTO table1 AS t1 (key_col, col_a) VALUES ("k1", "foo"), ("k2", "bar");

< br> 但这不起作用,我该怎么办?

I have a table table1 with three columns and a bunch of rows:

[key_col|col_a|col_b]

I want to update col_a with a set of values (i.e. leaving col_b unchanged), something like this:

INSERT INTO table1 AS t1 (key_col, col_a) VALUES ("k1", "foo"), ("k2", "bar");

But it doesn't work, how do I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

々眼睛长脚气 2024-11-24 17:43:07

您必须使用 UPDATE 而不是 INSERT:

例如:

UPDATE table1 SET col_a='k1', col_b='foo' WHERE key_col='1';
UPDATE table1 SET col_a='k2', col_b='bar' WHERE key_col='2';

You have to use UPDATE instead of INSERT:

For Example:

UPDATE table1 SET col_a='k1', col_b='foo' WHERE key_col='1';
UPDATE table1 SET col_a='k2', col_b='bar' WHERE key_col='2';
自此以后,行同陌路 2024-11-24 17:43:07
UPDATE table1 SET col_a = 'newvalue'

如果您只想更新某些行,请添加 WHERE 条件。

UPDATE table1 SET col_a = 'newvalue'

Add a WHERE condition if you want to only update some of the rows.

稀香 2024-11-24 17:43:07

这就是我为批量更新所做的:

UPDATE tableName SET isDeleted = 1 where columnName in ('430903GW4j683537882','430903GW4j667075431','430903GW4j658444015')

This is what I did for bulk update:

UPDATE tableName SET isDeleted = 1 where columnName in ('430903GW4j683537882','430903GW4j667075431','430903GW4j658444015')
梦魇绽荼蘼 2024-11-24 17:43:07

如果你想填写所有列:

update 'column' set 'info' where keyID!=0;

if you want to fill all the column:

update 'column' set 'info' where keyID!=0;
缱倦旧时光 2024-11-24 17:43:07

如果你想更新数据,你应该使用UPDATE命令而不是INSERT

If you want to update data you should use UPDATE command instead of INSERT

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文