Skip to content
Advertisement

Which one is the most optimal way to delete and update query in mysql?

Suppose, I need to delete or update some id informations from my database, which would be the best way to do it? Should I first find out that if that id exists or not? Or should I update the data then check the result if that comes false that means that data doesn’t exist.

method 1

or should I use this one?

method 2

Same question is for my delete query also? Which one is the optimal way?

Advertisement

Answer

In general, it’s best to minimize the number of queries sent to the database. So you should just perform the UPDATE or DELETE. Then you can check the affectedRows count in the result.

Don’t forget that database queries are asynchronous, you can’t return a result in the normal way. See How do I return the response from an asynchronous call?

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement