(select (iif (max([second table].[publishing]) = "True", "Yes", iif (max([first table].[publishing]) = "False", "No", "Error")) from [first table] group by [second table].url where ((([first table].[site url] = [second table].Url))) as haspublish
I have to put this query inside another query so that the output table is complete...
Please let me know if there is any mistake...
Publish has blank, true or false as string
I have tables as
Table 1
url ........
a
b
Table 2
Site Url Extend Publishing
a a/b False
a a/c False
a a/d False
b b/e False
b b/f True
b b/g False
Result Query needed:
Url Publish
a False
b True
Thanks in advance