在 MySql 中,在 Product 表中,使用全文索引在 detail 列中搜索包含“rabbit”的列, 则下列语句正确的是( ) 。
A.select * from product where mactch (detail) against (‘rabbit’) B.select * from product where against (detail) mactch (‘rabbit’) C.select * from product where fulltext (detail) mactch (‘rabbit’) D.select * from product where mactch (detail) fulltext (‘rabbit’)正确答案A