I have the following table structure:
DROP TABLE IF EXISTS `tblusers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_
isadmin is a column of type bit and you are storing a value of type varchar in it which is of larger size than bit. modify query as follows:-
bit
varchar
UPDATE `tblusers` SET `IsAdmin`=b'1' WHERE `UserID`='79';