I created the two tables below, and FK_TypeID
is NULL in this case. I want to write a query that returns me a join of two tables.
if FK_TypeID
is NULL for a specific string, TypeName
also NULL. I'm not sure how to do this?
[Actions] ActionsID Date Message FK_TypeID
My current status looks like this and just skips NULL FK_TypeID
rows
SELECT * FROM Actions INNER JOIN TypeName ON Actions.FK_TypeID = [Type].TypeID
Help will be greatly appreciated!
source share