1

これは答えられているか、簡単すぎるかもしれませんが、私にとってはうまくいくものを見つけられなかったので、ここにいます.

私がやりたいのは、一致する 2 種類のレコードを持っている人のリストを作成することです。これが私が持っているものです。

----------------------------------------------------
| user_id | username | total_exp | exp_since_death |
| 1       | test     | 123       | 123             |
| 2       | abd      | 112       |  43             |
| 3       | bcd      | 144       | 144             |
| 4       | def      |  90       | 50              |
| 5       | asdf     | 173       | 173             |
| 6       | zxvf     | 220       | 113             |
----------------------------------------------------

これは私が示したいものです:

  • 1 - テスト - 123
  • 3 - BC - 144
  • 5 - アスデフ - 173

どうすればこれを達成できますか?total_exp と exp_since_death の両方の列が同じ値である必要があります。どうもありがとう。

4

3 に答える 3

7
select user_id, username, total_exp
from yourtable
where total_exp = exp_since_death;
于 2012-05-18T13:55:58.100 に答える
1
Select user_id, username, total_exp from table
where total_exp = exp_since_death
于 2012-05-18T13:58:00.890 に答える
0

次のクエリを使用します。

select * from table1 where total_exp = exp_since_death 
于 2012-05-18T13:58:24.277 に答える