instruction
stringclasses
1 value
input
stringlengths
130
7.08k
output
stringlengths
66
4.67k
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_dw", "table": "dc_prod_cd_mtr", "description": null, "columns": [{"name": "prod_seq", "type": "string", "description": null}, {"name": "prodid", "type": "string", "description": null}, {"name": "prod_nm", "type": "string", "description": null}, {"name": "sale_cd", "type": "string", "descripti...
CREATE TABLE `wprg_odyssey_dw`.`dc_prod_cd_mtr` ( `prod_seq` string COMMENT 'None', `prodid` string COMMENT 'None', `prod_nm` string COMMENT 'None', `sale_cd` string COMMENT 'None', `sale2_cd` string COMMENT 'None', `cpid` string COMMENT 'None', `cp_nm` string COMMENT 'None', `svc_seq` s...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_dw", "table": "dg_wprg_dungeon_d01", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "user_lv", "type": "bigint", "description": null}, {"name": "dungeon_sno", "type": "bigint", "descript...
CREATE TABLE `wprg_odyssey_dw`.`dg_wprg_dungeon_d01` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `user_lv` bigint COMMENT 'None', `dungeon_sno` bigint COMMENT 'None', `stage_sno` bigint COMMENT 'None', `stage_lv` bigint COMMENT 'None', `create_time` string COMMENT 'None', ...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_dw", "table": "sg_wprg_dungeon_sd01", "description": null, "columns": [{"name": "nat_cd", "type": "string", "description": null}, {"name": "dungeon_sno", "type": "bigint", "description": null}, {"name": "stage_lv", "type": "bigint", "description": null}, {"name": "user_lv", "type": "bigint", ...
CREATE TABLE `wprg_odyssey_dw`.`sg_wprg_dungeon_sd01` ( `nat_cd` string COMMENT 'None', `dungeon_sno` bigint COMMENT 'None', `stage_lv` bigint COMMENT 'None', `user_lv` bigint COMMENT 'None', `play_ucnt` bigint COMMENT 'None', `try_cnt` bigint COMMENT 'None', `clear_cnt` bigint COMMENT 'None...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "bi_name", "description": null, "columns": [{"name": "typeno", "type": "smallint", "description": null}, {"name": "sno", "type": "smallint", "description": null}, {"name": "name", "type": "string", "description": null}]}
CREATE TABLE `wprg_odyssey_db`.`bi_name` ( `typeno` smallint COMMENT 'None', `sno` smallint COMMENT 'None', `name` string COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "bi_reason", "description": null, "columns": [{"name": "reason", "type": "int", "description": null}, {"name": "name", "type": "string", "description": null}]}
CREATE TABLE `wprg_odyssey_db`.`bi_reason` ( `reason` int COMMENT 'None', `name` string COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "bi_type", "description": null, "columns": [{"name": "typeno", "type": "smallint", "description": null}, {"name": "name", "type": "string", "description": null}]}
CREATE TABLE `wprg_odyssey_db`.`bi_type` ( `typeno` smallint COMMENT 'None', `name` string COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "bi_user_item_count", "description": null, "columns": [{"name": "uid", "type": "bigint", "description": null}, {"name": "gbuid", "type": "string", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "typeno", "type": "smallint", "description...
CREATE TABLE `wprg_odyssey_db`.`bi_user_item_count` ( `uid` bigint COMMENT 'None', `gbuid` string COMMENT 'None', `level` tinyint COMMENT 'None', `typeno` smallint COMMENT 'None', `sno` smallint COMMENT 'None', `count` int COMMENT 'None', `update_time` timestamp COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "bi_wooparoo", "description": null, "columns": [{"name": "sno", "type": "smallint", "description": null}, {"name": "name", "type": "string", "description": null}, {"name": "attr_1", "type": "string", "description": null}, {"name": "attr_2", "type": "string", "description": null}...
CREATE TABLE `wprg_odyssey_db`.`bi_wooparoo` ( `sno` smallint COMMENT 'None', `name` string COMMENT 'None', `attr_1` string COMMENT 'None', `attr_2` string COMMENT 'None', `attr_3` string COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "data_arena_season", "description": null, "columns": [{"name": "season", "type": "int", "description": null}, {"name": "start_time", "type": "timestamp", "description": null}, {"name": "end_time", "type": "timestamp", "description": null}, {"name": "reg_time", "type": "timestamp...
CREATE TABLE `wprg_odyssey_db`.`data_arena_season` ( `season` int COMMENT 'None', `start_time` timestamp COMMENT 'None', `end_time` timestamp COMMENT 'None', `reg_time` timestamp COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "data_coupon_item", "description": null, "columns": [{"name": "item_id", "type": "string", "description": null}, {"name": "typeno", "type": "smallint", "description": null}, {"name": "serialno", "type": "smallint", "description": null}, {"name": "limit_cnt", "type": "bigint", "d...
CREATE TABLE `wprg_odyssey_db`.`data_coupon_item` ( `item_id` string COMMENT 'None', `typeno` smallint COMMENT 'None', `serialno` smallint COMMENT 'None', `limit_cnt` bigint COMMENT 'None', `etc` smallint COMMENT 'None', `description` string COMMENT 'None', `reg_time` timestamp COMMENT 'None...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "data_event_wpr_summon", "description": null, "columns": [{"name": "idx_event", "type": "int", "description": null}, {"name": "name", "type": "string", "description": null}, {"name": "wpr_sno", "type": "smallint", "description": null}, {"name": "start_time", "type": "timestamp",...
CREATE TABLE `wprg_odyssey_db`.`data_event_wpr_summon` ( `idx_event` int COMMENT 'None', `name` string COMMENT 'None', `wpr_sno` smallint COMMENT 'None', `start_time` timestamp COMMENT 'None', `end_time` timestamp COMMENT 'None', `rewards` string COMMENT 'None', `reg_time` timestamp COMMENT ...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "data_limited_wpr_count", "description": null, "columns": [{"name": "wpr_sno", "type": "smallint", "description": null}, {"name": "wpr_name", "type": "string", "description": null}, {"name": "limited_count", "type": "int", "description": null}, {"name": "hatch_count", "type": "i...
CREATE TABLE `wprg_odyssey_db`.`data_limited_wpr_count` ( `wpr_sno` smallint COMMENT 'None', `wpr_name` string COMMENT 'None', `limited_count` int COMMENT 'None', `hatch_count` int COMMENT 'None', `update_time` timestamp COMMENT 'None', `reg_time` timestamp COMMENT 'None', `reset_time` times...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "galaxy_wpr_count", "description": null, "columns": [{"name": "wpr_sno", "type": "smallint", "description": null}, {"name": "wpr_count", "type": "bigint", "description": null}, {"name": "update_time", "type": "timestamp", "description": null}]}
CREATE TABLE `wprg_odyssey_db`.`galaxy_wpr_count` ( `wpr_sno` smallint COMMENT 'None', `wpr_count` bigint COMMENT 'None', `update_time` timestamp COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "guild_account", "description": null, "columns": [{"name": "id", "type": "bigint", "description": null}, {"name": "name", "type": "string", "description": null}, {"name": "create_time", "type": "bigint", "description": null}, {"name": "shard_id", "type": "int", "description": nu...
CREATE TABLE `wprg_odyssey_db`.`guild_account` ( `id` bigint COMMENT 'None', `name` string COMMENT 'None', `create_time` bigint COMMENT 'None', `shard_id` int COMMENT 'None', `country_code` string COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "guild_info", "description": null, "columns": [{"name": "guild_id", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "exp", "type": "bigint", "description": null}, {"name": "name", "type": "string", "description": null},...
CREATE TABLE `wprg_odyssey_db`.`guild_info` ( `guild_id` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `exp` bigint COMMENT 'None', `name` string COMMENT 'None', `create_time` timestamp COMMENT 'None', `close_time` timestamp COMMENT 'None', `join_type` tinyint COMMENT 'None', `m...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "guild_member", "description": null, "columns": [{"name": "guild_id", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "auth", "type": "tinyint", "description": null}, {"name": "join_time", "type": "timestamp", "description...
CREATE TABLE `wprg_odyssey_db`.`guild_member` ( `guild_id` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `auth` tinyint COMMENT 'None', `join_time` timestamp COMMENT 'None', `attendance_time` timestamp COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_guild_history", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "guild_id", "type": "bigint", "description": null}, {"name": "guild_level", "type": "tinyint", "description": null}, {"name": "uid", "type": "bigint", "descript...
CREATE TABLE `wprg_odyssey_db`.`log_guild_history` ( `idx` bigint COMMENT 'None', `guild_id` bigint COMMENT 'None', `guild_level` tinyint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `time` timestamp COMMENT 'None', `reqtime` t...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_guild_solidarity_token", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "guild_id", "type": "bigint", "description": null}, {"name": "guild_level", "type": "tinyint", "description": null}, {"name": "uid", "type": "bigint", ...
CREATE TABLE `wprg_odyssey_db`.`log_guild_solidarity_token` ( `idx` bigint COMMENT 'None', `guild_id` bigint COMMENT 'None', `guild_level` tinyint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `count` int COMMENT 'None', `result...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_ad_watch", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "ad_type", "type": "smallint", "description":...
CREATE TABLE `wprg_odyssey_db`.`log_user_ad_watch` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `ad_type` smallint COMMENT 'None', `start_time` timestamp COMMENT 'None', `reward_time` timestamp COMMENT 'None', `typeno` smallint COMMENT 'None', ...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_arena_attacked_report", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "battle_id", "type": "bigint", "...
CREATE TABLE `wprg_odyssey_db`.`log_user_arena_attacked_report` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `battle_id` bigint COMMENT 'None', `attacked` tinyint COMMENT 'None', `enemy_uid` bigint COMMENT 'None', `enemy_level` tinyint COMMENT '...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_arena_daily_reward", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "season", "type": "int", "descripti...
CREATE TABLE `wprg_odyssey_db`.`log_user_arena_daily_reward` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `season` int COMMENT 'None', `trophy` int COMMENT 'None', `rank` int COMMENT 'None', `league_sno` smallint COMMENT 'None', `reward_mana...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_arena_matching", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "season", "type": "int", "description":...
CREATE TABLE `wprg_odyssey_db`.`log_user_arena_matching` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `season` int COMMENT 'None', `trophy` int COMMENT 'None', `trophy_win` smallint COMMENT 'None', `trophy_lose` smallint COMMENT 'None', `ran...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_arena_replay", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "season", "type": "int", "description": null}, {"name": "league", "type": "int", "description": null...
CREATE TABLE `wprg_odyssey_db`.`log_user_arena_replay` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `season` int COMMENT 'None', `league` int COMMENT 'None', `level` tinyint COMMENT 'None', `uid_enemy` bigint COMMENT 'None', `create_time` timestamp COMMENT 'None', `result_...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_arena_replay_turn", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "replay_idx", "type": "bigint", "description": null}, {"name": "turn", "type": "int", "description": null}, {"name": "atk_wpr_idx", "type": "tinyint", ...
CREATE TABLE `wprg_odyssey_db`.`log_user_arena_replay_turn` ( `idx` bigint COMMENT 'None', `replay_idx` bigint COMMENT 'None', `turn` int COMMENT 'None', `atk_wpr_idx` tinyint COMMENT 'None', `atk_skill_idx` tinyint COMMENT 'None', `atk_skill_sno` int COMMENT 'None', `atk_damage` int COMMENT...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_arena_stamina", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": ...
CREATE TABLE `wprg_odyssey_db`.`log_user_arena_stamina` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `stamina` int COMMENT 'None', `resultstamina` int COMMENT 'None', `boughtstamina` int COMMENT 'None', `resultbo...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_bag", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "smallint", "description": null}, {"name": "reason", "type": "int", "description": null}, {"...
CREATE TABLE `wprg_odyssey_db`.`log_user_bag` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` smallint COMMENT 'None', `reason` int COMMENT 'None', `presentno` bigint COMMENT 'None', `instno` smallint COMMENT 'None', `typeno` smallint COMMENT 'None', `serialno` smalli...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_battle_quest_complete", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "reason", "type": "int", "description": null}, {"name": "level", "type": "tinyint", "descri...
CREATE TABLE `wprg_odyssey_db`.`log_user_battle_quest_complete` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `reason` int COMMENT 'None', `level` tinyint COMMENT 'None', `questid` int COMMENT 'None', `rewardtype` smallint COMMENT 'None', `rewardsno` smallint COMMENT 'None', ...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_battle_quest_replay", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "quest_seq", "type": "int", "descr...
CREATE TABLE `wprg_odyssey_db`.`log_user_battle_quest_replay` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `quest_seq` int COMMENT 'None', `stage_seq` int COMMENT 'None', `create_time` timestamp COMMENT 'None', `result_time` timestamp COMMENT 'N...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_battle_quest_replay_turn", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "replay_idx", "type": "bigint", "description": null}, {"name": "turn", "type": "int", "description": null}, {"name": "atk_wpr_idx", "type": "tin...
CREATE TABLE `wprg_odyssey_db`.`log_user_battle_quest_replay_turn` ( `idx` bigint COMMENT 'None', `replay_idx` bigint COMMENT 'None', `turn` int COMMENT 'None', `atk_wpr_idx` tinyint COMMENT 'None', `atk_skill_idx` tinyint COMMENT 'None', `atk_skill_sno` int COMMENT 'None', `atk_damage` int ...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_battle_quest_stage_complete", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "...
CREATE TABLE `wprg_odyssey_db`.`log_user_battle_quest_stage_complete` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `questid` int COMMENT 'None', `stageid` int COMMENT 'None', `rewardtype` smallint COMMENT 'None', ...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_bless_give", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "timegive", "type": "timestamp", "description": null}, {"name": "uidfrom", "type": "bigint", "description": null}, {"name": "uidto", "type": "bigint", "descri...
CREATE TABLE `wprg_odyssey_db`.`log_user_bless_give` ( `idx` bigint COMMENT 'None', `timegive` timestamp COMMENT 'None', `uidfrom` bigint COMMENT 'None', `uidto` bigint COMMENT 'None', `instno` smallint COMMENT 'None', `type` smallint COMMENT 'None', `price` bigint COMMENT 'None', `trans...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_bless_take", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "timetake", "type": "timestamp", "description": null}, {"name": "uidfrom", "type": "bigint", "description": null}, {"name": "uidto", "type": "bigint", "descri...
CREATE TABLE `wprg_odyssey_db`.`log_user_bless_take` ( `idx` bigint COMMENT 'None', `timetake` timestamp COMMENT 'None', `uidfrom` bigint COMMENT 'None', `uidto` bigint COMMENT 'None', `instno` smallint COMMENT 'None', `type` smallint COMMENT 'None', `price` bigint COMMENT 'None', `trans...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_charm", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": null}, {...
CREATE TABLE `wprg_odyssey_db`.`log_user_charm` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `itemserialno` smallint COMMENT 'None', `count` int COMMENT 'None', `resultcount` int COMMENT 'None', `typeno` smallint...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_coupon", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": null}, ...
CREATE TABLE `wprg_odyssey_db`.`log_user_coupon` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `coupontype` int COMMENT 'None', `oldcount` int COMMENT 'None', `addcount` int COMMENT 'None', `resultcount` int COMME...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_cross", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "smallint", "description": null}, {"name": "wpr_sno_1", "type": "smallint", "description":...
CREATE TABLE `wprg_odyssey_db`.`log_user_cross` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` smallint COMMENT 'None', `wpr_sno_1` smallint COMMENT 'None', `wpr_sno_2` smallint COMMENT 'None', `wpr_sno` smallint COMMENT 'None', `cross_sno` smallint COMMENT 'None', `...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_dimension_breakthrough", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "descr...
CREATE TABLE `wprg_odyssey_db`.`log_user_dimension_breakthrough` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `wpr_sno` smallint COMMENT 'None', `exp` smallint COMMENT 'None', `before_step` tinyint COMMENT 'None', ...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_dimension_crystal", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "descriptio...
CREATE TABLE `wprg_odyssey_db`.`log_user_dimension_crystal` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `itemserialno` smallint COMMENT 'None', `count` int COMMENT 'None', `resultcount` int COMMENT 'None', `type...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_dimension_mana", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description":...
CREATE TABLE `wprg_odyssey_db`.`log_user_dimension_mana` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `count` bigint COMMENT 'None', `resultcount` bigint COMMENT 'None', `time` timestamp COMMENT 'None', `reqtime`...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_dung", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": null}, {"...
CREATE TABLE `wprg_odyssey_db`.`log_user_dung` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `count` bigint COMMENT 'None', `result` bigint COMMENT 'None', `time` timestamp COMMENT 'None', `reqtime` timestamp COMM...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_dungeon_complete", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "smallint", "description": null}, {"name": "dungeonserialno", "type": "smallint...
CREATE TABLE `wprg_odyssey_db`.`log_user_dungeon_complete` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` smallint COMMENT 'None', `dungeonserialno` smallint COMMENT 'None', `wpr_inst` smallint COMMENT 'None', `wpr_sno` smallint COMMENT 'None', `wpr_lv` tinyint COMMENT '...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_dungeon_enter", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "smallint", "description": null}, {"name": "dungeonserialno", "type": "smallint", ...
CREATE TABLE `wprg_odyssey_db`.`log_user_dungeon_enter` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` smallint COMMENT 'None', `dungeonserialno` smallint COMMENT 'None', `wpr_inst` smallint COMMENT 'None', `wpr_sno` smallint COMMENT 'None', `wpr_lv` tinyint COMMENT 'Non...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_emerald", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "tobless", "type": "bigint", "description": null}, {"name": "level", "type": "smallint", "description": n...
CREATE TABLE `wprg_odyssey_db`.`log_user_emerald` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `tobless` bigint COMMENT 'None', `level` smallint COMMENT 'None', `reason` int COMMENT 'None', `emerald` bigint COMMENT 'None', `boughtemerald` bigint COMMENT 'None', `resultemer...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_exp", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": null}, {"n...
CREATE TABLE `wprg_odyssey_db`.`log_user_exp` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `count` bigint COMMENT 'None', `result` bigint COMMENT 'None', `time` timestamp COMMENT 'None', `reqtime` timestamp COMME...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_food", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": null}, {"...
CREATE TABLE `wprg_odyssey_db`.`log_user_food` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `food` bigint COMMENT 'None', `boughtfood` bigint COMMENT 'None', `resultfood` bigint COMMENT 'None', `time` timestamp C...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_gem", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": null}, {"n...
CREATE TABLE `wprg_odyssey_db`.`log_user_gem` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `gem` bigint COMMENT 'None', `boughtgem` bigint COMMENT 'None', `resultgem` bigint COMMENT 'None', `resultboughtgem` bigi...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_guild_coin", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": nul...
CREATE TABLE `wprg_odyssey_db`.`log_user_guild_coin` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `coin` int COMMENT 'None', `resultcoin` int COMMENT 'None', `time` timestamp COMMENT 'None', `reqtime` timestamp C...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_loginout", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "type", "type": "tinyint", "description": nul...
CREATE TABLE `wprg_odyssey_db`.`log_user_loginout` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `type` tinyint COMMENT 'None', `gather_mana` bigint COMMENT 'None', `take_gem` bigint COMMENT 'None', `harvest_food` bigint COMMENT 'None', `give...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_magic_stone", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": nu...
CREATE TABLE `wprg_odyssey_db`.`log_user_magic_stone` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `time` timestamp COMMENT 'None', `serialno` smallint COMMENT 'None', `addcount` int COMMENT 'None', `resultcount`...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_mana", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": null}, {"...
CREATE TABLE `wprg_odyssey_db`.`log_user_mana` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `mana` bigint COMMENT 'None', `boughtmana` bigint COMMENT 'None', `resultmana` bigint COMMENT 'None', `time` timestamp C...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_mini_wpr_coin", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": ...
CREATE TABLE `wprg_odyssey_db`.`log_user_mini_wpr_coin` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `coin` bigint COMMENT 'None', `resultcoin` bigint COMMENT 'None', `time` timestamp COMMENT 'None', `reqtime` ti...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_present", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "sendertype", "type": "int", "description": nu...
CREATE TABLE `wprg_odyssey_db`.`log_user_present` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `sendertype` int COMMENT 'None', `reason` int COMMENT 'None', `presentno` bigint COMMENT 'None', `typeno` smallint COMMENT 'None', `serialno` smal...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_purchase", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "uid_receiver", "type": "bigint", "description": null}, {"name": "item_id", "type": "int", "description"...
CREATE TABLE `wprg_odyssey_db`.`log_user_purchase` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `uid_receiver` bigint COMMENT 'None', `item_id` int COMMENT 'None', `store` string COMMENT 'None', `sku` string COMMENT 'None', `product_id` string COMMENT 'None', `payment_seq`...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_quest_complete", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "questid", "type": "int", "description"...
CREATE TABLE `wprg_odyssey_db`.`log_user_quest_complete` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `questid` int COMMENT 'None', `completecount` bigint COMMENT 'None', `expcount` int COMMENT 'None', `gemcount` int COMMENT 'None', `manacou...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_quest_start", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "questid", "type": "int", "description": n...
CREATE TABLE `wprg_odyssey_db`.`log_user_quest_start` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `questid` int COMMENT 'None', `completecount` bigint COMMENT 'None', `time` timestamp COMMENT 'None', `reqtime` timestamp COMMENT 'None', `wor...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_roopa_potion", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": n...
CREATE TABLE `wprg_odyssey_db`.`log_user_roopa_potion` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `potion` bigint COMMENT 'None', `resultpotion` bigint COMMENT 'None', `time` timestamp COMMENT 'None', `reqtime`...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_ruby", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": null}, {"...
CREATE TABLE `wprg_odyssey_db`.`log_user_ruby` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `ruby` int COMMENT 'None', `resultruby` int COMMENT 'None', `typeno` smallint COMMENT 'None', `serialno` smallint COMMEN...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_scenario_complete", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "scenarioid", "type": "int", "descri...
CREATE TABLE `wprg_odyssey_db`.`log_user_scenario_complete` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `scenarioid` int COMMENT 'None', `expcount` int COMMENT 'None', `gemcount` int COMMENT 'None', `manacount` int COMMENT 'None', `foodcoun...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_scenario_start", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "scenarioid", "type": "int", "descripti...
CREATE TABLE `wprg_odyssey_db`.`log_user_scenario_start` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `scenarioid` int COMMENT 'None', `time` timestamp COMMENT 'None', `reqtime` timestamp COMMENT 'None', `work_ymd` bigint COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_social_action", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "uid_friend", "type": "bigint", "descrip...
CREATE TABLE `wprg_odyssey_db`.`log_user_social_action` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `uid_friend` bigint COMMENT 'None', `type` tinyint COMMENT 'None', `time` timestamp COMMENT 'None', `reqtime` timestamp COMMENT 'None', `wor...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_statue", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": null}, ...
CREATE TABLE `wprg_odyssey_db`.`log_user_statue` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `statueserialno` int COMMENT 'None', `statueinstanceno` smallint COMMENT 'None', `actiontype` smallint COMMENT 'None', ...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_statue_time", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "statueserialno", "type": "int", "descript...
CREATE TABLE `wprg_odyssey_db`.`log_user_statue_time` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `statueserialno` int COMMENT 'None', `statueinstanceno` smallint COMMENT 'None', `buildtime` timestamp COMMENT 'None', `completetime` timestamp CO...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_storage", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": null},...
CREATE TABLE `wprg_odyssey_db`.`log_user_storage` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `presentno` bigint COMMENT 'None', `instanceno` smallint COMMENT 'None', `typeno` smallint COMMENT 'None', `serialno`...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_timecapsule", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": nu...
CREATE TABLE `wprg_odyssey_db`.`log_user_timecapsule` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `itemserialno` smallint COMMENT 'None', `endtime` bigint COMMENT 'None', `timecapsule` int COMMENT 'None', `resul...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_trade", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "type", "type": "smallint", "description": null}...
CREATE TABLE `wprg_odyssey_db`.`log_user_trade` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `type` smallint COMMENT 'None', `itemtype` smallint COMMENT 'None', `itemserialno` smallint COMMENT 'None', `count` bigint COMMENT 'None', `iteminst...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_wooparoo", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": null}...
CREATE TABLE `wprg_odyssey_db`.`log_user_wooparoo` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `wpr_lv` tinyint COMMENT 'None', `wpr_inst` smallint COMMENT 'None', `wpr_sno` smallint COMMENT 'None', `habitat_ins...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_wpr_grade", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": null...
CREATE TABLE `wprg_odyssey_db`.`log_user_wpr_grade` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `wpr_inst_no` smallint COMMENT 'None', `wpr_sno` smallint COMMENT 'None', `wpr_lv` tinyint COMMENT 'None', `wpr_gra...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_wpr_kill", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "description": null}...
CREATE TABLE `wprg_odyssey_db`.`log_user_wpr_kill` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `wpr_lv` tinyint COMMENT 'None', `wpr_sno` smallint COMMENT 'None', `wpr_inst_no` smallint COMMENT 'None', `kill_cnt...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_wpr_persona_exchange_ticket", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "reason", "type": "int", "...
CREATE TABLE `wprg_odyssey_db`.`log_user_wpr_persona_exchange_ticket` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `reason` int COMMENT 'None', `count` int COMMENT 'None', `boughtcount` int COMMENT 'None', `resultcount` int COMMENT 'None', `...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "user_account", "description": null, "columns": [{"name": "uid", "type": "bigint", "description": null}, {"name": "gbuid", "type": "string", "description": null}, {"name": "join_time", "type": "bigint", "description": null}, {"name": "login_time", "type": "bigint", "description"...
CREATE TABLE `wprg_odyssey_db`.`user_account` ( `uid` bigint COMMENT 'None', `gbuid` string COMMENT 'None', `join_time` bigint COMMENT 'None', `login_time` bigint COMMENT 'None', `logout_time` bigint COMMENT 'None', `withdraw_time` bigint COMMENT 'None', `idp_code` string COMMENT 'None', ...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "user_active_booster", "description": null, "columns": [{"name": "id", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "instno", "type": "smallint", "description": null}, {"name": "uid_friend", "type": "bigint", "descripti...
CREATE TABLE `wprg_odyssey_db`.`user_active_booster` ( `id` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `instno` smallint COMMENT 'None', `uid_friend` bigint COMMENT 'None', `reqtime` bigint COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "user_altar_stone", "description": null, "columns": [{"name": "id", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "inst_no", "type": "tinyint", "description": null}, {"name": "wpr_serial_no", "type": "smallint", "descrip...
CREATE TABLE `wprg_odyssey_db`.`user_altar_stone` ( `id` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `inst_no` tinyint COMMENT 'None', `wpr_serial_no` smallint COMMENT 'None', `wpr_serial_no_1` smallint COMMENT 'None', `wpr_serial_no_2` smallint COMMENT 'None', `complete_time` bigint...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "user_arena", "description": null, "columns": [{"name": "uid", "type": "bigint", "description": null}, {"name": "skip_idx", "type": "smallint", "description": null}, {"name": "first_battle_time", "type": "bigint", "description": null}, {"name": "win_cnt_for_reward", "type": "tin...
CREATE TABLE `wprg_odyssey_db`.`user_arena` ( `uid` bigint COMMENT 'None', `skip_idx` smallint COMMENT 'None', `first_battle_time` bigint COMMENT 'None', `win_cnt_for_reward` tinyint COMMENT 'None', `acc_victory_reward_sno` tinyint COMMENT 'None', `weekly_reward_year` smallint COMMENT 'None', ...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "user_arena_atk_team", "description": null, "columns": [{"name": "uid", "type": "bigint", "description": null}, {"name": "team_no", "type": "tinyint", "description": null}, {"name": "wpr_instno_1", "type": "smallint", "description": null}, {"name": "wpr_instno_2", "type": "small...
CREATE TABLE `wprg_odyssey_db`.`user_arena_atk_team` ( `uid` bigint COMMENT 'None', `team_no` tinyint COMMENT 'None', `wpr_instno_1` smallint COMMENT 'None', `wpr_instno_2` smallint COMMENT 'None', `wpr_instno_3` smallint COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "user_arena_def_team", "description": null, "columns": [{"name": "uid", "type": "bigint", "description": null}, {"name": "wpr_instno_1", "type": "smallint", "description": null}, {"name": "wpr_instno_2", "type": "smallint", "description": null}, {"name": "wpr_instno_3", "type": ...
CREATE TABLE `wprg_odyssey_db`.`user_arena_def_team` ( `uid` bigint COMMENT 'None', `wpr_instno_1` smallint COMMENT 'None', `wpr_instno_2` smallint COMMENT 'None', `wpr_instno_3` smallint COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "user_dimension_breakthrough", "description": null, "columns": [{"name": "uid", "type": "bigint", "description": null}, {"name": "wpr_sno", "type": "smallint", "description": null}, {"name": "step", "type": "tinyint", "description": null}, {"name": "exp", "type": "smallint", "de...
CREATE TABLE `wprg_odyssey_db`.`user_dimension_breakthrough` ( `uid` bigint COMMENT 'None', `wpr_sno` smallint COMMENT 'None', `step` tinyint COMMENT 'None', `exp` smallint COMMENT 'None', `reg_time` timestamp COMMENT 'None', `update_time` timestamp COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "user_friend", "description": null, "columns": [{"name": "uid", "type": "bigint", "description": null}, {"name": "uid_friend", "type": "bigint", "description": null}, {"name": "followtime", "type": "bigint", "description": null}, {"name": "reqmatetime", "type": "bigint", "descri...
CREATE TABLE `wprg_odyssey_db`.`user_friend` ( `uid` bigint COMMENT 'None', `uid_friend` bigint COMMENT 'None', `followtime` bigint COMMENT 'None', `reqmatetime` bigint COMMENT 'None', `friendmatetime` bigint COMMENT 'None', `favoritetime` bigint COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "user_friend_block", "description": null, "columns": [{"name": "uid", "type": "bigint", "description": null}, {"name": "uid_block", "type": "bigint", "description": null}, {"name": "nickname", "type": "string", "description": null}, {"name": "blocktime", "type": "bigint", "descr...
CREATE TABLE `wprg_odyssey_db`.`user_friend_block` ( `uid` bigint COMMENT 'None', `uid_block` bigint COMMENT 'None', `nickname` string COMMENT 'None', `blocktime` bigint COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "user_info_1", "description": null, "columns": [{"name": "uid", "type": "bigint", "description": null}, {"name": "gbuid", "type": "string", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "exp", "type": "bigint", "description": null}, {"...
CREATE TABLE `wprg_odyssey_db`.`user_info_1` ( `uid` bigint COMMENT 'None', `gbuid` string COMMENT 'None', `level` tinyint COMMENT 'None', `exp` bigint COMMENT 'None', `acc_exp` bigint COMMENT 'None', `nickname` string COMMENT 'None', `today_msg` string COMMENT 'None', `wprcon_sno` small...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "user_info_2", "description": null, "columns": [{"name": "uid", "type": "bigint", "description": null}, {"name": "storage_sno", "type": "smallint", "description": null}, {"name": "bag_sno", "type": "smallint", "description": null}, {"name": "mana", "type": "bigint", "description...
CREATE TABLE `wprg_odyssey_db`.`user_info_2` ( `uid` bigint COMMENT 'None', `storage_sno` smallint COMMENT 'None', `bag_sno` smallint COMMENT 'None', `mana` bigint COMMENT 'None', `food` bigint COMMENT 'None', `gem` bigint COMMENT 'None', `ruby` int COMMENT 'None', `emerald` int COMMENT ...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "user_item_count", "description": null, "columns": [{"name": "uid", "type": "bigint", "description": null}, {"name": "typeno", "type": "smallint", "description": null}, {"name": "serialno", "type": "smallint", "description": null}, {"name": "count", "type": "int", "description":...
CREATE TABLE `wprg_odyssey_db`.`user_item_count` ( `uid` bigint COMMENT 'None', `typeno` smallint COMMENT 'None', `serialno` smallint COMMENT 'None', `count` int COMMENT 'None', `boughtcount` int COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "user_item_in_bag", "description": null, "columns": [{"name": "id", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "instno", "type": "smallint", "description": null}, {"name": "typeno", "type": "smallint", "description": ...
CREATE TABLE `wprg_odyssey_db`.`user_item_in_bag` ( `id` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `instno` smallint COMMENT 'None', `typeno` smallint COMMENT 'None', `serialno` smallint COMMENT 'None', `count` bigint COMMENT 'None', `etc` smallint COMMENT 'None', `sendertype` ...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "user_item_in_presentbox", "description": null, "columns": [{"name": "id", "type": "bigint", "description": null}, {"name": "uid_receiver", "type": "bigint", "description": null}, {"name": "uid_sender", "type": "bigint", "description": null}, {"name": "sendtime", "type": "bigint...
CREATE TABLE `wprg_odyssey_db`.`user_item_in_presentbox` ( `id` bigint COMMENT 'None', `uid_receiver` bigint COMMENT 'None', `uid_sender` bigint COMMENT 'None', `sendtime` bigint COMMENT 'None', `readtime` bigint COMMENT 'None', `sendertype` int COMMENT 'None', `message` string COMMENT 'None...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "user_item_in_storage", "description": null, "columns": [{"name": "id", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "instno", "type": "smallint", "description": null}, {"name": "typeno", "type": "smallint", "descriptio...
CREATE TABLE `wprg_odyssey_db`.`user_item_in_storage` ( `id` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `instno` smallint COMMENT 'None', `typeno` smallint COMMENT 'None', `serialno` smallint COMMENT 'None', `count` bigint COMMENT 'None', `etc` smallint COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "user_item_time_count", "description": null, "columns": [{"name": "id", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "typeno", "type": "smallint", "description": null}, {"name": "serialno", "type": "smallint", "descript...
CREATE TABLE `wprg_odyssey_db`.`user_item_time_count` ( `id` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `typeno` smallint COMMENT 'None', `serialno` smallint COMMENT 'None', `endtime` bigint COMMENT 'None', `count` int COMMENT 'None', `reg_time` timestamp COMMENT 'None', `locked...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "user_tutorial", "description": null, "columns": [{"name": "uid", "type": "bigint", "description": null}, {"name": "type", "type": "tinyint", "description": null}, {"name": "start_time", "type": "bigint", "description": null}, {"name": "complete_time", "type": "bigint", "descrip...
CREATE TABLE `wprg_odyssey_db`.`user_tutorial` ( `uid` bigint COMMENT 'None', `type` tinyint COMMENT 'None', `start_time` bigint COMMENT 'None', `complete_time` bigint COMMENT 'None' );
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "user_wooparoo", "description": null, "columns": [{"name": "id", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "inst_no", "type": "smallint", "description": null}, {"name": "serial_no", "type": "smallint", "description":...
CREATE TABLE `wprg_odyssey_db`.`user_wooparoo` ( `id` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `inst_no` smallint COMMENT 'None', `serial_no` smallint COMMENT 'None', `building_type_no` smallint COMMENT 'None', `building_inst_no` smallint COMMENT 'None', `habitat_inst_no` smallint...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_growth_dungeon_auto_clear", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "dungeon_sno", "type": "int"...
CREATE TABLE `wprg_odyssey_db`.`log_user_growth_dungeon_auto_clear` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `dungeon_sno` int COMMENT 'None', `stage_sno` int COMMENT 'None', `stage_lv` smallint COMMENT 'None', `paid_type` tinyint COMMENT 'N...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "wprg_odyssey_db", "table": "log_user_growth_dungeon_replay", "description": null, "columns": [{"name": "idx", "type": "bigint", "description": null}, {"name": "uid", "type": "bigint", "description": null}, {"name": "level", "type": "tinyint", "description": null}, {"name": "dungeon_sno", "type": "int", "d...
CREATE TABLE `wprg_odyssey_db`.`log_user_growth_dungeon_replay` ( `idx` bigint COMMENT 'None', `uid` bigint COMMENT 'None', `level` tinyint COMMENT 'None', `dungeon_sno` int COMMENT 'None', `stage_sno` int COMMENT 'None', `stage_lv` smallint COMMENT 'None', `create_time` timestamp COMMENT 'N...
Write a SQL CREATE TABLE script based on the given schema information.
{"database": "test_bk", "table": "test_table", "description": null, "columns": [{"name": "test_colume1", "type": "string", "description": null}, {"name": "test_colume2", "type": "string", "description": null}]}
CREATE TABLE `test_bk`.`test_table` ( `test_colume1` string COMMENT 'None', `test_colume2` string COMMENT 'None' );