select and delete a record without the information of primary key [closed]

How about DELETE FROM [TABLE] with the name of that table? Or if you want to delete by some criteria like columns values, why not put that directly into your statement as well using a WHERE clause?

There’s a language for database operations: SQL. Use that where appropriate.

Leave a Comment