case-insensitive SORT BY? - Mailing list pgsql-sql

From Patrick Giagnocavo
Subject case-insensitive SORT BY?
Date
Msg-id 3608003B.2AA4ED27@qi.com
Whole thread Raw
List pgsql-sql
I am trying to ensure that when I do a SORT BY I get back the results in
normal sorted order instead of case-sensitive order.  The WHERE clause
contains a LIKE '%..%' so I cannot use UPPER here in a way that does
what I want.

e.g. , given

A, B, b, a

as data, the normal SORT BY behavior returns

a
b
A
B

How do I make it return

a
A
b
B

instead?

./patrick

pgsql-sql by date:

Previous
From: Colin Dick
Date:
Subject: Question re: null
Next
From: "G. Anthony Reina"
Date:
Subject: Selecting from float4[] arrays