document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. SELECT D.department_name, L.postal_code, L.city
  2. FROM Departments D join Locations L
  3. ON D.location_id = L.location_id
  4. WHERE D.department_name LIKE \'S%\'
');