Thread: 'select where' using multiple columns.

'select where' using multiple columns.

From
Rob Kirkbride
Date:
Hi,

I've googled around for this but can't see a decent way of doing this :

I've got a persons name which is being stored say in 3 columns :-  
Title, Forename_1, Forename_2, Surname. I want to allow a search say for 
'John Smith'. Problem is I can't just break it up into forename and 
surname because I won't also know.
Is there a way to do something like a
'select * where forename_1,forename_2,surname like '%String%'   ??

Thanks for any help. Apologies if its a FAQ.

Rob



Re: 'select where' using multiple columns.

From
Ian Johannesen
Date:
Hi.

Rob Kirkbride wrote:
> I've googled around for this but can't see a decent way of doing this :
> 
> I've got a persons name which is being stored say in 3 columns :- 
> Title, Forename_1, Forename_2, Surname. I want to allow a search say for
> 'John Smith'. Problem is I can't just break it up into forename and
> surname because I won't also know.
> Is there a way to do something like a
> 'select * where forename_1,forename_2,surname like '%String%'   ??
> 
> Thanks for any help. Apologies if its a FAQ.

SELECT * FROM table WHERE forename_1 || ' ' || forename_2 || ' ' ||
surname LIKE '%String%';

-- 
Digitally Yours,

Ian Johannesen
web: http://perlpimp.dk/
msn: ij@perlpimp.dk
cel: +45 31 13 73 76

Re: 'select where' using multiple columns.

From
daq
Date:

RK> Hi,

RK> I've googled around for this but can't see a decent way of doing this :

RK> I've got a persons name which is being stored say in 3 columns :-  
RK> Title, Forename_1, Forename_2, Surname. I want to allow a search say for 
RK> 'John Smith'. Problem is I can't just break it up into forename and 
RK> surname because I won't also know.
RK> Is there a way to do something like a
RK> 'select * where forename_1,forename_2,surname like '%String%'   ??

RK> Thanks for any help. Apologies if its a FAQ.

RK> Rob


RK> ---------------------------(end of broadcast)---------------------------
RK> TIP 5: don't forget to increase your free space map settings

Try this way:

select * .... where forename_1||' '||forename_2||' '||surname like '%String%'

or

select * .... where forename_1||' '||forename_2||' '||surname~'String'

DAQ



Re: 'select where' using multiple columns.

From
Hélder M. Vieira
Date:
> Is there a way to do something like a
> 'select * where forename_1,forename_2,surname like '%String%'   ??


You could try the following, but it won't get a medal for performance...

SELECT * FROM xpto WHERE forename_1 LIKE '%String%' OR forename_2 LIKE 
'%String%' OR surname LIKE '%String%'



Helder M. Vieira 




Re: 'select where' using multiple columns.

From
Rob Kirkbride
Date:
Ian Johannesen wrote:

>Hi.
>
>Rob Kirkbride wrote:
>  
>
>>I've got a persons name which is being stored say in 3 columns :- 
>>Title, Forename_1, Forename_2, Surname. I want to allow a search say for
>>'John Smith'. Problem is I can't just break it up into forename and
>>surname because I won't also know.
>>Is there a way to do something like a
>>'select * where forename_1,forename_2,surname like '%String%'   ??
>>
>>    
>>
>SELECT * FROM table WHERE forename_1 || ' ' || forename_2 || ' ' ||
>surname LIKE '%String%';
>
>  
>
Thanks for the quick response. I've tried that and it works fine. Thanks 
a lot and thanks to Daq and Helder.

Rob