| Author |
Message |
kanisha_prabha
New User
Joined: 10 Mar 2006 Posts: 10
|
|
|
|
I need to do a partial search on a particular descriptor field in ADABAS. In DB2 I could use something like hte following -
SELECT ...
FROM ...
WHERE EMP_NAME LIKE 'KANISHA%'
...
Is there any way I can represent the LIKE parameter in ADABAS? |
|
| Back to top |
|
 |
References
|
Posted: Mon Apr 28, 2008 5:32 pm Post subject: Re: Partial search on an ADABAS file |
 |
|
|
 |
Gnanas SNG
Senior Member
Joined: 06 Sep 2007 Posts: 370 Location: India
|
|
|
|
| Same query will work in ADABAS also if it's in ANSI SQL standard... |
|
| Back to top |
|
 |
ofer71
Global Moderator
Joined: 27 Dec 2005 Posts: 1754 Location: Israel
|
|
|
|
You can use the STARTING FROM operand of the READ statement.
O. |
|
| Back to top |
|
 |
|
|