A Clojure library for using SQL.
           
               
           
            
        
            
             
              
      
                 
                
                
            
            
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)