Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Sql Code to Find Something

Re: Sql Code to Find Something

From: Hermann Schlösser <hschloes_at_gmx.de>
Date: Sat, 15 Mar 2003 18:09:39 +0100
Message-ID: <3E735E53.2000605@gmx.de>

Rene Nyffenegger wrote:
> select email_addr from emx_table where instr(email_addr,'@') = 0;

good solution !
perhaps you could also exclude those adresses with more than one '@':

select email_addr from emx_table where instr(email_addr,'@',,1) = 0;

have fun
Hermann Received on Sat Mar 15 2003 - 11:09:39 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US