I would like to query a database which is MySQL 5.
Let's say database name is db and the table name is table and the column name is column
and that column is a text
containing the following for example:
aksksksksjsjk&ct=100&rxp=0918&rpa=100
aksksksksjsjk&ct=100&rxp=1018&ls=1
So i would like to query that table and grep only where rxp > 0918
so I'm expecting the result to be:
aksksksksjsjk&ct=100&rxp=1018&ls=1
I tried with SELECT column FROM db.table WHERE column LIKE '%rxp=1018%'and it's working ! but that's meant that i will need to manually insert all dates !