求一条SQL语句,请各位指教

freerll 2010-04-09 02:32:08
现在两张表,一,字段表 二,字段值的表

字段表如下

字段ID,字段名,用户ID(共四列)
1 姓名 1000
2 电话号码 1000
3 单位 1000
4 姓名 2000
5 电话号码 2000
6 单位 2000
字段值表

字段ID,字段值 ,用户ID,联系人ID(共四列)
1 张三 1000 A10000
2 110 1000 A10000
3 xxx公司 1000 A10000
1 李四 1000 A10001
2 110 1000 A10001
3 yyy公司 1000 A10001
1 王五 1000 A10002
2 110 1000 A10002
3 zzz公司 1000 A10002


注,这是一对通讯录的,联系人,就是电话簿上的联系人

怎么把它联成一张表如下

姓名 电话号码 单位

张三 110 xxx公司
李四 110 yyy公司
王五 110 zzz公司

...全文
135 10 打赏 收藏 转发到动态 举报
写回复
用AI写文章
10 条回复
切换为时间正序
请发表友善的回复…
发表回复
lrjt1980 2010-04-09
  • 打赏
  • 举报
回复
了解表之间的关系。
g000l 2010-04-09
  • 打赏
  • 举报
回复
可以用 动态sql语句 + 字符串处理。
老黎 2010-04-09
  • 打赏
  • 举报
回复
[Quote=引用 7 楼 freerll 的回复:]
的确相当经典,因为需求相当变态,什么都要自定义,连字段都是。。。
[/Quote]
快速开发平台一般需要这种设计
up
freerll 2010-04-09
  • 打赏
  • 举报
回复
的确相当经典,因为需求相当变态,什么都要自定义,连字段都是。。。
--小F-- 2010-04-09
  • 打赏
  • 举报
回复
然后与第2个表关联 你的表结构设计太经典了
--小F-- 2010-04-09
  • 打赏
  • 举报
回复
你这个必须先排序 把第一个表
----------------------------------------------------------------
-- Author :fredrickhu(小F,向高手学习)
-- Date :2010-04-09 14:44:04
-- Verstion:
-- Microsoft SQL Server 2005 - 9.00.4053.00 (Intel X86)
-- May 26 2009 14:24:20
-- Copyright (c) 1988-2005 Microsoft Corporation
-- Developer Edition on Windows NT 5.1 (Build 2600: Service Pack 3)
--
----------------------------------------------------------------
--> 测试数据:[tb]
if object_id('[tb]') is not null drop table [tb]
go
create table [tb]([字段ID] int,[字段名] varchar(8),[用户ID] int)
insert [tb]
select 1,'姓名',1000 union all
select 2,'电话号码',1000 union all
select 3,'单位',1000 union all
select 4,'姓名',2000 union all
select 5,'电话号码',2000 union all
select 6,'单位',2000
--------------开始查询--------------------------
select
id=(select count(distinct 字段名)+1 from tb where 字段名<t.字段名) ,字段名
from
tb t
order by 1
----------------结果----------------------------
/* ----------- --------
1 单位
1 单位
2 电话号码
2 电话号码
3 姓名
3 姓名

(6 行受影响)
*/
freerll 2010-04-09
  • 打赏
  • 举报
回复
select
(case a.id when 3 then b.字段值 else '' end) as '姓名',
(case a.id when 2 then b.字段值 else '' end) as '电话号码',
(case a.id when 1 then b.字段值 else '' end) as '单位'
from
(select
id=(select count(distinct 字段名)+1 from a where 字段名<t.字段名) ,字段名
from
tb t)a,b
where
a.id=b.字段ID

这里能否不用CASE,因为是根据第一张表来定那里的值的。用CASE不是很现实
--小F-- 2010-04-09
  • 打赏
  • 举报
回复
select
(case a.id when 3 then b.字段值 else '' end) as '姓名',
(case a.id when 2 then b.字段值 else '' end) as '电话号码',
(case a.id when 1 then b.字段值 else '' end) as '单位'
from
(select
id=(select count(distinct 字段名)+1 from a where 字段名<t.字段名) ,字段名
from
tb t)a,b
where
a.id=b.字段ID
喜-喜 2010-04-09
  • 打赏
  • 举报
回复
参考内容如下:
在本文中我们将通过两个简单的例子详细讲解PIVOT/UNPIVOT的用法。

  PIVOT的用法:

  首先创建测试表,然后插入测试数据

  create table test(id int,name varchar(20),quarter int,profile int)

  insert into test values(1,'a',1,1000)

  insert into test values(1,'a',2,2000)

  insert into test values(1,'a',3,4000)

  insert into test values(1,'a',4,5000)

  insert into test values(2,'b',1,3000)

  insert into test values(2,'b',2,3500)

  insert into test values(2,'b',3,4200)

  insert into test values(2,'b',4,5500)

  select * from test

  id name quarter profile

  ----------- -------------- ----------- -----------

  1 a 1 1000

  1 a 2 2000

  1 a 3 4000

  1 a 4 5000

  2 b 1 3000

  2 b 2 3500

  2 b 3 4200

  2 b 4 5500

  (8 row(s) affected)

  使用PIVOT将四个季度的利润转换成横向显示:

  select id,name,

  [1] as "一季度",

  [2] as "二季度",

  [3] as "三季度",

  [4] as "四季度"

  from

  test

  pivot

  (

  sum(profile)

  for quarter in

  ([1],[2],[3],[4])

  )

  as pvt

  id name 一季度 二季度 三季度 四季度

  -------- --------- ----------- -------- ------- -------

  1 a 1000 2000 4000 5000

  2 b 3000 3500 4200 5500

  (2 row(s) affected)

  UNPIVOT的用法:

  首先建立测试表,然后插入测试数据

  drop table test

  create table test(id int,name varchar(20), Q1 int, Q2 int, Q3 int, Q4 int)

  insert into test values(1,'a',1000,2000,4000,5000)

  insert into test values(2,'b',3000,3500,4200,5500)

  select * from test

  id name Q1 Q2 Q3 Q4

  -------- ------- --------- --------- -------- --------

  1 a 1000 2000 4000 5000

  2 b 3000 3500 4200 5500

  (2 row(s) affected)

  使用UNPIVOT,将同一行中四个季度的列数据转换成四行数据:

  select id,name,quarter,profile

  from

  test

  unpivot

  (

  profile

  for quarter in

  ([Q1],[Q2],[Q3],[Q4])

  )

  as unpvt

  id name quarter profile

  ----------- ----------- ---------- -----------

  1 a Q1 1000

  1 a Q2 2000

  1 a Q3 4000

  1 a Q4 5000

  2 b Q1 3000

  2 b Q2 3500

  2 b Q3 4200

  2 b Q4 5500

  (8 row(s) affected)

喜-喜 2010-04-09
  • 打赏
  • 举报
回复
“字段ID,字段值”列转行

34,590

社区成员

发帖
与我相关
我的任务
社区描述
MS-SQL Server相关内容讨论专区
社区管理员
  • 基础类社区
  • 二月十六
  • 卖水果的net
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧