I have a large table and I have to sort the records using tag_id currently this column is varchar but all the values are numeric in this.
Will there be any performance improvement if I convert column datatype from varchar to integer??
Below is the quesry which I have to write:
SELECT * FROM xxx table ORDER BY tag_id
;