Apologies if this question has already been answered, I've already done an extensive search but haven't come across an an answer (probably because I'm not sure how it's properly worded?)
Is it possible to do an alphabetical sort_by
with a set prefix? For example I have a list of universities in a table. Some universities are prefixed by University of
(e.g. University of Cambridge), while others are not (e.g. Durham University). Is it possible to define a prefix for MySQL to ignore?
As an example, the following list
University of Cambridge
University of Bristol
Durham University
kings College London
should be ordered to
University of Bristol
University of Cambridge
Durham University
Kings College London