This works OK:
SELECT A.Num-A.Num2
FROM "Test.DB" A, "test2.DB" B
But why this SQL statement return as resault NULL if Num (or Num2) is blank? What is the solution of this problem?
SELECT A.Num-A.Num2
FROM "Test.DB" A, "test2.DB" B
WHERE A.X=B.X
SELECT A.Num-A.Num2
FROM "Test.DB" A, "test2.DB" B
But why this SQL statement return as resault NULL if Num (or Num2) is blank? What is the solution of this problem?
SELECT A.Num-A.Num2
FROM "Test.DB" A, "test2.DB" B
WHERE A.X=B.X