I have a Java program where I connect to a database running Tomcat. The app includes fields for First Name, last name, email, phone. I created a button when clicked allows you t
If I understand you correctly:
DELETE FROM Addresses WHERE FirstName = AND LastName = AND Email = AND PhoneNumber =
This will delete from Addresses where all conditions are true.
Addresses
A more elegant solution would probably be one where you delete a row with a primary key.