Jump to content

[SOLVED] how can i do this...


edawg

Recommended Posts

Either

UPDATE vote_table SET vote_column=0 /* Reset a row */

or

DELETE FROM vote_table /* Delete all rows; add a WHERE clause to delete some rows */ 

 

It depends on how your table/voting system is set up.

TRUNCATE also works... and resets the auto_increment counter.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.