mysql - Fulltext search in inner join table -
i've query:
select r.*, rtype.type type from
app_resourcer inner join
app_resource_typertype on rtype.id = r.resource_type_id match(
name,
type) against('abcdef' in boolean mode)
this query results:
#1210 - incorrect arguments match
what wrong? both columns have full-text index!
Comments
Post a Comment