BootstrapperRI
Programmer
I'm having trouble understanding exactly what this FROM statement is doing. It's joining 'Tickets' with dfs where StoreID and EODID are the same, but it seems to be redundant with the Inner and Left joins? What are their separate purposes?
TIA
David
MIS/IT Director
SQL:
FROM
[DB].[dbo].[Tickets] AS t
INNER JOIN [DB].[dbo].[DayfileSummary] AS dfs ON ( dfs.StoreID = t.StoreID ) AND ( dfs.EODID = t.EODID )
LEFT JOIN [DB].[dbo].[Stores] ON dfs.StoreID = Stores.StoreID
David
MIS/IT Director