Trying to create recordset from 2 different tables. There are no common fields with the same value and the data types are different.I tried the following:
SELECT OVER, NOTOVER,CONSTANT,PERCENT,ANNFEDWHALO
FROM ANNTAXS,FEDTAXLIMITS
WHERE 3000 BETWEEN OVER AND NOTOVER
Error message says I have error in from clause. I am using an Access 2000 database. My documentation for ANSI SQL says the above from clause is valid. Is there a variation in MSSQL???
Can't use INNER JOIN because have no common field values.
Can't use RIGHT JOIN or LEFT JOIN because have different field data types.
Any help is appreciated.
TNN, Tom
TNPAYROLL@AOL.COM
TOM
SELECT OVER, NOTOVER,CONSTANT,PERCENT,ANNFEDWHALO
FROM ANNTAXS,FEDTAXLIMITS
WHERE 3000 BETWEEN OVER AND NOTOVER
Error message says I have error in from clause. I am using an Access 2000 database. My documentation for ANSI SQL says the above from clause is valid. Is there a variation in MSSQL???
Can't use INNER JOIN because have no common field values.
Can't use RIGHT JOIN or LEFT JOIN because have different field data types.
Any help is appreciated.
TNN, Tom
TNPAYROLL@AOL.COM
TOM