We want to search a record from table based on search string. This search is a part of Stored procedure.
Following is what we need: 1. In table ppl there is column name which contains data in format of name,surname Say records are barack,oba bar,obama and barack,obama.
- We want to select record based on search string. Search string can be name OR surname.
We want exact search based on search string. Means if search string is bar; it should not return barack,obama record and should only return only bar,obama. Similar exact search for surname part.
We don’t know if the search string will have name or surname. So search string can even be “oba” ..and it should return only “barack,oba” record.
Following approaches we have tried untill now; but none of these worked :
- select name from ppl where name like 'bar,%' or name like '%,bar'; This is working for name part but not working for surname part.
select name from ppl where name like 'oba,%' or name like '%,oba'; is not giving proper results.
select name from ppl where name = ANY('%,oba',oba,%'); - not working
select name from ppl where regexp_like (name,'^,oba$') OR regexp_like (name,'oba$,^'); - not working
I request you to share your thoughts in this case.
name like 'bar,%' or name like '%,bar'doesn't work. It does for me. Of course, you don't have anyone with the surname 'bar'... – Tony Andrews Sep 8 '11 at 12:02