How can I build a INSERT INTO foo SELECT ... FROM ...
statement with HoneySQL?
(-> (insert-into [:foo (-> (select :*) (from :bar))]) sql/format)
["INSERT INTO foo SELECT * FROM bar"]
@dharrigan thx!
Cross-posting from #sql for anyone who is here but not there...
Cool!