So I went to mysql docs to check out if they had info on what to do. I found this
“[0-9]*” matches any number of digits, and “.*” matches any number of anything.
So, I tried them both out & have no result that back back.
The query I used.
SELECT * FROM table WHERE name LIKE '[0-9]*'
&
SELECT * FROM table WHERE name LIKE '.*'
and nothing showed up.. I had two rows with digits in the names & nothing showed up. What am I doing wrong?