Home
SQL / MySQL
Aggregate Functions
Backup Load
Command MySQL
Cursor
Data Type
Database
Date Time
Engine
Event
Flow Control
FullText Search
Function
Geometric
I18N
Insert Delete Update
Join
Key
Math
Procedure Function
Regular Expression
Select Clause
String
Table Index
Transaction
Trigger
User Permission
View
Where Clause
XML
Skipping Datafile Lines : Load Data Into Table « Backup Load « SQL / MySQL
SQL / MySQL
Backup Load
Load Data Into Table
Skipping Datafile Lines
LOAD DATA INFILE
'data.txt'
INTO TABLE t IGNORE 1 LINES;
Related examples in the same category
1.
Load data in txt file into database
2.
load text data into table
3.
Set division with
4.
Line starting string
5.
Importing CSV Files
6.
Specifying the Datafile Format
7.
To specify a file format explicitly, use a FIELDS clause to describe the characteristics of fields within a line
8.
IGNORE is often useful with files generated by external sources.
9.
Specifying the Location of Files on the Client Host
10.
The syntax for a command to use a comma-separated text file, saved in a Windows format
11.
IGNORE
lines.
12.
If you are using a Linux system, replace the '\r\n' in the LINES TERMINATED BY syntax command with just '\n'.