English 中文(简体)
sql 合并函数
原标题:sql join function

这基本上是一个数据库合并的问题,但它需要用一个列名来表示列名绘图组件,这个部件已经我立下了。

我有多个调查表格;简而言之,我有两个,一个来自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;

提前多谢了!

问题回答

你的问题似乎不完全清楚......你可以只做以下的组合:

select d2011.id, d2010.c2 as  last year , d2011.c1  this year 
from d2010 join d2011 on d2010.id = d2011.id

无法在标准 sql 中动态指定列。 动态 SQL 给予您此能力 。

我怀疑,你最容易做到的办法是将两个表格列列表放在Excel上,将它们放在两栏并排,并利用Excel的功能构建 SQL 语句。

您基本上正在寻找的是一种将列名存储在表格中的方式, 并在未来的查询中使用这些列名。 不幸的是, 我认为您需要使用动态 SQL 。 例如 :

declare @SQL nvarchar(1024)
set @SQL =  select * from Table 
exec sp_executeSQL @SQL

使用您的绘图表, 可以返回已绘制的列名, 并声明加入 :

    declare @SQL nvarchar(1024)
    declare @mappedColumnName nvarchar(1024)

    select @mappedColumnName = 2011 from mappedTable where 2010 =  c1 

    set @SQL =  select *
    from d2010 join d2011 on d2010.id=  + @SQL +  ;.id ;

    exec sp_executeSQL @SQL

如果您可用,我最近使用的另一个方法是.NET中的实体框架。这样您就可以在 LINQ 查询中动态选择列名。

这两种方法都让我感到脏兮兮的,但是这反映了谁设计了这些表格。 最好把它们出口到Excel, 比较一下。





相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

难以执行 REGEXP_SUBSTR

I m 查询Oracle 10g。 我有两张表格(样本数据见下文)。 i m 试图提取一些领域

SQL Query Shortcuts

What are some cool SQL shorthands that you know of? For example, something I learned today is you can specify to group by an index: SELECT col1, col2 FROM table GROUP BY 2 This will group by col2

PHP array callback functions for cleaning output

I have an array of output from a database. I am wondering what the cleanest way to filter the values is example array Array ( [0] => Array ( [title] => title 1 ...

OracleParameter and DBNull.Value

we have a table in an Oracle Database which contains a column with the type Char(3 Byte). Now we use a parameterized sql to select some rows with a DBNull.Value and it doesn t work: OracleCommand ...

Running numbers in SQL

I have a SQL-statement like this: SELECT name FROM users WHERE deleted = 0; How can i create a result set with a running number in the first row? So the result would look like this: 1 Name_1 2 ...

How to get SQL queries for each user where env is production

I’m developing an application dedicated to generate statistical reports, I would like that user after saving their stat report they save sql queries too. To do that I wrote the following module: ...

热门标签