Last active
August 29, 2015 14:03
-
-
Save KWKdesign/db5e6faf909bee89d545 to your computer and use it in GitHub Desktop.
Schemaverse: Trophies Last Round
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select name, weight, description | |
from player_trophy, round_seq, trophy | |
where 1=1 | |
and player_id = get_player_id(session_user) | |
and round = last_value-1 | |
and id = trophy_id | |
; | |
-- Schemaverse: Trophies Last Round |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment