REPLACE INTO

Syntax: 

REPLACE INTO table-name [(column-name[, column-name]*)] insert-content

insert-content:
VALUES (value[, value]*) |
select-statement
	

The REPLACE INTO command is an equivalent ofthe INSERT OR REPLACE variant of the INSERT command. It is provided for compatibility with MySQL. See then description of the INSERT command for additional information.