× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Hi Joe,

The following example with Trim and Concats also works:
C                   Eval      HstNameFix = 'Media'

C/Exec SQL
C+ Delete from MyTable
C+            Where Name like '%' concat Trim(:HstNameFix) concat '%'
C/END-EXEC

Mit freunlichen Grüßen / Best regards

Birgitta Hauser

"Shoot for the moon, even if you miss, you'll land among the stars." (Les Brown)
"If you think education is expensive, try ignorance." (Derek Bok)




----- Original Message ----- From: "Joe Pluta" <joepluta@xxxxxxxxxxxxxxxxx>
To: "'RPG programming on the AS400 / iSeries'" <rpg400-l@xxxxxxxxxxxx>
Sent: Tuesday, October 17, 2006 19:53
Subject: RE: sql DELETE FROM with wildcard "%"


Thanks, Birgitta... I hadn't tried a varying field. It's good to know that
it works the way one would expect.

It's also nice to know that you can use TRIM on a host variable.  It would
be nice if you could then concatenate that trimmed variables with a '%'
right in the SQL statement.

Joe

From: HauserBirgitta

Hi,

there are several possibilites to solve your problem:

Here are some examples:
D HstName         S             50A   varying
D HstNameFix      S             50A
 *------------------------------------------------------
C                   Eval      HstNameFix = '%Media%'

C/Exec SQL
C+ Delete from MyTable
C+            Where  Name Like Trim(:HstNameFix)
C/End-Exec

C                   Eval      HstName = '%Meier%'

C/Exec SQL
C+ Delete From MyTable
C+            Where Name Like :HstName
C/End-Exec

C                   Eval      HstName = 'Miller'

C/Exec SQL
C+ Delete From MyTable
C+            Where PosStr(Name, :HstName) > 0
C/END-EXEC

C                   Eval      HstNameFix = 'Brown'

C/Exec SQL
C+ Delete From MyTable
C+            Where PosStr(Name, Trim(:HstNameFix)) > 0
C/END-EXEC

Hope this helps.

Mit freunlichen Gruessen / Best regards

Birgitta Hauser


>
> Is this the correct way to write an embedded sql "DELETE FROM" > statement
> with a wildcard?
> ==============================================================
>           C/EXEC SQL
> C+ delete from qtemp/tempf1 where ACITY not like :BCITY || > '%'
>           C/END-EXEC
> ==============================================================
>
> Thanks,
>
> Frank


--
This is the RPG programming on the AS400 / iSeries (RPG400-L) mailing list
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/rpg400-l.






As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.