我的 sql server 2008 数据库中有下表:
MsgID TrackerId MsgContent
1 123 red //MsgContent corresponding to colour
2 123 E2120 //MsgContent corresponding to model
5 123 sam //MsgContent corresponding to password
1 111 orange //MsgContent corresponding to colour
2 111 M3420 //MsgContent corresponding to model
5 111 pam //MsgContent corresponding to password
我想要一个查询,其结果如下:
TrackerId Colour Model Password
123 red E2120 sam
111 orange M3420 pam
那么,我应该如何解决这个问题呢?提前致谢。