我在数据库表中的数据...
SELECT [Quote Reference Number]
,[Value]
,[Method]
,[Country]
,[SubRegion]
,[Route 1 or Route2]
,[TYPE A or B ]
FROM Table 1
我想要的摘要视图
世界观
Subregion | Country | Count of Route1 + Type A quotes | Count of Route1 + Type B quotes| Count of Route2 + Type A quotes | Count of Route2 + Type B quotes| All Routes & Types |
欧洲、中东和非洲视图
Subregion | Country | Count of Route1 + Type A quotes | Count of Route1 + Type B quotes| Count of Route2 + Type A quotes | Count of Route2 + Type B quotes| All Routes & Types |
我可以通过创建一个包含 2 行的表并执行大量 sql 查询来填充所有字段来做到这一点,但被告知可以通过在数据库中进行透视来完成,但不知道具体如何?
任何人都可以提供一些帮助吗?