这基本上是一个数据库合并的问题,但它需要用一个列名来表示列名绘图组件,这个部件已经我立下了。
我有多个调查表格;简而言之,我有两个,一个来自2010年(称为2010年),另一个来自2011年(称为2011年)。这几行对应的是调查和列(我们可以假定,它们的名称是C1, c2, c3, c3, cN)与对问题的答复相对应。因此,d2010看起来像是C1, c2, c3, cN。
id c1 c2 c3 .. cX
survey 1
survey 2
survey 3
...
survey N
d2011 看起来像
id c1 c2 c3 .. cY
survey 1
survey 2
survey 3
...
survey N
主要目标是显示2010年至2011年对特定问题的答复变化。 具体而言,我的目标是创建SQL命令,创建新的表格(三栏),为特定的答复显示调查在两年间有何不同:
id 2010-response 2011-response
survey 1
survey 2
survey 3
...
survey N
如果列名名称保持一致,那么我所需要的就是简单到
select d2011.id, d2010.c1 as last year , d2011.c1 this year from d2010 join d2011 on d2010.id=d2011.id;
不幸的是,那些创建表格的人没有使栏名保持一致;例如,
c1 of 2010 corresponds to c2 of 2011
c2 of 2010 corresponds to c1 of 2011
c3 of 2010 corresponds to c3 of 2011
c4 of 2010 corresponds to c7 of 2011
...
所以,我一直想做的就是 进入类似
select d2010.id, d2010.c1 as last year , d2011.f(c1) this year from d2010 join d2011 on d2010.id=d2011.id;
显示“ d2011. f. f(c1) ” 的“ d2011. f(c1) ” 表示使用一个函数来绘制2010至2011年的列名名称。 绘图并不够简单, 无法用数学公式表达, 所以我假设我需要一个表格来显示类似的情况 。
2010 2011
c1 c2
c2 c1
c3 c3
c4 c7
是否有办法在 SQL 中表达我需要的合并操作? 也就是说,用地图表,有没有办法将以下内容转换为标准 SQL (一般) 和 SQLite (特别)?
select d2011.id, f(d2010.c1) as last year , d2011.c1 this year from d2010 join d2011 on d2010.id=d2011.id;.id;
提前多谢了!