如何在mysql中自动输入MySQL数据(输入第2列数据到自动输入第1列数据相同的列)?

发布于 2025-01-17 06:24:53 字数 208 浏览 2 评论 0原文

这里我有 3 列 我想将所有数据从 img_id 插入到 img_parent_id

Evrrrything 但没有得到它。

Here I had 3 column
I want to insert all of my data from img_id to img_parent_id

Evrrything but didn't get it.

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

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

发布评论

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

评论(1

如果没有 2025-01-24 06:24:53

UPDATE 语法

UPDATE table_name
SET column1 = value1, column2 = value2, ...
WHERE condition;

例如: 在您的情况下

UPDATE table 
SET img_parent_id=img_id;

RUN : https://www.db-fiddle.com/f/3PnzHErrf2fZFGZY67K12X/116
其他选项:

UPDATE table 
SET img_parent_id=img_id
WHERE img_id IN(12,14,16);

运行https://www.db- fiddle.com/f/3PnzHErrf2fZFGZY67K12X/115

博客网址: https://www.w3schools.com/sql/sql_update.asp

UPDATE Syntax

UPDATE table_name
SET column1 = value1, column2 = value2, ...
WHERE condition;

For example : in your case

UPDATE table 
SET img_parent_id=img_id;

RUN : https://www.db-fiddle.com/f/3PnzHErrf2fZFGZY67K12X/116
Other Option :

UPDATE table 
SET img_parent_id=img_id
WHERE img_id IN(12,14,16);

RUN : https://www.db-fiddle.com/f/3PnzHErrf2fZFGZY67K12X/115

BLOG URL : https://www.w3schools.com/sql/sql_update.asp

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