The syntax of LOAD DATA is as follows: : LOAD « Command MySQL « SQL / MySQL






The syntax of LOAD DATA is as follows:

      

LOAD DATA [loadoptions] INFILE 'filename.txt' [duplicateoptions]
INTO TABLE tablename [importoptions] [IGNORE ignorenr LINES]
[(columnlist)]

LOAD DATA INFILE 'c:/import1-latin1.txt'
INTO TABLE importtable1
FIELDS TERMINATED BY '\t'
ENCLOSED BY '\"'
LINES TERMINATED BY '\r\n'

LOAD DATA INFILE '/tmp/import2.txt' REPLACE
INTO TABLE importtable2
FIELDS ENCLOSED BY '\"'

   
    
    
    
    
    
  








Related examples in the same category

1.Database directories are located directly under the data directory
2.Use LOAD DATA to load a file into a database other than the current one, you can qualify the table name with the database name.
3.LOAD DATA assumes the columns in the datafile have the same order as the columns in the table.
4.Load a datafile containing values quoted by double quote characters
5.Load a file that has data values separated by commas, and lines ending with carriage returns
6.The LOAD DATA INFILE Statement
7.Load data from a text file to table
8.Load data with FIELDS clause
9.Inserting High Volumes of Data from a Text File with LOAD DATA
10.Load data and replace
11.Load data, replace and ignore
12.Load data to specific columns
13.Load data and set division
14.Importing Data into a Table