关于添加一些 SQL 属性值并将它们与其他不同的属性名称一起放置的问题?

Issue regarding adding some SQL attribute values, and placing them along with the other distinct attribute names?

所以我在尝试查询以添加重复名称的价格时遇到问题,以便计算每个 client.Here 的成本。

我希望它看起来像这样:

clientID    clientName       setPrize
--------------------------------------------
1               Kelly             450.99
2               Leia               10.00
3               Luka               35.23

我试着搜索这个场景,但我找不到任何东西来进行这样的查询。

您似乎在寻找 sum() 并按

分组
 select customerID,   customerName,      sum( packPrice) packPrize
 from mytable
 group by customerID,   customerName

您不能使用 clientName(多年后可能会有所不同),按 clientID:

对记录进行分组
SELECT clientID, clientName, SUM(setPrize) FROM table GROUP BY clientID;