I need to find valid records as part of a database cleanup script.
What I need is a regular expression that will match, for a single column:
records containing BOTH numbers AND letters (or any other character).
records containing ONLY numbers (including decimals)
Invalid records are those which contain ONLY letters and I do not want these returned, or NULL for the column.
Anybody good with regex?