Created
June 17, 2017 15:59
-
-
Save divide-by-zero/a796b3689ec94dad1ccae5407ed1efe0 to your computer and use it in GitHub Desktop.
GoogleSpreadSheetBackEndにbyteデータを格納する+機能追加 ref: http://qiita.com/divideby_zero/items/322c5bb859e91fa3b572
This file contains hidden or 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
| var query = new SpreahSheetQuery("scoreRank"); | |
| query.Select("id,name,hiscore"); |
This file contains hidden or 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
| query.Select("id","name,hiscore"); |
This file contains hidden or 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
| var query = new SpreahSheetQuery("scoreRank"); | |
| query.Distinct("id"); |
This file contains hidden or 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
| var query = new SpreahSheetQuery("scoreRank"); | |
| query.OrderByDescending("score").Distinct("id"); |
This file contains hidden or 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
| var query = new SpreahSheetQuery("scoreRank"); | |
| query.OrderByDescending("date").Distinct("id"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment