a form like this ```sql INSERT INTO table (attr1, attr2) VALUES (val11, val12), (val21, val22); ``` with something like this: ```lisp (let ((itmes (list (list val11 val12) (list val21 val22))))) (insert-into :table '(:attr1 :attr2) items)) ``` Is this possible?
a form like this
with something like this:
Is this possible?