Du skulle vilja kunna göra:
SELECT website
FROM articles cross join
vectors
WHERE title = 'cv1' and MATCH (title, body) AGAINST(cv);
Men argumentet i against
måste vara en konstant.
Du kan tillgripa:
SELECT website
FROM articles cross join
vectors
WHERE title = 'cv1' and
(title like concat('%', cv, '%') or body like concat('%', cv, '%'))