Delete a Certain skill from Chars in DB from TBL_MAGIC

smoochy boys on tour

KingOfKings

LOMCN Veteran
Veteran
Loyal Member
Mar 18, 2008
275
2
65
I wish to delete all rows with MAGICID 124 is that possible?
I want to put GTE higher level required so i want to remove it from all the current players, is there a way to delete all rows with FLD_MAGIC: 124
 

idaBigA

Holley Mir 3!!
VIP
Oct 28, 2003
1,966
110
310
Stoke, UK
SELECT *
FROM TBL_MAGIC
WHERE (FLD_MAGICID = 124)

Then just highlight all the ones that it shows you and delete them.
 
Upvote 0