Question d’entretien chez Findex

Which one is faster? insert or update sql command?

Réponses aux questions d'entretien

Utilisateur anonyme

16 févr. 2019

Insert will be faster because, with update command, the system has to spend time on searching the records need to be updated. with insert command, the system just needs to write new records, does not need to do other operations.

1

Utilisateur anonyme

2 déc. 2017

No straight answer, depends on the case

1