
































_control87 doesn't seem to be available for some MinGW compilers.
Closes #5969.





























































hyperfine benchmark results in a sequential way
in order to debug possible background interference, caching effects,
thermal throttling and similar effects.
"""

























































why not














































-Werror to make it stop on warnings



mysql -u teeworlds -p'PW2' teeworlds < ddnet-sql/record_*.sql
bash: ddnet-sql/record_*.sql: ambiguous redirect


cat ddnet-sql/record_*.sql | mysql -u …

progress


mysql -u teeworlds -p'PW2' teeworlds < ddnet-sql/record_*.sql
bash: ddnet-sql/record_*.sql: ambiguous redirect 









SELECT category, SUM(downloads)
FROM fake_apps
WHERE downloads < 10000
GROUP by category;








HAVING SUM(downloads) < 10000 at the end it should work. Problem you are having is that WHERE clauses always happen before GROUP BY. At that point SUM(downloads) doesn’t even make sense






(edited)























SELECT first_name, COUNT(*) AS 'count'
FROM users
GROUP BY first_name
ORDER BY 2 DESC;
to what exactly is the 2 referring to?











