shortDesc
フィールドごとに 1 行だけを選択するにはどうすればよいですか? どの行かは気にしませんが、必要なのは 1 行だけです。
私のテーブルの抽出は
|longDescr|shortDesc|
|---------|---------|
| First 1 | first |
| First 2 | first |
| First 3 | first |
| First 4 | first |
| Second 1| second |
| Second 2| second |
| Second 3| second |
| Second 4| second |
| Third 1 | third |
| Third 2 | third |
| Third 3 | third |
そして、私が期待しているのはカーソルの結果です:
|longDescr|shortDesc|
|---------|---------|
| First 1 | first |
| Second 1| second |
| Third 1 | third |
SQL クエリの書き方がよくわかりません。何か案は?