In MySQL, string data types such as CHAR and VARCHAR require enclosing values in quotation marks (single or double).
DATE values are similarly quoted, as they are interpreted as string literals conforming to a date format.
Conversely, numeric data types like FLOAT or INT should be presented without quotes.
Enclosing numeric values in quotes results in their treatment as strings, potentially leading to data type mismatches and query errors.
Consequently, FLOAT is the accurate representation.