REPLACE

REPLACE INTO Artist (name) VALUES ('Taylor Swift');
REPLACE INTO Artist (name) VALUES ('Taylor Swift');

The REPLACE command is an alias for the ”INSERT OR REPLACE” variant of the INSERT command. This alias is provided for compatibility other SQL database engines. See the INSERT command documentation for additional information.