The Table – Query has 2 columns (functionId, depFunctionId)
I want all values that are either in functionid or in depfunctionid
I am using this:
select distinct depfunctionid from Query union select distinct functionid from Query
How to do it better?
I think that’s the best you’ll get.