MySQL:将另一个表中的值插入一列

编程入门 行业动态 更新时间:2024-10-10 21:23:55
本文介绍了MySQL:将另一个表中的值插入一列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我想使用 MySQL 将项目从一个表移动到另一个表中.

I am wanting to move items from one table into another using MySQL.

这是我目前使用的:

INSERT INTO items_rooms (item_id, room_id,x,y,n) SELECT id, room_id,x,y,z FROM `items_phoenix`

这有效,但是我想将多个值插入一列而不是不同列中的每个值.

This works, however I am wanting to insert multiple values into one column instead of each values in different columns.

例如:

在表 items_rooms 中,我希望将 items_phoenix 中的值 x 和 y 放入 items_rooms 中的一列.

In table items_rooms, I would like values x and y from items_phoenix to be placed into one column in items_rooms.

如果 x = 5 且 y = 2,我可以像这样将其保存到 items_rooms 中:一列:5.2 而不是每个值的不同列?

If x = 5 and y = 2, can I save it into items_rooms like this: one column: 5.2 instead of different columns for each values?

对不起,如果这令人困惑!

Sorry if this is confusing!

推荐答案

您可以在 SELECT 列列表中使用表达式.只要选择列表中的列和目标表中的列在数量和数据类型上匹配,您就可以执行以下操作:

You can use expressions in your SELECT column-list. As long as the columns in the select-list and the columns in the destination table match in number and data type, you can do something like this:

INSERT INTO items_rooms (item_id, room_id, x_dot_y, n) SELECT id, room_id, CONCAT(x,'.',y), z FROM `items_phoenix`

更多推荐

MySQL:将另一个表中的值插入一列

本文发布于:2023-07-09 21:11:48,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1088226.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:MySQL

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!