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
| z,d=a=%W|ズン ドコ|;s="";until s[z*4+d] do puts c=a.sample;s+=c end;puts "キ・ヨ・シ!" |
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
| CREATE EXTERNAL TABLE IF NOT EXISTS {your_table_name_here} ( | |
| job_score int, | |
| job_result struct<failure_wave: int, | |
| failure_reason: string, | |
| is_clear: boolean | |
| >, | |
| wave_details array<struct<golden_ikura_pop_num: int, | |
| ikura_num: int, | |
| golden_ikura_num: int, | |
| quota_num: int, |
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
| WITH all_waves AS ( | |
| SELECT | |
| CONCAT( | |
| CAST(job_id AS VARCHAR), | |
| '-', | |
| CAST(details.quota_num AS VARCHAR) | |
| ) AS wave_id, | |
| job_id, | |
| details.quota_num, | |
| details.event_type.name AS event, |
OlderNewer