所以我有一个联合查询,如下所示:
select count(id)
from table 1
where membernumber = 'x'
and castnumber = 'y'
union
select count(id)
from table 1
where membernumber = 'x'
and castnumber = 'y'
union
等等。
这将有超过200个联合来自一个列表2x 200表,每行都有x和y的值。所以每个联合查询都必须从相应的行中获得x和y的值(没有任何特定的顺序)。我如何才能实现这一点?谢谢
1条答案
按热度按时间nszi6y051#
试试看: