I have a table named as person (which contains the login id of users). I was testing my application and made several test users. So right now this table has many test users and some normal users.
I want to know how can I delete all the test users?
Deleting all users one by one using DELETE login FROM person where login = 'test_user' ; will take long time.
PS: The test users' names do not contain test in it :/ They are just random names.
