Using MYSQL I have a table where the data has wildcards. Example...
|ID | Model |
|1 | dv209% |
I'm tryinh to write a sql query that will find row 1 when model='dv209AWW'
or model='dv209asdfs'
.
Any help would be appreciated.
Using MYSQL I have a table where the data has wildcards. Example...
|ID | Model |
|1 | dv209% |
I'm tryinh to write a sql query that will find row 1 when model='dv209AWW'
or model='dv209asdfs'
.
Any help would be appreciated.
Try this:
So it will find the row when the value is
dv209AWW
ordv209asdfs
use LIKE