How can I run .SQL
files from other .SQL
files using MonetDB?
I went through the whole documentation but had no success finding it.
For instance, in MySql
I could do something like
parent.sql
use mydatabase;
source child1.sql
source child2.sql
child1.sql
SELECT * from Products;
child2.sql
SELECT * from Orders;
How can I do that (or something similar) using MonetDB
?