Hi
I have a mysql version 3 with table
that has indexes on it.
I had to add a field called "product_fee" which is decimal(10,2)
DEFAULT 0.00
The "product_fee" of one of the rows in the table was set to 10.00
I executed a query on the table by php function (version 4.3.0) to get that row and the "product fee" was either NULL or had an empty value.
Executing the same query through mysql prompt got me the
correct results.
What could be the problem ?
Thanks and regards