Fix some misquoting

This commit is contained in:
Ian Gulliver
2019-04-24 06:02:16 +00:00
parent 07ce0eee92
commit f10c68a567
4 changed files with 6 additions and 6 deletions

View File

@@ -18,7 +18,7 @@
FROM Logins
GROUP BY UserId
) AS Temp USING (UserId)
WHERE LastLogin <= 31;
WHERE LastLogin <= 31;
</code></pre>
<p>We can convert this to a simple JOIN with the magic of HAVING. HAVING is like WHERE, but applies after aggregation:</p>
@@ -29,7 +29,7 @@
FROM Users
JOIN Logins USING (UserId)
GROUP BY UserId
HAVING LastLogin &amp;lt;= 31;
HAVING LastLogin &lt;= 31;
</code></pre>
<!--# include file="include/bottom.html" -->