Choose your database:
AnySQL
MySQL
MS SQL Server
PostgreSQL
SQLite
Firebird
Oracle
SQL Anywhere
DB2
MaxDB

Subscribe to our news:
Partners

SQLite Code Factory online Help

Prev Return to chapter overview Next

REPLACE

sql-statement ::=

REPLACE INTO table-name [( column-list )] VALUES ( value-list ) |

REPLACE INTO table-name [( column-list )] select-statement

 

The REPLACE command is an alias for the "INSERT OR REPLACE" variant of the INSERT command. This alias is provided for compatibility with MySQL. See the INSERT command documentation for additional information.



Prev Return to chapter overview Next