‎2009 Aug 12 3:43 PM
Hi,
there is example how to do search for prefix on table with program
for example if i search for the word man*
i want to get the manager us manager uk
and not general manager
Regards
Chris
‎2009 Aug 12 3:48 PM
Hi Chris,
You can see the following code snippet.
select single name 2
from adrc
into l_name2
where name1 LIKE 'MAT%'.
Here the name 1 that starts with MAT.. will be fetched.
Regards,
Vimal.
‎2009 Aug 12 3:48 PM
Hi Chris,
You can see the following code snippet.
select single name 2
from adrc
into l_name2
where name1 LIKE 'MAT%'.
Here the name 1 that starts with MAT.. will be fetched.
Regards,
Vimal.
‎2009 Aug 12 3:50 PM
Chris,
You can directly write a select query like below.
select * from <tab> into <itab> where <field> like 'MAN%'Raj