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.
我想创建一个索引,其中包含来自不同表的 2 列。
我尝试通过 phpmyadmin 界面但没有运气。我怎样才能用mysql实现这一点?
你不能。索引与单个表相关,唯一接近您希望的是两个索引表之间的 JOIN,但仍然,this is not what you're looking for. Move along
this is not what you're looking for. Move along
据我所知,您只能为同一张表的列添加索引。所以你必须分别创建你的两个索引。一个用于 tableA 中的 2 列,另一个用于 tableB 中的列。