Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Search for String patterns in a Database table

Former Member
0 Likes
833

Hi

There is a select statement using where condition with a like statement

WHERE table1  <> 'JP'
             AND (
                 ( field1 LIKE '%:%' OR field2 LIKE '%:%' ) 

It fetches records where the field field1 or field2 has string:string as value where string is some set

of characters . What is the equivalent of LIKE in se11 / se12 .

Thanks in advance .

Geethanjali

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
620

Hello

In SE11/SE12 use asterisk ( * ) for field.

4 REPLIES 4
Read only

Former Member
0 Likes
621

Hello

In SE11/SE12 use asterisk ( * ) for field.

Read only

0 Likes
620

actually my pattern requires %:% where in i have to include even the : . how do i enforce this selection ?

Read only

0 Likes
620

Hello

Try


*:*

Read only

Former Member
0 Likes
620

Hi,

Go with above suggestions & use asterisk ( * ).

Thanks & Regards,

Krishna...