CREATE TABLE `downloads` (
`id` int(11) NOT NULL auto_increment,
`title` text NOT NULL ,
`file` text NOT NULL,
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=10 ;
CREATE TABLE `coupons` (
`id` int(11) NOT NULL auto_increment,
`code` varchar(255) NOT NULL ,
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=10 ;
答案 0 :(得分:0)
@Juno:你的意思是你想要一个包含这两个表的.sql文件。
如果是,使用phpmyadmin然后您可以首先创建一个数据库并执行您的SQL查询。然后你可以导出数据库,你将获得" .sql"根据您的要求提交文件。
希望这有帮助。
答案 1 :(得分:0)
注意:如果您没有选择数据库,请设置数据库。
CREATE TABLE `downloads` (
`id` int(11) NOT NULL auto_increment,
`title` text NOT NULL ,
`file` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 ;
CREATE TABLE `coupons` (
`id` int(11) NOT NULL auto_increment,
`code` varchar(255) NOT NULL ,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 ;