首頁 > 資料庫 > mysql教程 > 如何使用mysqlimport將資料上傳到MySQL表中?

如何使用mysqlimport將資料上傳到MySQL表中?

WBOY
發布: 2023-09-05 13:37:02
轉載
1306 人瀏覽過

如何使用mysqlimport將資料上傳到MySQL表中?

For uploading the data into MySQL tables by using mysqlimport we need to follow following steps −

#Step-1 − Creating the table

first of all, we need to have a table in which we want to upload the data. We can use CREATE TABLE statement for creating a MySQL table. For example, we created a table named 'student_tbl' asstudent_tbl' as follows −

mysql> DESCRIBE Student_tbl;
+--------+-------------+------+-----+---------+-------+
| Field | Type         | Null | Key | Default | Extra |
+--------+-------------+------+-----+---------+-------+
| RollNo | int(11)     | YES  |     | NULL    |       |
| Name   | varchar(20) | YES  |     | NULL    |       |
| Class  | varchar(20) | YES  |     | NULL    |       |
+--------+-------------+------+-----+---------+-------+
3 rows in set (0.06 sec)
登入後複製

Step-2 − 建立資料檔案

現在,在這一步驟中,我們需要建立一個資料文件,其中包含以製表符分隔的字段。由於我們知道資料檔案的名稱必須與MySQL表的名稱相同,因此我們將建立一個名為「student_tbl.txt」的資料文件,其中包含以下資料:

1 Gaurav    10th
2 Rahul     10th
3 Digvijay  10th
登入後複製

Step-3 − 上傳資料

現在透過使用mysqlimport指令,我們可以匯入這個檔案−

C:\mysql\bin>mysqlimport -u root query C:/mysql/bin/mysql-files/student_tbl.txt
query.student_tbl: Records: 3 Deleted: 0 Skipped: 0 Warnings: 0
登入後複製

現在透過以下查詢的幫助,我們可以看到資料已經上傳到表中−

mysql> Select * from student_tbl;
+--------+----------+-------+
| RollNo | Name     | Class |
+--------+----------+-------+
|     1  | Gaurav   | 10th  |
|     2  | Rahul    | 10th  |
|     3  | Digvijay | 10th  |
+--------+----------+-------+
3 rows in set (0.00 sec)
登入後複製

以上是如何使用mysqlimport將資料上傳到MySQL表中?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板