我想使用 MySQL 将项目从一个表移动到另一个表。
这是我目前使用的:
INSERT INTO items_rooms (item_id, room_id,x,y,n)
SELECT id, room_id,x,y,z
FROM `items_phoenix`
这可行,但是我想将多个值插入一列而不是不同列中的每个值。
例如:
在表 items_rooms 中,我希望将 items_phoenix 中的值 x 和 y 放入 items_rooms 的一列中。
如果 x = 5 和 y = 2,我可以像这样将其保存到 items_rooms 中:一列:5.2 而不是每个值的不同列?
对不起,如果这令人困惑!