I have a column name that represents a person's name in the following format:
firstname [middlename] lastname [, Sr.|Jr.]
For, example:
John Smith
John J. Smith
John J. Smith, Sr.
How can I order items by lastname?
|
I have a column name that represents a person's name in the following format:
For, example:
How can I order items by lastname? |
|||||
|
|
A correct and faster version could look like this:
Or:
Or even:
Explain
The last two examples use escape-string syntax and the class-shorthand We don't actually have to use non-capturing parenthesis
Test
|
||||
|
|
While this should provide the sorting you are looking for, it would be a lot cheaper to store the name in multiple columns and index them based on which parts of the name you need to sort by. |
|||||
|
|
You should use functional index for this purpose http://www.postgresql.org/docs/7.3/static/indexes-functional.html In your case somehow....
|
|||||||
|