1

我有三个表,即标题、图像、列表。标题表有一个 auto_increment id,它作为参考 id 存在于其他两个表中,除了这两个表有自己的 auto_increment pid 和 lid,我想使用 while 循环从所有表中获取记录。

eg.
my title table has

id   title
1    nirman
2    meditation

my image table has

pid   id  image
1     1    1.jpg
2     1    2.jpg
3     2    6.jpg

and my list table has

lid   id   list
1     1    serve us....
2     1    web service
3     1    cms
4     2    about

我有不同的部门来显示图像和列表中的所有数据,其中标题来自标题表。如果您能理解我要问的内容,请回复相关代码,否则请回复您无法理解的文本部分。

4

1 回答 1

1
select title, image, list
from title t, image i, list l
where t.id = i.id
and t.id = l.id
于 2013-06-19T13:07:50.337 回答