1,select ta.a from ta where ta.b='001';
2, select ta.a from ta where ta.b='002';要实现如下的效果:
001,002
注意,不是这样的效果:
001,
002.也就是说,一条结果包含两个字段,是由不同查询条件得到的。