Home > Database > Mysql Tutorial > body text

Here are a few question-based titles based on your provided text, each focusing on a different aspect of the issue: Option 1 (Focusing on the problem): * Why Does My MySQL SELECT Query Return No Res

Susan Sarandon
Release: 2024-10-28 12:36:31
Original
404 people have browsed it

Here are a few question-based titles based on your provided text, each focusing on a different aspect of the issue:

Option 1 (Focusing on the problem):

* Why Does My MySQL SELECT Query Return No Results When Using a Float for Matching?

Option 2 (Focusi

Casting a MySQL Float for Accurate SELECT Matching

An attempt to perform a SELECT query using a floating-point value as a condition often results in unexpected behavior. The following issue exemplifies this challenge:

<code class="sql">SELECT * FROM `table` WHERE `ident`='ident23' AND `price`='101.31';</code>
Copy after login

This query returns zero rows, even though the value 101.31 appears in the database for the price column. Removing the price condition returns the expected row.

To address this issue, consider the following solutions:

Using CAST to Convert to DECIMAL

Casting the floating-point value to a DECIMAL type before comparing ensures proper precision:

<code class="sql">SELECT * FROM table WHERE CAST(price AS DECIMAL) = CAST(101.31 AS DECIMAL);</code>
Copy after login

Modifying the Database Structure

Consider modifying the price column to the DECIMAL type, which provides better precision for monetary values:

ALTER TABLE `table` MODIFY COLUMN `price` DECIMAL;
Copy after login

The above is the detailed content of Here are a few question-based titles based on your provided text, each focusing on a different aspect of the issue: Option 1 (Focusing on the problem): * Why Does My MySQL SELECT Query Return No Res. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!