组合子查询中的行的 Select 语句(枢轴)

Select statement that combines rows in a subquery (pivot)(组合子查询中的行的 Select 语句(枢轴))
本文介绍了组合子查询中的行的 Select 语句(枢轴)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有:

tbl_product:
------------
product_id
name
description

tbl_user:
------------
user_id
first_name
last_name
initials

多个用户可以拥有一个产品,我通过创建一个表格来表示:

Multiple users can own a single product and I represent that by creating a table:

xref_product_user: 
product_id
user_id 

组成复合主键,其中每一列都是各自表的外键.

that make up a composite primary key where each column is a foreign_key to their respective tables.

由于每个产品可以有多个用户,所以我需要写一个包含

Since each product can have multiple users, I need to write a select statement that contains

产品名称、描述、组合用户首字母(逗号分隔的字符串).

product name, description, combined user initials (comma separated string).

假设我有一个产品 chocolate 归用户 mike 所有约翰逊丹威廉姆斯.那么我的结果应该是

So lets say I have a product chocolate that are owned by user mike johnson and dan williams. Well my results should be

NAME        DESCRIPTION    INTIALS
chocolate   candy          mj, dw

由于首字母部分,我似乎无法弄清楚如何编写此 select 语句.有人有什么想法吗?

I can't seem to figure out how to write this select statement because of the initials part. Anyone have any ideas?

推荐答案

函数可能是一种很好的、​​易于维护的处理方法:

A Function would probably be a good, easily maintainable way to handle that:

CREATE FUNCTION [dbo].[fn_GetInitialsForProduct]
(
    @product_id
)
RETURNS varchar(200)
AS
BEGIN
    declare @Initials varchar(200)

    set @Initials = ''

    select @Initials=@Initials + ', ' + isnull(u.Initials, '')
    from dbo.tbl_user u
    inner join dbo.xref_product_user x
    on u.user_id = x.user_id
    where x.product_id = @product_id
    order by u.Initials

    if left(@Initials, 2) = ', '
        set @Initials = substring(@Initials, 3, len(@Initials) - 2)

    return @Initials
END

--AND HERE'S HOW TO CALL IT

select p.name, p.description, dbo.GetInitialsForProduct(p.product_id) as Initials
from tbl_product p

这篇关于组合子查询中的行的 Select 语句(枢轴)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)
How can I generate an entity–relationship (ER) diagram of a database using Microsoft SQL Server Management Studio?(如何使用Microsoft SQL Server Management Studio生成数据库的实体关系(ER)图?)