LIMIT no funciona en T-SQL.
Tienes que usar TOP en su lugar, así:
SELECT TOP(1) * FROM tableEating WHERE person='$identity';
Espero que te funcione.
Como dice Aaron, también necesitas un ORDER BY
si no desea obtener una fila arbitraria.
LIMIT no funciona en T-SQL.
Tienes que usar TOP en su lugar, así:
SELECT TOP(1) * FROM tableEating WHERE person='$identity';
Espero que te funcione.
Como dice Aaron, también necesitas un ORDER BY
si no desea obtener una fila arbitraria.