Sort by page information by Ascending Numbers

Use custom fields wp_query

Ex

<?php
    $args = array(
        'post_type' => 'page',
        'meta_query' => array(
            array(
                'key' => 'mytitle',
                'value' => 'title',                
                'orderby' => 'mytitle',
                'order' => 'DESC'
            ),           
        )
     );
    $query = new WP_Query( $args );
 if ( have_posts() ) while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>

<tr>
<td><?php echo the_field('educational_ranking'); ?></td>
<td><a href="https://wordpress.stackexchange.com/questions/60150/<?php the_permalink(); ?>"><?php the_title(); ?></a></td>
<td><?php echo the_field('current_students'); ?></td>
<td>£<?php echo the_field('tuition_fees'); ?></td>
<td></td>
</tr>

<?php endwhile; rewind_posts(); ?>