I have an SQL query, in which I am converting inches to feet.
<?php  
$query ="
SELECT *
,replace (replace('<feet>'' <inches>"',
                   '<feet>', height / 12),
           '<inches>', height % 12) AS playerHeight
,abbrName
FROM leagueRosters
INNER JOIN leagueTeams AS teamInfo
ON leagueRosters.teamId=teamInfo.teamId
WHERE abbrName LIKE '".$_GET['team']."'
ORDER BY rosterId DESC
";  
$resultRoster = mysqli_query($connect, $query);  
?>
From what I understand I'm supposed to double the single quotes, which I have done
,replace (replace("<feet>"" <inches>"",
                   "<feet>", height / 12),
           "<inches>", height % 12) AS playerHeight
And I've also tried this
,replace (replace("'<feet>'" "'<inches>'",
                       "'<feet>'", height / 12),
               "'<inches>'", height % 12) AS playerHeight
Neither one works. I've tried a few other combinations, but always end up with an error on at least one line.
I followed the answer in this question - How do I escape a single quote in SQL Server? But I"m still unsure what I'm doing wrong.
 
    