CleverCode发现可以通过source来执行一个.sql文件。
1)?显示帮助。source (\.) Execute an SQL script file. Takes a file name as an argument.
2 test.sql文件
CREATE TABLE `tab_test` ( `id` bigint(20) unsigned NOT NULL DEFAULT '0', `name` varchar(50) NOT NULL DEFAULT '', `sex` tinyint(1) unsigned NOT NULL DEFAULT '0', `age` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=gbk;
3 source /home/dev/test.sql;(可以通过 system cat /home/dev/test.sql;先查看一下sql文件)
时间: 2024-11-03 20:46:10