我有两个表:

第一个表是带有ID列的item,第二个表是带有标题列的item_description
我希望从项目表中获得不同的行,从item_description table中获得标题

我是这样做的:

SELECT  distinct id, item_description.title
FROM (item use index (PRIMARY))


最好的要求是什么?

问候
坦率

最佳答案

好吧,据我所知,您想加入两个表。这样做是这样的:

SELECT distinct it.id, idesc.title
FROM item it
JOIN item_description idesc ON it.id=idesc.item_id;


当然,您需要在item_description表中的一列与id表中的item列相对应。

09-10 17:59