首页 > 代码库 > MySql实用小技巧
MySql实用小技巧
- 1:将txt中的数据导入数据库表中,命令:
- 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实用小技巧
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。