You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select fsBoots.bootsName,
fsBoots.bootsModel,
fsBlades.bladesName,
fsBlades.bladesModel,
sConfig.aSkateConfigID,
sum(iTime.ice_time)/60 as ConfigTime
from uSkateConfig sConfig
INNER JOIN uSkaterBoots fsBoots ON sConfig.uSkaterUUID = fsBoots.uSkaterUUID
and sConfig.uSkaterBootsID = fsBoots.bootID
INNER JOIN uSkaterBlades fsBlades ON sConfig.uSkaterUUID = fsBlades.uSkaterUUID
and sConfig.uSkaterBladesID = fsBlades.bladeID
INNER JOIN ice_time iTime ON sConfig.uSkaterUUID = iTime.uSkaterUUID
and sConfig.aSkateConfigID = iTime.uSkaterConfig
WHERE sConfig.uSkaterUUID = '1'
GROUP BY sConfig.aSkateConfigID
-- HAVING ConfigTime < 60
The text was updated successfully, but these errors were encountered:
select fsBoots.bootsName,
fsBoots.bootsModel,
fsBlades.bladesName,
fsBlades.bladesModel,
sConfig.aSkateConfigID,
sum(iTime.ice_time)/60 as ConfigTime
from uSkateConfig sConfig
INNER JOIN uSkaterBoots fsBoots ON sConfig.uSkaterUUID = fsBoots.uSkaterUUID
and sConfig.uSkaterBootsID = fsBoots.bootID
INNER JOIN uSkaterBlades fsBlades ON sConfig.uSkaterUUID = fsBlades.uSkaterUUID
and sConfig.uSkaterBladesID = fsBlades.bladeID
INNER JOIN ice_time iTime ON sConfig.uSkaterUUID = iTime.uSkaterUUID
and sConfig.aSkateConfigID = iTime.uSkaterConfig
WHERE sConfig.uSkaterUUID = '1'
GROUP BY sConfig.aSkateConfigID
-- HAVING ConfigTime < 60
The text was updated successfully, but these errors were encountered: