Learned this function from a guy, Utkarsh Kukreti, here http://www.fldtrace.com/wordpress/custom-post-types-numeric-title-order
Brilliant solution, it works for one of my category which contains the same title format (e.g. Bla 1, Bla 2...), but it didn't work well with my other category with just the alphabets and/or mix numbers.
My question is what does (wp_posts.post_title+0) mean here?
function orderby_post_title_int( $orderby ) {
return '(wp_posts.post_title+0) ASC';
}