Je zou graag het volgende kunnen doen:
SELECT website
FROM articles cross join
vectors
WHERE title = 'cv1' and MATCH (title, body) AGAINST(cv);
Maar het argument in against
moet een constante zijn.
U kunt een beroep doen op:
SELECT website
FROM articles cross join
vectors
WHERE title = 'cv1' and
(title like concat('%', cv, '%') or body like concat('%', cv, '%'))