我有两个表,如此列表和列表文档 列表就像这样
if($('#UniqueId').length > 0)
{
//show specific element
}
这里我只显示了一些列,但我有一个庞大的数据库 和其他表是listing_documents。所以表格就像这样
listing_id type test1 test2 test3 test4 test5 test6 test7 test8 test9
9
124
6
45
现在我想加入这两个表,因为你可以看到这两个表有listing_id。所以我这样做了我的查询
document_id listing_id folder filename
000564 000006 folder1 file12
000549 000045 folder4 file56
000760 000124 folder6 file67
000456 000009 folder8 file99
但它只显示列表中的listing_id。我想加入两个表,因此两个表数据都应该放在一个表中。有人能告诉我怎么做吗?
答案 0 :(得分:0)
使用Right Join加入表格