Answers for "deletoing last n rows from the table in mysql"

SQL
4

mysql delete last row

DELETE FROM my_table WHERE my_col_id = (SELECT MAX(my_col_id) FROM my_table);
Posted by: Guest on June-20-2021

Code answers related to "deletoing last n rows from the table in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language