Ti piacerebbe poter fare:
SELECT website
FROM articles cross join
vectors
WHERE title = 'cv1' and MATCH (title, body) AGAINST(cv);
Ma, l'argomento in against
deve essere una costante.
Puoi ricorrere a:
SELECT website
FROM articles cross join
vectors
WHERE title = 'cv1' and
(title like concat('%', cv, '%') or body like concat('%', cv, '%'))