select B from tb  该语句返回n行
B1
B2
B3
...
BNselect A,C form ta   该语句返回,肯定只有一行
A,C我现在想要得到如下格式的select
A,B1,C
A,B2,C
A,B3,C
...
A,BN,C请问如何写select语句?