bitsCN.com
mysql数据导入到infobright中
Psky企业网站是基于PHP+MYSQL开发的一款企业官网宣传网站,支持PC、wap浏览。 主要功能包括导航管理、轮播新闻、单位动态、通知通报、单位简介、后台管理等。运行环境下载安装PHPStudy(小皮)即可。系统采用PHP语言(版本:7.3.4nts)和MYSQL(版本:5.7.26)数据库进行开发,安装PHPStudy(小皮)集成环境进行测试通过。安装步骤:1、导入SQL文件到PHPmyad
1,在mysql中建一张表:
create table t_mis( uid mediumint not null, cid smallint not null, rating tinyint not null)engine=MyISAM;
插入数据:
insert into t_mis(uid,cid,rating) values('70000','3600','5');
2,将数据导出csv文件:
select * from t_mis into outfile 'F://mytable.csv' fields terminated by ',' optionally enclosed by '"' lines terminated by '/n';
3,在infobright中建一个表:
create table t_ib( uid mediumint not null, cis smallint not null, rating tinyint not null)engine=brighthouse;
4,导入csv到表t_ib中:
load data infile 'F://mytable.csv' into table t_ib fields terminated by ',' optionally enclosed by '"' lines terminated by '/n';
5,验证:
mysql> select * from t_ib;+-------+------+--------+| uid | cis | rating |+-------+------+--------+| 70000 | 3600 | 5 |+-------+------+--------+2 rows in set (0.05 sec)
ok了,这样mysql中的数据就能导入到infobright中了。









