I'm trying to get the fundnames that are in secondary data but not in
UpToDateFunds.
UpToDateFunds is a query that returns fundname.
below is sql i have that does not work as planned.
can you tell me whats wrong here?
If a put a select statement in place of the UpToDateFunds query it
runs forever before returning the data set.
SELECT [SecondaryData].[fundname]
FROM SecondaryData
WHERE [SecondaryData].[fundname] Not in ([UpToDateFunds].[fundname]);
UpToDateFunds.
UpToDateFunds is a query that returns fundname.
below is sql i have that does not work as planned.
can you tell me whats wrong here?
If a put a select statement in place of the UpToDateFunds query it
runs forever before returning the data set.
SELECT [SecondaryData].[fundname]
FROM SecondaryData
WHERE [SecondaryData].[fundname] Not in ([UpToDateFunds].[fundname]);
Comment