你好!
对于 SQL 专家来说,这可能是一个简单的问题,这是我拥有的表:
**Table1 (Users):**
UserId -> 0,1,2...
UserName -> name1, name2, name3 ...
**Table2 (Actions):**
DealId -> 80,81,82...
BuyerId -> 0,1,2...
SellerId -> 2,3,4...
Amount -> 80,120,900...
**Table3 (Deals):**
DealId -> 80,81,82...
Dealname -> DealName1,DealName2...
UserId -> 0,1,2...
这是我需要的结果表(来自 3 个表):
Column 1: Buyer Name(Users.UserName) with (Actions.BuyerId -> Users.UserId)
Column 2: Seller Name(Users.UserName) with (Actions.SellerId -> Users.UserId)
column 3: Deal Name(Deals.DealName) with (Deals.DealId -> 80 [known number])
column 4: Amount (Actions.Amount) with (Deals.DealId -> 80 [known number])
当然,我只需要显示正确的 DealId (80) 的结果。任何人都可以帮忙吗?
我希望这很清楚..
谢谢!!
伊兰。