I needed an SQL query that would update or create a database entry (if a certain customer doesn't exist yet). I found the current solution on the internet:
command.CommandText = "REPLACE INTO [Resource_Tracer].[dbo].[Customer](CustomerName, CustomerID) VALUES (@CustomerName, @CustomerID)"
Since I don't see it used a lot and actually never heard of it before, is this really the solution I want, or should I do this manually?