还是authors表,要求在每个城市取一个作者,显示该作者的左右信息:可以用如下表达:select * from authorswhere au_id in(select min(au_id)from authorsgroup by city)其实是分组后取最小ID的行