document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. SELECT
  2.     route.idzone, route.z_name
  3. FROM
  4.     tbl_zone AS route
  5.         INNER JOIN
  6.     tbl_zone AS RepArea ON route.idzone_parent = RepArea.idzone
  7.         INNER JOIN
  8.     tbl_zone AS AgencyArea ON RepArea.idzone_parent = AgencyArea.idzone
  9.         INNER JOIN
  10.     tbl_zone AS Team ON AgencyArea.idzone_parent = Team.idzone
  11. WHERE
  12.     Team.z_name = \'Gold Star\'
');