Advertisement
Guest User

Untitled

a guest
Feb 10th, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.84 KB | None | 0 0
  1. SELECT c.id, c.name, c.slug, s.id, s.name, s.slug, b.id, b.name, b.slug, b.location
  2. FROM bank bs
  3. INNER JOIN branch b ON b.bank_id = bs.id
  4. INNER JOIN city c ON c.id = b.city_id
  5. INNER JOIN state s ON s.id = c.state_id
  6. WHERE bs.slug = 'wells-fargo-bank'
  7. ORDER BY c.name, b.name
  8. LIMIT 50
  9.  
  10.  
  11. --
  12.  
  13. "id"    "select_type"   "table" "partitions"    "type"  "possible_keys" "key"   "key_len"   "ref"   "rows"  "filtered"  "Extra"
  14. "1" "SIMPLE"    "bs"    \t  "ref"   "PRIMARY,slug"  "slug"  "767"   "const" "1" "100,00"    "Using index; Using temporary; Using filesort"
  15. "1" "SIMPLE"    "b" \t  "ref"   "location_bank_fk_idx,location_city_fk_idx" "location_bank_fk_idx"  "4" "banks.bs.id"   "17"    "100,00"    \t
  16. "1" "SIMPLE"    "c" \t  "eq_ref"    "PRIMARY,city_state_fk" "PRIMARY"   "8" "banks.b.city_id"   "1" "100,00"    \t
  17. "1" "SIMPLE"    "s" \t  "eq_ref"    "PRIMARY"   "PRIMARY"   "4" "banks.c.state_id"  "1" "100,00"    \t
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement