다음 테이블이 있다고 가정 해 봅시다.
-----------------------------
| user_id | comment |
-----------------------------
| 2 | thats cool |
| 2 | awesome |
| 3 | i hate this |
| 3 | okay |
| 6 | this is weird |
| 6 | hello? |
| 6 | what is it |
| 9 | how are you |
| 16 | too slow |
| 16 | yes |
| 17 | alrighty |
-----------------------------
한 줄에 어떻게 하나의 행을 선택할 수 user_id
있습니까? 내 결과는 다음과 같습니다.
-----------------------------
| user_id | comment |
-----------------------------
| 2 | thats cool |
| 3 | i hate this |
| 6 | this is weird |
| 9 | how are you |
| 16 | too slow |
| 17 | alrighty |
-----------------------------
효율적인 단일 쿼리로 가능합니까? 아니면 하위 선택이 필요합니까? 어떻게 든 DISTINCT
단일 열에서 사용할 수 있습니까?