K
Ken Valenti
I have a table that has the ID set as Number with field size Double (It's the
Key, required no duplicates).
I have two pieces of data
1492 (Some Integer)
39797.6002777778 (Some Date Stored as Number)
The SQL Code:
SELECT SupFields.ProjectData_ID FROM SupFields WHERE
(((SupFields.ProjectData_ID)=1492));
Returns 1492 But if I replace 1492 with 39797.6002777778, it returns nothing.
How can I get this SQL to work & return both numbers?
Key, required no duplicates).
I have two pieces of data
1492 (Some Integer)
39797.6002777778 (Some Date Stored as Number)
The SQL Code:
SELECT SupFields.ProjectData_ID FROM SupFields WHERE
(((SupFields.ProjectData_ID)=1492));
Returns 1492 But if I replace 1492 with 39797.6002777778, it returns nothing.
How can I get this SQL to work & return both numbers?