Fork me on GitHub
#sql
<
2023-03-24
>
Felipe15:03:39

hi 👋 is there anything in honey.sql that outputs ;-separated multiple queries? e.g. SELECT * FROM a; SELECT * FROM b

seancorfield15:03:27

Nope. You'd have to map format over things and then str/join parts yourself. But multiple statements aren't accepted by all DB drivers and some require setting special flags to allow it.

👍 2