In Oracle database, we can link SQL scripts inside other SQL script like this:
@@ drop.sql
Is it possible to do similar in MySQL database?
Basically, I want to automate whole database installation by creating new tables, constraints and basic data. For that, it would be good to maintain different type of SQL statements in different SQL scripts/files.
But to install database, we should run run only one SQL script, which should be pointing other SQL scripts from inside.
Also want to do it without any other programming language. It would be better to do it with SQL script only (like Oracle supports).