I´m having some trouble sorting an ajax datatable in ascending order, since the default value in mysql is either NULL or 0, and I don´t want to show them. For example, in my table I have:
item | value
-----+------
a | 2
b | 3
c | 4
d | NULL
The descending order sort works well, however ascending will show 'd' first, and I don't want 'd' to be there. It also seems that a custom js order is not possible because since this is ajax, the order is done in the db directly.
How can I solve this?