Is there a good way to do a SQL "InsertOrUpdate"? - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-12-09T22:20:22Z http://stackoverflow.com/feeds/question/193746 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/193746/is-there-a-good-way-to-do-a-sql-insertorupdate 2 Is there a good way to do a SQL "InsertOrUpdate"? [closed] reilly 2008-10-11T06:18:54Z 2008-10-11T06:23:44Z <p>I have some data records that may or may not exist already in my database. Right now when I want to update these records, I have to keep track of whether I got them from the DB, or created them from scratch, so that I know whether to make an INSERT or UPDATE query. I could query the database just before writing to find out if the record exists, so that I don't have to hang onto this state for the object's lifetime, but that's more database overhead than I'd like. Does SQL have anything to help me out here?</p> <p>I'm using SQL Server 2005, in case there's some sort of engine-specific solution.</p> http://stackoverflow.com/questions/193746/is-there-a-good-way-to-do-a-sql-insertorupdate/193748#193748 1 Answer by jeremy Ruten for Is there a good way to do a SQL "InsertOrUpdate"? jeremy Ruten 2008-10-11T06:21:12Z 2008-10-11T06:21:12Z <p><a href="http://google.com/search?q=sql+replace+into" rel="nofollow">REPLACE INTO</a> might be what you're looking for.</p> <p><strong>Edit:</strong> It looks like it might only be for MySQL... I'd delete this answer but other people using MySQL might find it helpful.</p> http://stackoverflow.com/questions/193746/is-there-a-good-way-to-do-a-sql-insertorupdate/193750#193750 0 Answer by Mitch Wheat for Is there a good way to do a SQL "InsertOrUpdate"? Mitch Wheat 2008-10-11T06:22:26Z 2008-10-11T06:22:26Z <p>There's not. I'm afraid the <a href="http://www.sql-server-performance.com/articles/per/SQL_Server_2008_MERGE_Statement_p1.aspx" rel="nofollow">MERGE</a> functionality wasn't introduced until SQL Server 2008.</p> http://stackoverflow.com/questions/193746/is-there-a-good-way-to-do-a-sql-insertorupdate/193751#193751 4 Answer by Guy for Is there a good way to do a SQL "InsertOrUpdate"? Guy 2008-10-11T06:23:44Z 2008-10-11T06:23:44Z <p>This has been <a href="http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server">discussed here</a>. Hope that helps.</p>