sql檔案資料匯入資料庫

2021-08-06 06:02:05 字數 1667 閱讀 2764

1.建立createsql.sql檔案,內容:

drop table if exists `t_user`;

create table `t_user` (  

`user_id` int(11) not null auto_increment,  

`user_name` char(30) not null,  

`user_password` char(10) not null,  

`user_email` char(30) not null,  

primary key (`user_id`),  

key `idx_name` (`user_name`)  

) engine=innodb auto_increment=11 default charset=utf8; //此處有分號

insert into t_user (user_id, user_name, user_password, user_email) values (1, '林炳文', '1234567@', '[email protected]');  

insert into t_user (user_id, user_name, user_password, user_email) values (2, 'evan', '123', '[email protected]');  

insert into t_user (user_id, user_name, user_password, user_email) values (3, 'kaka', 'cadg', '[email protected]');  

insert into t_user (user_id, user_name, user_password, user_email) values (4, 'simle', 'cscs', '[email protected]');  

insert into t_user (user_id, user_name, user_password, user_email) values (5, 'arthur', 'csas', '[email protected]');  

insert into t_user (user_id, user_name, user_password, user_email) values (6, '小德', 'yuh78', '[email protected]');  

insert intot_user (user_id, user_name, user_password, user_email) values (7, '小小', 'cvff', '[email protected]');  

2. 將database目錄中createsql.sql檔案複製到e:\

3. 進入mysql安裝目錄中的bin目錄: ->cd c:\program files\mysql\mysql server 5.7\bin

4. 輸入 mysql -u root -p ,然後輸入密碼登入本地mysql伺服器

5. 輸入 create database usesr02 default character set utf8; 建立名為user02資料庫

6. 輸入 use user02

7. 輸入 source e:\createsql.sql執行資料庫初始化語句

dbf檔案資料匯入資料庫

在設計介面用fileupload伺服器控制項 後台 public int exportdbf sourcetype dbf sourcedb serverpath exclusive no null no collate machine backgroundfetch no deleted no c...

mysql資料庫匯入txt檔案資料

把txt檔案匯入到mysql資料庫中,選用的是mysql中的load data 語法。load data local infile d test.txt into table test fields terminated by enclosed by lines terminated by n ig...

SQL 檔案匯入資料庫

1 首先通過 xshell 連線資料庫伺服器,執行命令 mysql u root p 命令,按照提示輸入密碼,連線上資料庫 2 在連線終端上執行命令 create database jd model 3 將準備好的資料庫檔案 t user.sql 檔案通過 xftp 工具,上傳至 root 目錄下,...