Concat用逗号分隔firstname和lastname

时间:2017-02-04 05:58:04

标签: php mysql group-concat

我的用户表格看起来像这样。

id      name      ma_lastname

1      michael       zohans   
2       todd         butler
3       sam          pile

另一个名为 config_project

的表
 id      pass
  1       1,3
  2       3,2
  3       2,1

现在我希望输出看起来像这样

 id               pass

  1      michael zohans, sam pile
  2       sam pile, todd butler
  3       todd butler, michael zohans

1 个答案:

答案 0 :(得分:1)

您应该考虑修复表结构。将其标准化。

现在,这应该做(按照增加用户ID的顺序):

Mat sobelx, dest1,dest2;
Sobel(src, sobelx, src.depth(),1,0,3);
imshow("Sobel filtered in x dir" ,sobelx);
Mat kern = (Mat_<float>(3,3)<<-1,0,1,-1,0,1,-1,0,1);
filter2D(src,dest1,src.type(),kern);
imshow("Sobel in x-dir using corr ", dest1);
/* dest1 equals sobelx  */
flip(kern,kern, -1);//flip the kernel in x and y direction for convolution
filter2D(src,dest2,src.type(),kern);
imshow("Sobel in x-dir using conv ",dest2,);

Demo