Insert... On Conflict ステートメントで同じ値を使用する場合、構文を単純化できますか?
INSERT INTO cars
(car_id, car_type, car_model)
values
(1, 'tesla', 'model s')
ON CONFLICT (car_id) DO UPDATE SET
car_type = 'tesla',
car_model = 'model s';
この種のステートメントは、アプリケーションの更新ごとに実行されるスクリプトの一部であるため、他にもたくさんあります。
基本的に、同じ値を 2 回指定しない方法を探しています。