EzDevInfo.com

yesql

A Clojure library for using SQL.

Several sets of values with Yesql

Is it possible with Yesql to construct inserts that have several sets of values, such as:

INSERT INTO used_tools
(user_id, tool_id)
VALUES (1, 2), (3, 4), (5, 6)

where the amount of sets it's variable from execution to execution?


Source: (StackOverflow)