I have a table containing data and one of the fields is 'class'
When i do:
select* from cvs where `Player ID` = <a_number>
i get data containing class numbers from 1 to 10
If i then do
select max(`Class`) from cvs where `Player ID` = <a_number>
it returns 9 and not 10?
I deleted the 10th class data and it still returned 9, i deleted the 9th class data and it returned 8
Class is a varchar(50)
What is happening???