Greetings, I'm in the midst of a heated debate with a coworker over whether doing a delete + insert is more expensive than doing an update. My belief is that an update will usually be less expensive. Can anyone weigh in?
Lonni J Friedman <netllama@gmail.com> writes:
> I'm in the midst of a heated debate with a coworker over whether doing
> a delete + insert is more expensive than doing an update. My belief
> is that an update will usually be less expensive. Can anyone weigh
> in?
Well, in terms of changes hitting the disk, they're approximately
the same thing in Postgres (not so in many other DBs, though). However,
the overhead of issuing two SQL commands instead of one means that the
update method should win.
If your coworker knows how to do a delete+insert with no more SQL
interpretation than an update, I'd like to see it ...
regards, tom lane
Сайт использует файлы cookie для корректной работы и повышения удобства. Нажимая кнопку «Принять» или продолжая пользоваться сайтом, вы соглашаетесь на их использование в соответствии с Политикой в отношении обработки cookie ООО «ППГ», в том числе на передачу данных из файлов cookie сторонним статистическим и рекламным службам. Вы можете управлять настройками cookie через параметры вашего браузера