Public Vars

Back

replace-into (clj)

(source)

function

(replace-into table) (replace-into table cols) (replace-into table statement) (replace-into table cols statement)
Accepts a table name or a table/alias pair. That can optionally be followed by a collection of column names. That can optionally be followed by a (select) statement clause. The arguments are identical to insert-into. The REPLACE INTO statement is only supported by MySQL and SQLite.

Examples