Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做这样的双重选择(子查询)
SELECT * FROM (SELECT ...)
我想选择一些列作为全文类型的东西
SELECT * FROM (SELECT column AS newname MAKE newname FULLTEXT)
换句话说,我需要newname索引*为FULLTEXT:
newname
*
FULLTEXT
据我了解,你可能会寻找这个
ALTER TABLE your_table ADD FULLTEXT(newname);
这会将列更改newname为 FULLTEXT