在jdbc clojure的网址http://clojure-doc.org/articles/ecosystem/java_jdbc/home.html
它提供了以下示例以插入表中
(jdbc/insert! db-spec :table {:col1 42 :col2 "123"}) ;; Create
Run Code Online (Sandbox Code Playgroud)
但对于像postgresql这样的数据库,它可能有一个非公共模式,假设我创建了一个类似模板的模式,然后如何插入到template.mytable中?