SORU
11 Mayıs 2009, PAZARTESİ


Birden Çok Sütuna Göre Grup

Nasıl SERİ içinde GroupBy Birden çok Sütun yapabilirim

Bir SQL şuna benzer:

SELECT * FROM <TableName> GROUP BY <Column1>,<Column2>

Nasıl bu SERİ için dönüştürebilirsiniz:

QuantityBreakdown
(
    MaterialID int,
    ProductID int,
    Quantity float
)

INSERT INTO @QuantityBreakdown (MaterialID, ProductID, Quantity)
SELECT MaterialID, ProductID, SUM(Quantity)
FROM @Transactions
GROUP BY MaterialID, ProductID

CEVAP
11 Mayıs 2009, PAZARTESİ


Anonim bir tür kullanın.

Örn

group x by new { x.Column1, x.Column2 }

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • fouseyTUBE

    fouseyTUBE

    21 Mart 2011
  • LIVESTRONG.COM

    LIVESTRONG.C

    5 EKİM 2005
  • mahalodotcom

    mahalodotcom

    8 HAZİRAN 2007