Is it possible to express an upsert query, where nothing happens if the inserted data doesn't have any changes compared to what is already in the database?
Currently I have:
insert into feeds (link, title, category)
values (...)
on conflict (link)
do update set (title, category, _updated)
= (..., now()::timestamp)
You can add a
where
clause to theupdate
part: