UPDATE tablename SET count = count+1
This query assumes that your table has only one row...
EDIT: Oh, by the way Eclipse. The whole point of using the "++" operator is to avoid using assignations. Thus, it has more class to write "count++;". And though I never coded C, if I recall correctly, "count = count++" wouldn't even work, because the increment would happen AFTER the assignation. You would have to write "count = ++count;". But afterthought, I think that it doesn't matter because the ++ that happens after the assignation would make the count go up anyway. Well, all this to say that the "count = " part is completely useless.