up vote 3 down vote favorite
1
share [g+] share [fb]

I would like to select all records that have an underscore character in their 11th character, so i try this:

SELECT * FROM "BOM_SUB_LEVEL" where TOP_CODE like '%%%%%%%%%%_%%%'

but this doesnt work as expected, can someone help?

thanks

link|improve this question

77% accept rate
feedback

7 Answers

up vote 12 down vote accepted

Just use the "SUBSTRING" function :

SELECT * FROM "BOM_SUB_LEVEL" where SUBSTRING(TOP_CODE, 11, 1) = "_"

Marc

link|improve this answer
1  
+1 you beet me to it marc, I think this is the best (fastest) option. – northpole Aug 13 '09 at 19:26
1  
+1. This makes way more sense than a whole bunch of single-character wildcards. – JamesMLV Aug 13 '09 at 19:30
feedback

For a single character wildcard use _. For multiple characters wildcards, use %. To escape a "real" appearance of _, use \_ (thanks Bill!).

Try the following code:

SELECT * FROM "BOM_SUB_LEVEL" where TOP_CODE like '___________\_%'

To further elaborate following Dav's comment, note that '%%%' is exactly the same as '%', since by definition '%' covers multiple characters.

link|improve this answer
To elaborate on why this works and your original doesn't, chicane - the % wildcard is an "any number of characters" wildcard - so % is the same as %% is the same as %%% and so on because even a single one can match multiple characters. – Amber Aug 13 '09 at 19:24
@Dav: I wrote my additional text before you posted your comment, no plagiarism intended... – Roee Adler Aug 13 '09 at 19:25
"?" is not a wildcard for LIKE predicates in Pervasive. – Bill Karwin Aug 13 '09 at 19:29
Thanks Bill, fixed – Roee Adler Aug 13 '09 at 19:33
feedback

LIKE % can mean any number of characters, use LIKE _ to mean just one. Since you're looking for an underscore, you need to escape it with !.

SELECT * FROM BOM_SUB_LEVEL WHERE TOP_CODE LIKE '__________!_%'
link|improve this answer
I missed the pervasive tag, this answer is for SQL Server – JamesMLV Aug 13 '09 at 19:29
Pervasive uses backslash, not exclamation mark, to escape wildcards in LIKE patterns. – Bill Karwin Aug 13 '09 at 19:31
feedback

pervasive uses _ to match any single character and \_ to actually match an underscore.

so the select would be:

SELECT * FROM "BOM_SUB_LEVEL" where TOP_CODE like '___________\_%'
link|improve this answer
feedback

The % is not a per character wildcard, its a beginning and end of string wild card.

i.e. if I want to find all rows that have "car" in them, I would do this:

Select * from myTable where myCol LIKE '%car%'

If I wanted just the rows that STARTED with car:

Select * from myTable where myCol LIKE 'car%'

and ended with car:

Select * from myTable where myCol LIKE '%car'

link|improve this answer
it's any combination, so LIKE "c%r" is also valid (and would match, say both car and czar – Cruachan Aug 13 '09 at 19:25
feedback

% is a wildcard and can replace an character, or combination of characters. Use ? instead which replaces a single character.

link|improve this answer
feedback

You can try something like: (play with the numbers, I don't have pervasive to test with)

SELECT * 
  FROM BOM_SUB_LEVEL 
 where SUBSTRING(TOP_CODE, 11,1) = '-'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.