码迷,mamicode.com
首页 > 数据库 > 详细

MySql实用小技巧

时间:2016-12-10 00:29:19      阅读:297      评论:0      收藏:0      [点我收藏+]

标签:oca   password   导入   实用   bsp   load data   mysq   data   技巧   

  1. 1:将txt中的数据导入数据库表中,命令:
  2. load data local infile ‘D:\\文件名.txt‘ into table 表名 fields terminated by ‘\t‘;
 
2:插入数据后查询显示乱码,解决方案: set character set_results=utf-8;
 
3:多表多外键数据查询
select * from userinfo,usertype,usercert where userinfo.certid=usercert.certid and userinfo.typeid=usertype.typeid limit ?,?;
 
select * from userinfo,usertype,usercert where userinfo.certid=usercert.certid and userinfo.typeid=usertype.typeid and userinfo.userid=140950223 and password=55555 limit ?,?;

MySql实用小技巧

标签:oca   password   导入   实用   bsp   load data   mysq   data   技巧   

原文地址:http://www.cnblogs.com/panweiwei/p/6152836.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!