MySQL:将另一个表中的值插入一列 [英] MySQL: insert values from another table into one column

查看:57
本文介绍了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:将另一个表中的值插入一列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆