order by
if ($sortColumn == "customer" && $sortDirection == "ascending") customer.firstName asc, customer.lastName asc
else if ($sortColumn == "customer" && $sortDirection == "descending") customer.firstName desc, customer.lastName desc
else if ($sortColumn == "email" && $sortDirection == "ascending") customer.email asc
else if ($sortColumn == "email" && $sortDirection == "descending") customer.email desc
else if ($sortColumn == "survey" && $sortDirection == "ascending") survey.title asc
else if ($sortColumn == "survey" && $sortDirection == "descending") survey.title desc
order by
if ($sortColumn == "customer" && $sortDirection == "ascending") customer.firstName asc, customer.lastName asc
else if ($sortColumn == "customer" && $sortDirection == "descending") customer.firstName desc, customer.lastName desc
else if ($sortColumn == "email" && $sortDirection == "ascending") customer.email asc
else if ($sortColumn == "email" && $sortDirection == "descending") customer.email desc
else if ($sortColumn == "survey" && $sortDirection == "ascending") survey.title asc
else if ($sortColumn == "survey" && $sortDirection == "descending") survey.title desc