in reply to Re^2: Search a SQL Table and Delete Records
in thread Search a SQL Table and Delete Records
Learning Perl? Excellent!
Learning Perl by applying it when not needed and in a way that makes the specific problem more complex to solve? Not usually advised.
But for this quest: use DBI as recommended above; capture each row's id and the relevant field's contents to an array; use a regular expression to search the elements for whatever words you consider earmarks of spam (and NB roboticus' comment thereon) and when found, use the row id to tell your db engine to delete those rows.
Adopting this scheme will be a SMOP... but one that is actually fairly 'simple' and one which provides a really relevant problem case for your effort to learn Perl.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Search a SQL Table and Delete Records
by Katanya (Novice) on Aug 29, 2014 at 02:08 UTC |