我有以下观点:
SELECT t.CompanyCode, t.FlatFileName, t.RecordNumber, t.Status, t.Branch, t.SalesMonthYear, t.SalesCashOrLimboCode, t.PageNumber, t.Driver, t.Truck,
t.CommonProductCode, t.CashCharge, t.SpecialFunction, t.ProductCode, t.UnitOfEntry, t.TransactionBranch, t.AccountNumber, t.ReferenceNumber, t.TransactionDate,
t.PercentFullOrWhenDueCode, t.Quantity, t.DeliveryAccountNumberForTankRentals, t.Amount, t.SalesTax, t.ProductCode2Amount, t.TankSerialNumber, t.SalesMonth,
t.TaxCode, t.SubjectToTax, t.SalesTaxRate, t.ExiseTaxRate, t.FrankHasntDecidedWhatThisFieldIs_ProbablyCentury, t.OriginalSalesMonth, t.AutoCharge,
t.ProductCode2, t.ProductCode2SpecialFunction, t.DiscountCode, t.DiscountRate, t.DiscountDays, t.Century, t.TRFRPD, t.OpenItemAmountPaid,
t.OpenItemReferenceNumber, t.InvoiceFlag, t.InvoiceNumber, t.Time, t.GasQuantity, t.AnodeReading, t.Reading, t.Reason, t.InventorySerialNumber, t.SName,
t.ErrorCode, t.MasterBillingBranchAccountNumber, t.LeaseOnFile, t.PuchaseOrderNumber, t.BillOfLaden, t.Latitude, t.Longitude, t.ContractGasPrice, t.Balance,
t.DeliveryAccount, t.BranchAccountNumber, t.LineNumber, t.DateTimeEntered, t.UserThatEntered, t.WorkstationThatEntered, t.YearMonthDayPosted,
t.HourMinutePosted, t.UserThatPosted, t.WorkstationThatPosted, t.CreditCardNumber, t.CreditCardExperationDate, t.CreditViolation, t.TransactionId, t.CorporationId,
t.IsUpdated, t.IsAdded, t.ClearUpdateAndAdded, p.Description
FROM Company.Product AS p LEFT OUTER JOIN
Company.[Transaction] AS t ON p.ProductCode = t.ProductCode AND p.CorporationId = t.CorporationId
我想要完成的主要事情是从产品表中获取产品的描述并将其添加到事务表中。它必须基于ProductCode。
我应该只获得每次交易一次,但我得到每笔交易的多份副本。我知道每个公司的产品都存在,所以我认为它是由于它看到的那些?
从website开始,它说要使用LEFT OUTER JOIN:
此连接返回左表中的所有行以及 右表中匹配的行。如果没有列 在右表中匹配,它返回NULL值。
我没有在描述中得到空值所以我不知道我做错了什么。
答案 0 :(得分:1)
我会改变你的桌子的顺序:
SELECT <yourcols>
FROM company.[transaction] AS t
LEFT OUTER JOIN company.product AS p
ON t.productcode = p.productcode
AND t.corporationid = p.corporationid
答案 1 :(得分:0)
您可能希望加入产品上的交易,因为每个产品都有多个交易。我会在您的加入中交换订单,我也不会在OUTER加入时使用,因为在您的方案中,您希望所查询的所有交易都存在1-1(即没有没有产品的交易)