Deleting All tags except categories Wp database

delete from `wp_terms` where `term_id` in ( SELECT `term_id`
    FROM `wp_term_taxonomy`
    WHERE `taxonomy` = 'post_tag' ) and `term_id` not like 1

The above Code was exactly what I was looking for.