why does my sintax is not right?
SELECT *, MATCH(tags,title,description) AGAINST (\'asd jhbdckdsb\' IN BOOLEAN MODE) AS score FROM blogs WHERE
You cannot use a column alias in the WHERE clause. You must repeat the MATCH a second time.
invisible columns and column alias are not allowed in WHERE so use HAVING
WHERE
HAVING
HAVING score > 0 instead of WHERE
HAVING score > 0