我遇到了mySQL查询的问题。我需要的是一个查询,它将在同一页面上显示我正在查看帖子的页面侧面相同类别帖子的链接列表。我几乎完成了一个类似于youtube的音乐网站,用户可以收听音轨并查看同一类别中帖子旁边的曲目列表。 我发现的任何信息都与Wordpress插件有关,我不使用。 我的数据库表是
Table_categories
cat_id
cat_name
Table - Mixes
mix_id
mix_subject
mix_description
mix_date
mix_cat -- mix_cat is the foreign key for categories.cat_id
类别的cat_id链接到表Mixes中的外键mix_cat。我知道它与某些事情有关吗?id =其中一个表中的id的编号,s 干杯伙计感谢您的帮助 特雷弗
答案 0 :(得分:0)
您可以尝试类似
的内容Select * from Table_Mixes where id={insert id here, don`t forget to force the int type to avoid SQL Injection}
获取行,现在你有一个带有mix_cat属性的$ mix对象(或$ mix ['mix_cat'],如果你把它作为一个数组)。
现在你只是
select * from Table_Mixes where mix_cat={insert $mix->mix_cat here} order_by {whatever} limit {how many links?}
并建立链接。