您可以使用别名来获取具有不同名称的列
SELECT t.*, a.title AS account_title FROM threads t INNER JOIN accounts...
如果您只想获取帐户标题,请列出您想要的主题列
SELECT t.wanted_column, t.another_column, a.* FROM threads t, INNER JOIN accounts a...