insertOrUpdateReturning
Insert a record to the table, determining if there is a key conflict while it's being inserted, automatically performs an update if any conflict exists, and finally returns the specific column.
Usage:
val id = database.insertOrUpdateReturning(Employees, Employees.id) {
set(it.id, 1)
set(it.name, "vince")
set(it.job, "engineer")
set(it.salary, 1000)
set(it.hireDate, LocalDate.now())
set(it.departmentId, 1)
onConflict {
set(it.salary, it.salary + 900)
}
}
Generated SQL:
insert into t_employee (id, name, job, salary, hire_date, department_id)
values (?, ?, ?, ?, ?, ?)
on conflict (id) do update set salary = t_employee.salary + ?
returning id
By default, the column used in the on conflict
statement is the primary key you already defined in the schema definition. If you want, you can specify one or more columns for the on conflict
statement as belows:
val id = database.insertOrUpdateReturning(Employees, Employees.id) {
set(it.id, 1)
set(it.name, "vince")
set(it.job, "engineer")
set(it.salary, 1000)
set(it.hireDate, LocalDate.now())
set(it.departmentId, 1)
onConflict(it.name, it.job) {
set(it.salary, it.salary + 900)
}
}
Generated SQL:
insert into t_employee (id, name, job, salary, hire_date, department_id)
values (?, ?, ?, ?, ?, ?)
on conflict (name, job) do update set salary = t_employee.salary + ?
returning id
Since
3.4.0
Return
the returning column's value.
Parameters
the table to be inserted.
the column to return
the DSL block used to construct the expression.
Insert a record to the table, determining if there is a key conflict while it's being inserted, automatically performs an update if any conflict exists, and finally returns the specific columns.
Usage:
val (id, job) = database.insertOrUpdateReturning(Employees, Pair(Employees.id, Employees.job)) {
set(it.id, 1)
set(it.name, "vince")
set(it.job, "engineer")
set(it.salary, 1000)
set(it.hireDate, LocalDate.now())
set(it.departmentId, 1)
onConflict {
set(it.salary, it.salary + 900)
}
}
Generated SQL:
insert into t_employee (id, name, job, salary, hire_date, department_id)
values (?, ?, ?, ?, ?, ?)
on conflict (id) do update set salary = t_employee.salary + ?
returning id, job
By default, the column used in the on conflict
statement is the primary key you already defined in the schema definition. If you want, you can specify one or more columns for the on conflict
statement as belows:
val (id, job) = database.insertOrUpdateReturning(Employees, Pair(Employees.id, Employees.job)) {
set(it.id, 1)
set(it.name, "vince")
set(it.job, "engineer")
set(it.salary, 1000)
set(it.hireDate, LocalDate.now())
set(it.departmentId, 1)
onConflict(it.name, it.job) {
set(it.salary, it.salary + 900)
}
}
Generated SQL:
insert into t_employee (id, name, job, salary, hire_date, department_id)
values (?, ?, ?, ?, ?, ?)
on conflict (name, job) do update set salary = t_employee.salary + ?
returning id, job
Since
3.4.0
Return
the returning columns' values.
Parameters
the table to be inserted.
the columns to return
the DSL block used to construct the expression.
Insert a record to the table, determining if there is a key conflict while it's being inserted, automatically performs an update if any conflict exists, and finally returns the specific columns.
Usage:
val (id, job, salary) =
database.insertOrUpdateReturning(Employees, Triple(Employees.id, Employees.job, Employees.salary)) {
set(it.id, 1)
set(it.name, "vince")
set(it.job, "engineer")
set(it.salary, 1000)
set(it.hireDate, LocalDate.now())
set(it.departmentId, 1)
onConflict {
set(it.salary, it.salary + 900)
}
}
Generated SQL:
insert into t_employee (id, name, job, salary, hire_date, department_id)
values (?, ?, ?, ?, ?, ?)
on conflict (id) do update set salary = t_employee.salary + ?
returning id, job, salary
By default, the column used in the on conflict
statement is the primary key you already defined in the schema definition. If you want, you can specify one or more columns for the on conflict
statement as belows:
val (id, job, salary) =
database.insertOrUpdateReturning(Employees, Triple(Employees.id, Employees.job, Employees.salary)) {
set(it.id, 1)
set(it.name, "vince")
set(it.job, "engineer")
set(it.salary, 1000)
set(it.hireDate, LocalDate.now())
set(it.departmentId, 1)
onConflict(it.name, it.job) {
set(it.salary, it.salary + 900)
}
}
Generated SQL:
insert into t_employee (id, name, job, salary, hire_date, department_id)
values (?, ?, ?, ?, ?, ?)
on conflict (name, job) do update set salary = t_employee.salary + ?
returning id, job, salary
Since
3.4.0
Return
the returning columns' values.
Parameters
the table to be inserted.
the columns to return
the DSL block used to construct the expression.