我需要找到url不包含stripped_url值的所有行。
我尝试了以下查询但它没有给出正确的结果
Sample rows id url stripped_url 1 https://www.google.com google.com 2 https://www.yahoo.com google.com
SELECT * FROM url WHERE TRIM(url) NOT LIKE TRIM(concat(concat('"%',(TRIM(stripped_url))),'%"'));