hey guys,
how do i call a query to show me only whose ID from Tmain (parent) that doesn't have any records in Tactions. (child)
so i have
i tried to set "not equal" but doesn't work.
sql
how do i call a query to show me only whose ID from Tmain (parent) that doesn't have any records in Tactions. (child)
so i have
i tried to set "not equal" but doesn't work.
sql
Code:
SELECT tmain.riskid, Tactions.RiskID, [RiskID]<>[RiskID] AS Expr1
FROM tmain INNER JOIN Tactions ON tmain.RiskID = Tactions.RiskID;