21
Soluciones para INSERTAR O ACTUALIZAR en SQL Server
Suponga una estructura de tabla de MyTable(KEY, datafield1, datafield2...). A menudo quiero actualizar un registro existente o insertar un nuevo registro si no existe. Esencialmente: IF (key exists) run update command ELSE run insert command ¿Cuál es la mejor manera de escribir esto?