We have column A with values 10,20,30 etc and column B with values as 6,12,18,24,etc.Both columns are different in 2 different tables.I want to calculate the upper and low bound for values in col A. e.g. for col A : 20, upper bound = 24 and lower bound =18. We can calculate by using colA<max(col B) as lower bound and colA>min(ColB). Since both table columns are different, I couldn't directly join them in postgresql..
Looking for logic on how to lookup value when we dont have common column
Try this:
The second option could be to create a CTE and use a LAG as follows:
In Common Table Expression you will get two numbers, B and the preceding B.
This way for
B = 12
you getB1 = 12
andB2 = 6
And so with the next numbers.Then, using INNER JOIN, you will join them with the A that is between these numbers.