I can understand that if you updateUPDATE a tinyint(1)TINYINT(1) column in a database and pass a value of 11 or 00 it will convert it to trueTRUE or falseFALSE, respectively.
I'm just confused on what happens when you updateUPDATE the column with a different numbervalue, say 22. In other words, if you updateUPDATE a tinyint(1)TINYINT(1) column with the value 22, will this be trueTRUE or falseFALSE? Or, is this even doable?