I'm relatively new to SQL and am looking for a command that I can run in order to find all records within a database within .5 of a calculated value.
For example:
SELECT X, (Y/Z) AS ZZ FROM Table WHERE ZZ WITHIN .5
However since WITHIN is not a valid SQL command, what's the actual command I can substitute in?