PostgreSQL
 sql >> डेटाबेस >  >> RDS >> PostgreSQL

नेटवर्क विश्लेषण के लिए SQL क्वेरी 6 डिग्री पृथक्करण

मुझे लगता है कि आपका यही मतलब था:

with recursive tc as(
select $1 as player_id, 1 as level
  union
select ph2.player_id, level+1
  from tc, phone_hashes ph1, phone_hashes ph2
  where tc.player_id=ph1.player_id
  and ph1.hash=ph2.hash
  and tc.level < 6  
)    
select distinct player_id from tc


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Postgresql में दोहरे सटीक मान को प्रारूपित करें

  2. पीजीईस्ट, हार्डवेयर बेंचमार्किंग और पीजी परफॉर्मेंस फार्म

  3. PostgreSQL बैकअप का स्वचालित परीक्षण

  4. आर से पोस्टग्रेएसक्यूएल में एक टेबल कैसे लिखें?

  5. Postgres में टेबल कॉलम के डिफ़ॉल्ट मान प्राप्त करें?