In tables I have a field width type floor.
And when I do query in PHP, I want to minus from this value another number, for example:
$number = 14.3;
mysql_query("UPDATE field SET count = count - $number WHERE name = '$name');
I need to minus this $number
from count
, but query nothig do. I tried to put it into brackets, but the same result.