我有3個表選擇外鍵的MySQL
Table: cm
id date title body
1 2013-01-05 18:36:58 SA v AUS SA AUS Body
2 2013-01-04 08:16:20 PA v AP PA v AP Body
Table2: cat_post
post_id cat_id desc
1 2 desccccc
2 2 desccccc
2 1 desccccc
Table3: cats
cat_id name cat_desc
1 Category1 desccccc
2 Category2 desccccc
我要選擇從表釐米,其ID就在於在特定cat_post.cat_id所有記錄。
假設cat_id爲1,從表cm_中選擇cat_post表中post_id爲cat_id 1的所有記錄。
我用這個查詢但這兩次(重複行)將返回所有行
SELECT DISTINCT * from cm INNER JOIN cat_post ON cat_post.cat_id = 2;
什麼是cm表?分類?帖子?還有別的嗎? –
釐米有關的帖子,並cat_post有多少職位是在一個類別中的參考和多少種類是在一個崗位 – Nandla