博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql中导入txt文件
阅读量:6515 次
发布时间:2019-06-24

本文共 530 字,大约阅读时间需要 1 分钟。

1 windows 下 mysql导入txt文件(使用mysql的workbench)

load data local infile 'path' into table table_name

fields terminated by '\t' lines terminated by '\r\n';

注意:这里的引号全是正常的单引号,ptah的格式为绝对路径(每个反斜杠之后再加一个反斜杠,转义),如:C:\\Users\\DELL\\Desktop\\data\\Data\\JingdongData\\record_all.txt

2,mysql 创建表

create table table_name

( userid int(11) not null;

  productid int(11) not null

);

或者都加ESC下面的波浪引号,如:

create table `table_name`

(

  `userid` int(11) not null;

   `productid` int(11) not null

);

注意的是引号的不同。

 

转载于:https://www.cnblogs.com/baiting/p/5038328.html

你可能感兴趣的文章
#define WIN32_LEAN_AND_MEAN 的作用
查看>>
linux不能访问80端口,lunux开放80端口(本地访问不了linux文件可能是这个原因)...
查看>>
android单位转换小程序,微信小程序中rpx与rem单位转换
查看>>
ps切图教程 android,PS前端切图完整教程
查看>>
HTML如何把输入框变成必填值,required输入框为必填项
查看>>
背锅侠逆袭之路
查看>>
演示:使用协议分析器取证IPv6的报文结构
查看>>
oracle 11gr2 rac中的4种IP解说
查看>>
为什么你找不到工作?
查看>>
汇编语言的应用
查看>>
安德鲁斯----多媒体编程
查看>>
中断小笔记
查看>>
FreeBinary 格式说明
查看>>
使用Spring Cloud和Docker构建微服务
查看>>
九州云实战人员为您揭秘成功部署OpenStack几大要点
查看>>
CloudCC:智能CRM究竟能否成为下一个行业风口?
查看>>
追求绿色数据中心
查看>>
Web开发初学指南
查看>>
探寻光存储没落的真正原因
查看>>
高通64位ARMv8系列服务器芯片商标命名:Centriq
查看>>