我有两张桌子:
第一个表item
带有 id 列,第二个表item_description
带有标题列 我希望从 item 表中获取不同的行,并从item_description table
我这样做了:
SELECT distinct id, item_description.title
FROM (item use index (PRIMARY))
最好的要求是什么?
问候弗兰克
我有两张桌子:
第一个表item
带有 id 列,第二个表item_description
带有标题列 我希望从 item 表中获取不同的行,并从item_description table
我这样做了:
SELECT distinct id, item_description.title
FROM (item use index (PRIMARY))
最好的要求是什么?
问候弗兰克