Resetting menu_order to 0 for posts in PHPmyAdmin?

This piece of mySQL code should do the trick. Go into PHPmyAdmin, click the SQL tab and paste this code:

UPDATE wp_posts SET menu_order = 0 WHERE post_type="my_post_type";

This should set menu_order for all posts of the post type of your choice to 0.