水平JOIN我想查詢2個表,一個學生和包含與學生的意見另一個表。與MySQL
學生表:
| ID | Name |
-------------
| 1 | John |
| 2 | Alex |
評語表:
| ID | Student ID | Comment |
-----------------------------
| 1 | 1 | phoned |
| 2 | 1 | emailed |
| 3 | 2 | phoned |
| 4 | 2 | emailed |
| 5 | 2 | mailed |
我所需的輸出會是這樣的:
| Student | Comment 3 | Comment 2 | Comment 1 |
-----------------------------------------------
| John | null | phoned | emailed |
| Alex | mailed | emailed | called |
任何幫助,將不勝感激。這樣做將是如下的
有多少種不同類型的評論是可能的嗎? –
我想通過ID DESC例如 – user3253002
設置的5個限度,秩序和意見是純文本,這樣可以一切 – user3253002