| SQL - Questions and Answers Have a SQL question? Post it here. First do a search to see if someone hasn't already answered it. |
|
|||
SQL: max value from a column?i have this data in column
1 2 33333 9999 When i do select max(colname) from table it always return 9999 rather than 33333(which is the actual highest value.. ) What to do?? |