tags:

views:

14

answers:

2

can full text search be enabled on views? mysql

A: 

You can't create fulltext index for view, but BOOLEAN MODE should work.

If your view can use MERGE algorithm (no GROUP BY, 1 to 1 mapping with underlying table), mysql should use fulltext index in a table.

Naktibalda