本文介绍了如何从SQL中的多行和(重复)coulumns中选择一行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个样本表:
ID T_art Z_art F_ID
2101 sw 2
2101 az 1
2101 sr 3
2102 sw 4
2102 az 5
i希望得到如下结果:(按F_ID排序)
ID T_art Z_art T_art Z_art T_art Z_art
2101 azswsr
2102 swaz
我有什么尝试过:
有没有办法在sql中实现这一点?非常感谢。非常感谢。
谢谢。
解决方案
i have a sample Table : ID T_art Z_art F_ID 2101 s w 2 2101 a z 1 2101 s r 3 2102 s w 4 2102 a z 5 i want the result set like this:(Order By F_ID) ID T_art Z_art T_art Z_art T_art Z_art 2101 a z s w s r 2102 s w a z
What I have tried:
is there any way to achieve this in sql? it's urgent.any help is really appreciated.
Thank You.
解决方案
这篇关于如何从SQL中的多行和(重复)coulumns中选择一行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!