I have a table called "schedule" and that table has a field called "year". "year" is a float value.
All fields contains one of these entries:
2004.11
2004.12
2004.13
2004.21
2004.22
2004.23
2004.31
2004.32
2004.33
This is my statement:
SELECT * FROM `schedule` WHERE year = 2004.32
The query runs and is supposed to select all records from the 2004.32 season, but it doesn't select any data.
All fields contains one of these entries:
2004.11
2004.12
2004.13
2004.21
2004.22
2004.23
2004.31
2004.32
2004.33
This is my statement:
SELECT * FROM `schedule` WHERE year = 2004.32
The query runs and is supposed to select all records from the 2004.32 season, but it doesn't select any data.