You won't be able to make all of them 0 at the same time, as you can't have duplicates for the PK.
Create a copy of the table using phpMyAdmin or any tool you want or using SQL queries.
Then delete all data from the original table using:
DELETE users_items
Or:
TRUNCATE users_items
Then reset auto increment using:
ALTER TABLE users_items AUTO_INCREMENT = 1
If you used TRUNCATE
then you won't have to reset the auto increment counter.
After this you can use SELECT
and INSERT
to get the data from the copied table back to this one:
INSERT INTO users_items (col2, col3...) SELECT col2, col3,... FROM users_items_copy
(Note: the id column was not touched while selecting and inserting rows.)