How to convert H2Database database file to MySQL database .sql file?

后端 未结 5 1484
你的背包
你的背包 2021-02-01 10:41

I have some data in H2Database file and I want to convert it to MySQL .sql database file. What are the methods I can follow?

5条回答
  •  忘了有多久
    2021-02-01 11:14

    The H2 database allows you to create a SQL script using the SCRIPT SQL statement or the Script command line tool. Possibly you will need to tweak the script before you can run it against the MySQL database.

提交回复
热议问题