sql >> Database teknologi >  >> RDS >> Mysql

Bredde første søgeforespørgsel i MySQL?

trin 0:Opret en visning, der viser alle nabopar

CREATE VIEW neighbour AS
( SELECT loc1.id AS a
       , loc2.id AS b
  FROM locations loc1
     , locations loc2
  WHERE FIND_IN_SET(loc1.id, loc2.neighbours)>0
     OR FIND_IN_SET(loc2.id, loc1.neighbours)>0
) ;

trin 1:Find naboer med dybde 1

SELECT b AS depth1
FROM neighbour
WHERE a = 1;               <-- for root with id=1

trin 2:Find naboer af dybde 2

SELECT DISTINCT d2.b AS depth2
FROM neighbour d1
  JOIN neighbour d2
    ON d1.b = d2.a
      AND d2.b != 1
WHERE d1.a = 1                <-- for root with id=1
  AND d2.b NOT IN
     ( SELECT b AS depth1     <- depth1 subquery
       FROM neighbour
       WHERE a = 1            <-- for root with id=1
      )
;

trin 3:Find naboer med dybde 3

SELECT d3.b as depth3
FROM neighbour d1
  JOIN neighbour d2
    ON d1.b = d2.a
    AND d2.b != 1
    AND d2.b NOT IN
       ( SELECT b as depth1
         FROM neighbour
         WHERE a = 1
       )
  JOIN neighbour d3
    ON d2.b = d3.a
    AND d3.b != 1
WHERE d1.a = 1
  AND d3.b NOT IN
     ( SELECT b as depth1
       FROM neighbour
       WHERE a = 1
      )
  AND d3.b NOT IN
     ( SELECT d2.b AS depth2
       FROM neighbour d1
         JOIN neighbour d2
           ON d1.b = d2.a
           AND d2.b != 1
       WHERE d1.a = 1
         AND d2.b NOT IN
            ( SELECT b AS depth1
              FROM neighbour
              WHERE a = 1
            )
     )
;

Som du kan se, er væksten eksponentiel for antallet af forespørgselslinjer, så jeg vil ikke prøve niveau 4.



  1. Hvordan eksporterer man en mysql-database ved hjælp af kommandoprompt?

  2. Er der en Entity Framework 7 Database-First POCO Generator?

  3. SQL-referencetabel:Sådan oprettes og skrives grundlæggende forespørgsler

  4. MySQL MATCH virker ikke med to karakterer?