I'm thinking of using a MySQL query that looks like this, on a hefty table :
mysql_query("SELECT * from tracker WHERE URI LIKE '%[url]mysite.com/movies%[/url]' ");
the Table has abt 500,000 rows and grows significantly every day.
for better speed, should I use REGEXP instead of LIKE??
:rolleyes:
BTW need to say that the num of rows matching the above query should account for about 1/3 of the total number of rows in the table.