Is there a good way to do a SQL "InsertOrUpdate"? - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-12-09T22:20:22Zhttp://stackoverflow.com/feeds/question/193746http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/193746/is-there-a-good-way-to-do-a-sql-insertorupdate2Is there a good way to do a SQL "InsertOrUpdate"? [closed]reilly2008-10-11T06:18:54Z2008-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#1937481Answer by jeremy Ruten for Is there a good way to do a SQL "InsertOrUpdate"?jeremy Ruten2008-10-11T06:21:12Z2008-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#1937500Answer by Mitch Wheat for Is there a good way to do a SQL "InsertOrUpdate"?Mitch Wheat2008-10-11T06:22:26Z2008-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#1937514Answer by Guy for Is there a good way to do a SQL "InsertOrUpdate"?Guy2008-10-11T06:23:44Z2008-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>