需要一个查询将某些 mySQL 数据库列放入一行
我需要加入这个 mySQL 表:
TABLE1
id pagetitle
1 remodeling
2 handywork
3 aesthetics
使用这个:
TABLE2
id contentid tmplvarid value
1 1 1 Jaime
2 1 2 img/remodeling.jpg
3 2 1 Alex
4 2 2 img/handywork.jpg
5 3 1 Karla
6 3 2 img/aesthetics.jpg
要输出这个:
id pagetitle author image
1 remodeling Jaime img/remodeling.jpg
2 handywork Alex img/handywork.jpg
3 aesthetics Karla img/aesthetics.jpg
注意:Table1 和 Table2 之间的关系是: Table1.id = Table2.contentid
如果有帮助...tmplvarid 1 是作者,tmplvarid 2 是图像
我可以使用什么 SQL 查询来完成此任务?
I need to join this mySQL table:
TABLE1
id pagetitle
1 remodeling
2 handywork
3 aesthetics
With this one:
TABLE2
id contentid tmplvarid value
1 1 1 Jaime
2 1 2 img/remodeling.jpg
3 2 1 Alex
4 2 2 img/handywork.jpg
5 3 1 Karla
6 3 2 img/aesthetics.jpg
To output this:
id pagetitle author image
1 remodeling Jaime img/remodeling.jpg
2 handywork Alex img/handywork.jpg
3 aesthetics Karla img/aesthetics.jpg
Note: The relation between Table1 and Table2 is: Table1.id = Table2.contentid
If it helps ...tmplvarid 1 is author and tmplvarid 2 is image
What is the SQL query I can use to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)