I have a table has a column "A" which has values contains "*". I want to search a word which like column A.
Table1 Example;
index ColumnA
1 New*
2 *york
3 Cat*
4 *ew*
.
.
.
@search = "Newyork"
I want to create a select statement search "Newyork" in column A. So the search will return to me index 1,2 and 4.
CP
is useless because I want to search opposite direction.
data: lf_search(10) value 'Newyork'.
select * from Table1 where ColumnA CP lf_search.
endselect.
Is there any way to select table has pattern value in its column?
Many thanks.
There is no direct way to do this. I would approach this way:
If you really need to make this process thru database. I think there is a possibility, very unusual. First create a table by copying the table1 (let's call it table1_bis). Then...
(this is a guess... please check, I'm not truly sure this works as is)