MySQL String query
I have a MySQL query of table column where I want to include ONLY values that have letters and commas.(but does not need to have a comma)
I want to exclude any records that contain any number or special character that is not a comma
The field contains names like this that I want John, Smith or John Smith
But a lot of others are like
John, Smith 1234
John, Smith**
John/Smith
John, Smith 255-4422
that I don't want.
How do I exclude these from a MYSQL query?
