Order Vocablularies Terms Alphabetically
- Posted By:realworks
- Category:Categories
- Type:MySQL
- Views:1715
Order Vocablularies alphabetically by running this SQL snippet on the 'vocabulary' table in you Drupal Database.
This was edited from the code found here: http://www.thingy-ma-jig.co.uk/blog/07-08-2007/how-to-weigh-terms-alphab...
Snippet:
Login/Register to Comment this Snippetset @cnt = 0;
update term_data set weight = @cnt := (@cnt+1) order by name;