dshgnt2008 2016-06-30 00:43
浏览 46
已采纳

将表中的许多行插入另一个表中的一个唯一行

I have a table named order where there is set a column name list

TABLE list
id |  list      | price    | date
---------------------------------------
1  | Cigar      |  5.00    | 2016-06-30
2  | Beer       |  6.00    | 2016-06-30
3  | Whiskey    |  20.00   | 2016-06-30
4  | Bacon      |  10.00   | 2016-06-30

I'd like to insert the list into another table named confirmation in a way that all of them could be in a same row! However, it doesn't work and is inserting in many rows!

The way I want

TABLE confirmation
id |            theorder             
--------------------------------
1  | Cigar, Beer, Whiskey, Bacon

The way is showing

TABLE confirmation
id |  theorder      
--------------
1  | Cigar,
2  | Beer,
3  | Whiskey,
4  | Bacon,

Here is the code: I'm working with foreach!

$sql     = "SELECT list FROM order";
$result  = $conn->query($sql);
$getList = $result->fetchAll(PDO::FETCH_ASSOC);

foreach($getOrder as $order) {
  $products = $order['theorder'] . ', ';
  $sql      = "INSERT INTO confirmation (theorder) VALUES ('$products')";
  $result   = $conn->query($sql);
}
  • 写回答

1条回答 默认 最新

  • doujue6196 2016-06-30 00:48
    关注

    Every time you perform an INSERT query it creates a new row. Since you're doing this in a loop, it creates a new row for each product.

    If you want to combine items, use GROUP_CONCAT:

    INSERT INTO confirmation (theorder)
    SELECT GROUP_CONCAT(list SEPARATOR ', ')
    FROM `order`
    

    Notice that you need to quote the table name order with backticks because it's a reserved word. It's generally best to avoid using reserved words as table and column names, since if you forget to quote it you'll get a confusing syntax error. See Syntax error due to using a reserved word as a table or column name in MySQL

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 数学建模,尽量用matlab回答,论文格式
  • ¥15 昨天挂载了一下u盘,然后拔了
  • ¥30 win from 窗口最大最小化,控件放大缩小,闪烁问题
  • ¥20 易康econgnition精度验证
  • ¥15 msix packaging tool打包问题
  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能