我想知道如何显示像这种图片格式的数据(Mysql with PHP)

时间:2017-02-09 04:30:33

标签: php mysql

我想用类别显示我的数据。

my attachment picture here - MySQL table categories structure

我该怎么做?

1 个答案:

答案 0 :(得分:1)

请为所有表格使用通用ID ..,

select * from Info s
left join Education sm
  on s.id =sm.common_id
left join sports m
  on s.id = m.common_id;

你的桌子就像:

  • 信息=> ID,名称,类别
  • 教育=> common_id,名称,程序等,
  • sports => common_id,名称,程序等