摘要:
学习总结基本的MySQL数据库导入导出操作1 表tt的格式:CREATE TABLE `tt` ( `ind` int NOT NULL auto_increment, `name` char(100) default NULL, PRIMARY KEY (`ind`))2 文件d.txt的内容示例:1,a2,b3,c3 导入命令:mysql> load data infile 'd.txt' into table tt -> fields terminated by',' -> lines terminated by'\r\n' 阅读全文
posted @ 2013-03-14 16:27
知点网
阅读(9410)
评论(0)
推荐(0)
浙公网安备 33010602011771号