I want to write a query to select from a table all rows that have the word "piggy" more than 3 times in a column called Description.
I know the query to select rows with the word "piggy" in a column called Description would be:
SELECT * FROM table WHERE
DescriptionLIKE "%piggy%"
so what do i need to do in order to select only if the word "piggy" occurs more than 3 times.