Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
行が存在しない場合は作成し、存在する場合は更新したい状況があります。これを行うための良いクリーンな方法はTSQLですか?
IF EXISTS (SELECT 1 FROM テーブル WHERE ...) UPDATE テーブル SET ... ELSE INSERT INTO テーブル ...