You want replace all fields of one row with anothe...
# exposed
t
You want replace all fields of one row with another? If so you may try:
Copy code
CustomerTable.update({
                CustomerTable.id eq 2
            }) {
                (CustomerTable.columns - CustomerTable.id).forEach { col ->
                    it[col as Column<Any>] = resultRow[col]
                }
or just insert new row from select and change id.
❤️ 1