How to Delete rows in MySQL
Example:
Delete from tablename where id=11;
Note: Please replace tablename with original table name and put the condition in where clause.
Example:
Delete from tablename where id=11;
Note: Please replace tablename with original table name and put the condition in where clause.