Como ativar a classificação apenas para uma coluna no JQUERY Datatable

Estou tentando ativar a classificação com base em uma coluna apenas em uma tabela de dados. mas não está funcionando. Foi assim que tentei

var myTable = $("#tbl_main").dataTable({
    "dom": "<'tableinfobar'i><'tablesearchbox'f><'tablestarfilter'><'tablebody't>S<'tablelength'l><'tablepaging'p>",
    "ordering": false,
    "columnDefs": [{"targets": [0, 6],"searchable": false}, {"targets":2, "type":"html-num","orderable":true}],
    "lengthMenu": [
        [10, 20, 50, 100, 500, -1],
        [10, 20, 50, 100, 500, "All"]
    ]
}).show();

Aqui eu preciso ativar a classificação apenas para a segunda coluna e tentei isso emcolumnDefs

questionAnswers(3)

yourAnswerToTheQuestion