Mark Lubratt wrote:
> Is there a way to make ORDER BY case insensitive?
>
> Thanks!
> Mark
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
> message can get through to the mailing list cleanly
Does the following work?
... ORDER BY UPPER(some_string)
Nick