this is my sample request
$sql = mysql_query("SELECT * FROM dataweb WHERE web LIKE 'google%'ORDER BY ASC LIMIT 8");
the above query is looking for similar domains. but I want to delete all aka Google results ... which means the result returns google.com, google.br, google.de, etc.
I only need repositories that start with google ..
source
share