Public Vars

Back

set (clj)

(source)

function

(set col-set-map)
Accepts a hash map specifying column names and the values to be assigned to them, as part of `update`: (-> (update :foo) (set {:a 1 :b nil})) Produces: UPDATE foo SET a = ?, b = NULL

Examples