I'm not familiar with the use of LIMIT outside of SELECT queries, so I'm not sure if it is legal, but generally
LIMIT offset, num
Will act on num number of rows after skipping offset number of rows.
If the offset is not specified, then it becomes
LIMIT num
By that reasoning, the given query will delete the first row in the students table that has id=57