I want to Drop Rows from MYSQL Table According to the Values in a Specific Row. Command to do this or do This visually?
DELETE FROM table_name WHERE NameColumn=SpecificValue Code (markup): Following example will delete a record into test_tbl whose test_id is 1. DELETE FROM test_tbl WHERE test_id=1; Code (markup):