sql >> Database >  >> RDS >> Mysql

hoe de benodigde waarden van een unieke variabele uit twee tabellen te vinden

Zou zoiets kunnen zijn

SELECT hops.hop_route,count(plan_info_upload.*) as no_of_2G, SUM(plan_info_upload.2G_bw) as total_2G_bw FROM(
SELECT DISTINCT (hops.hop_route) as hop_route FROM (
                SELECT DISTINCT hop_1 as hop_route FROM hop_without_router
                 UNION 
                SELECT DISTINCT hop_2 as hop_route FROM hop_without_router
                 UNION 
                SELECT DISTINCT hop_3 as hop_route FROM hop_without_router
                 UNION 
                SELECT DISTINCT hop_4 as hop_route FROM hop_without_router
                 UNION 
                ......
                SELECT DISTINCT hop_9 as hop_route FROM hop_without_router) as hops ) as unique_hops )  LEFT JOIN plan_info_upload ON hops.hop_route = plan_info_upload.route_path



  1. MySQL-fout:je hebt een fout in je SQL-syntaxis; controleer de handleiding die overeenkomt met uw MySQL-serverversie voor de juiste syntaxis om te gebruiken in de buurt van

  2. SolarWinds Serv-U gebruiken op Linux met een SQL Server-verificatiedatabase

  3. Prestatiedaling na 5 dagen draaiende webapplicatie, hoe herken je de bottleneck?

  4. TSQL:Hoe kan ik lokale tijd naar UTC converteren? (SQL-server 2008)