Re: [SQL] How match percent sign in SELECT using LIKE?

From: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
To: zalman(at)netcom(dot)com (Zalman Stern)
Cc: zalman(at)netcom(dot)com, herouth(at)oumail(dot)openu(dot)ac(dot)il, pgsql-sql(at)postgreSQL(dot)org
Subject: Re: [SQL] How match percent sign in SELECT using LIKE?
Date: 1999-03-16 23:03:58
Message-ID: 199903162303.SAA24348@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

> Bruce Momjian wrote:
> > That is also an excellent idea. Just convert their escape to \ inside
> > the parser. Of course, they still have to use \\ to get a \, as in any
> > string. Great idea.
>
> You can even make it fully compliant if you want. (There are of course
> backward compatibility problems. I'm not sure what the Postgres policy is
> on this.)
>
> - If the escape character is backslash, do nothing.
> - Otherwise, turn all backslashes in the string to double backslashes.

Wow, there are great ideas. No wonder commercial database have
problems. We have all this ideas coming from so many people.

> - If the escape character is not set, stop here.
> - Turn all occurences of the escape character into a backslash except
> where the escape character is doubled, where it should be made into a
> single occurence.
> (Optionally, if "\n" is just an 'n' character, you can handle double
> occurences of the escape character by turning the first one into a
> backslash.)
>
> Probably the best bet for PostgreSQL programmers is to always code Like
> clauses with an ESCAPE '\' (or however its written).
>
> I really wish they'd chosen a character other than underscore for the
> "match one" wildcard... Is there any standard practice for seperating words
> in table names?

Yes, it is a bad choice.

--
Bruce Momjian | http://www.op.net/~candle
maillist(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Herouth Maoz 1999-03-17 09:58:46 Re: [SQL] How match percent sign in SELECT using LIKE?
Previous Message Zalman Stern 1999-03-16 22:55:33 Re: [SQL] How match percent sign in SELECT using LIKE?