Note to self: Minor difference between the TOP command in MSSQL and MySQL equivalent.
-- MS-SQL / SQL-Server SELECT TOP 10 * FROM ExampleTable WHERE Active = 1 ORDER BY Id DESC
-- MySQL SELECT * FROM ExampleTable WHERE Active = 1 LIMIT 0,10 ORDER BY Id DESC