Good time.
In the table, the following numerical values:
33.33 33 Is there such a SQL data format where a query of the form:
SELECT WHERE 33.33 will output both 33.33 and 33? Something like auto-rounding up the whole.
DECISION:
SELECT * FROM t WHERE t=33.33 OR t=FLOOR(33.33) Thank.