SQL Query question for school project

  • try,

    SELECT Company.[Company Name], DailyStockPrice.Date

    FROM Company LEFT OUTER JOIN DailyStockPrice ON Company.[Ticker] = DailyStockPrice.[Ticker]

    WHERE DailyStockPrice.Date IS NULL

    GROUP BY Company.[Company Name], DailyStockPrice.Date;

  • Access will create this kind of query for you - create a new query and choose the "Find unmatched query wizard" from the menu, then follow the prompts

Viewing 2 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply