hi,
here is the 3 situation in my table
1.
id revision
1 0
1 2
1 A
1 B
result should be 2
2.
id revision
1 A
1 B
1 C
result C
3.
id revision
1 1
1 3
result 3
the above tables are examples after "group by"
i wanna select the max number value in a field, but this field contain number and letter, in the case only letter exists, select the max letter value.
anyone can give me a hint ? thanks a lot
here is the 3 situation in my table
1.
id revision
1 0
1 2
1 A
1 B
result should be 2
2.
id revision
1 A
1 B
1 C
result C
3.
id revision
1 1
1 3
result 3
the above tables are examples after "group by"
i wanna select the max number value in a field, but this field contain number and letter, in the case only letter exists, select the max letter value.
anyone can give me a hint ? thanks a lot