如何正确使用 JOIN 将与第二个表中的 ID 匹配的每一行添加为第一个表的列标题。
例子。
主题桌
ID TITLE DATE TEXT
1 logo 23101 some sample text
2 back 23101 some sample text
THEME_META表
refID field value
1 width 300
1 height 190
1 alt some alternate text
2 bgcolor #222
然后 MySQL 查询将是SELECT * FROM theme WHERE date = ?
然后我会计算我的结果并将我的主题项放在一个变量中,我可以用它来回显行中任何列的值。
例如。echo $theme['title'];
我如何也能够通过 JOIN 能够回显
$theme['width'] . $theme['height'] . $theme['alt']