加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
link_able_a1_c1_e2数据还少.sql 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
monomania 提交于 2020-02-10 23:42 . 1.xxx
SELECT
ar.`MatchDate`,
ar.`TOVoid`,
ar.`TOVoidDesc`,
ar.`AlFlag`,
ar.`PreResult`,
ar.`Result`,
mh.MainTeamGoals AS MainTeamGoal,
mh.GuestTeamGoals AS GuestTeamGoal,
ar.`HitCount`,
ar.`LetBall`,
ar.`MyLetBall`,
l.Name AS LeagueName,
mh.MainTeamId AS MainTeam,
mh.GuestTeamId AS GuestTeam
FROM
foot.t_league l,
foot.t_match_his mh,
foot.t_analy_result ar,
(SELECT
temp.`MatchId`
FROM
(SELECT
ar1.`MatchId`,
ar1.`PreResult`
FROM
foot.`t_analy_result` ar1,
foot.`t_analy_result` ar2
WHERE ar1.`MatchId` = ar2.`MatchId`
AND ar1.`AlFlag` = 'E2'
AND ar2.`AlFlag` = 'C1'
AND ar1.`PreResult` = ar2.`PreResult`
AND ar2.`TOVoidDesc` = '') temp,
foot.`t_analy_result` a1
WHERE a1.`MatchId` = temp.`MatchId`
AND a1.`AlFlag` = 'A1'
AND a1.`PreResult` = temp.`PreResult`) temp
WHERE mh.LeagueId = l.Id
AND mh.Id = ar.MatchId
AND ar.`MatchId` = temp.MatchId
AND ar.`AlFlag` IN ('E2', 'C1','A1')
ORDER BY ar.MatchDate DESC,
l.id ASC,
mh.MainTeamId ASC,
ar.`AlFlag` DESC,
ar.`PreResult` DESC
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化