我有一个必须列的表。
A B
1 a
2 b
3 c
4 d
我想要这样的结果
第1列
1
2
3
4
a
b
c
d
答案 0 :(得分:3)
使用class FooTest extends BaseIntegrationTest {
@Autowired
private MyService myService;
}
class BarTest extends BaseIntegrationTest {
@Autowired
private MyService myService;
}
union
答案 1 :(得分:1)
您想要apply
:
select tt.col1
from table t cross apply
( values (1, a), (2, b) ) tt(id, col1)
order by tt.id, tt.col1;