我在mySQL中有一个表,用于存储中心名称和活动。我想明智地在桌子中心展示活动。我使用下面的查询来获取数据:
$query2 = "SELECT * FROM centres_info_act a, cenert_name b Where a.cnt_id = b.ctn_id";
这两个表通过公共列cnt_id和ctn_id连接。主表是cenert_name,其中存储了中心名称和中心地址。
现在,当我在HTML表格中显示它时,每条记录都打印在具有相同中心名称的不同行中。例如,
Example Center Activity 1 Delete
Example Center Activity 2 Delete
Example Center Activity 3 Delete
但我想要输出如下:
Activity 1 Delete
Example Center Activity 2 Delete
Activity 3 Delete