Re: Case Insensitive comparison

Поиск
Список
Период
Сортировка
От Roberto Mello
Тема Re: Case Insensitive comparison
Дата
Msg-id 20030925053008.GC4203@cc.usu.edu
обсуждение исходный текст
Ответ на Case Insensitive comparison  ("George A.J" <jinujosein@yahoo.com>)
Ответы Re: Case Insensitive comparison
Re: Case Insensitive comparison
Список pgsql-sql
On Wed, Sep 24, 2003 at 08:35:50PM -0700, George A.J wrote:
> hai
>  
> i am using postgresql 7.3.x. I am converting a database in MS SQL server to PostgreSQL. 
>  
> The main problems i am facing is that in sql server the text comparisons are case insensitive. how can i compare text
caseinsensitive in postgresql without using an upper() or lower() function in both sides (=). Is there any option to
setin postgresql?
 
> Is there any problem in overriding the = operator that compare text. ie droping the current operator = and creating a
new= operator(text,text). Does the existing = operator is using internally by postgres for some porpose. please help
 

Souinds like MS-SQL has broken behavior.

Use ILIKE, but I can't remember if you lose indice seaches with that.
Overriding the operator should be ok, but again I don't know what the
impact on index usage would be.

> Another problem is in creating function...
> How can i create a function that accept and return any type. the type "any" is not allowing as parameter or return
type.Is it possible? i want to create a function similar to NULLIF().
 

Use the standard coalesce().

-Roberto

-- 
+----|        Roberto Mello   -    http://www.brasileiro.net/  |------+
+       Computer Science Graduate Student, Utah State University      +
+       USU Free Software & GNU/Linux Club - http://fslc.usu.edu/     +
MONEY TALKS ...   but all mine ever says is GOODBYE!


В списке pgsql-sql по дате отправления:

Предыдущее
От: Stephan Szabo
Дата:
Сообщение: Re: Case Insensitive comparison
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Case Insensitive comparison