MySQL启动时的初始执行文件的使用
可以在配置文件里指定mysql启动以后初始执行的SQL文件, 其语法是:在[mysqld]或者[server]下指定:init-file=D:mysql-5.5.28-winx64abc.sql,后边为具体的sql文件值为了示例:abc.sql为:usetest; begin; createtableifnotexistst123(idint); insertintot123values(1); insertintot123values(2); selec...