我有这样的查询
select
*
from
(select vtid
from Transaction_tbl
where dtime between '01-Apr-13 00:00:00' and '18-Jun-13 23:59:59'
and Status >= 5) p
PIVOT
(count(vtid) FOR vtid in ([7],[8],[9],[11],[12])) as pp
此查询的输出:
7 8 9 11 12
----------- ----------- ----------- ----------- -----------
10 3 1 0 0
我还有一张桌子VType_tbl
。
vtid
我想vtid
从vtype
表中加载而不是硬编码。我怎样才能做到这一点?
如果有人知道怎么做,,,请帮助我