Hi all

I have a column of string values some of which may contain % characters

Is it possible to search for just those rows that contain a % eg how
could I search for 20%.

on a test table containing:
I got 20 quid
i got 20% of it
i got just 20%
some money
this is an underscore _ ok

I tried this (to search for 20% followed by a space followed by anything):
SELECT *
FROM Strings
WHERE Strings.str LIKE '%20%% %'

i got 20% of it
I got 20 quid

How casn I find just the rows containing the percent symbol? is it possible?


Paul
www.sandersonforensics.com
skype: r3scue193
twitter: @sandersonforens
Tel +44 (0)1326 572786
http://sandersonforensics.com/forum/content.php?195-SQLite-Forensic-Toolkit
-Forensic Toolkit for SQLite
email from a work address for a fully functional demo licence
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to