Matching Wildcard In Database Table
October 5, 2010
I wanted to do a select that would match specific data in the table, or a wildcard row.
So my database contained
drumcoder fred *
If I selected matching on "drumcoder" I wanted the drumcoder row returned.
If I selected matching on "flibble" I wanted the * row returned.
I …