|
> -----Original Message----- > From: David Bocian > Is there something special about an underscore in a LIKE > statement that I didn't know about? The underscore and percentage sign have special meaning within the LIKE predicate. From the SQL Reference Guide: * The underscore sign (_) represents any single character. * The percent sign (%) represents a string of zero or more characters. * Any other character represents itself. In order to use one of the special characters, you need to specify an escape character. ie: SELECT * FROM FILEA WHERE FLDA LIKE '%+_%' ESCAPE '+' For more information, search for the LIKE predicate on the following page: http://publib.boulder.ibm.com/iseries/v5r2/ic2924/info/db2/rbafzmstch2pr ed.htm#HDRCH2LIKE Regards, John Taylor
As an Amazon Associate we earn from qualifying purchases.
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.