IMPORT

The IMPORT statement will import data from a text file.

IMPORT(tableName//FileName//Delimiter//Header)


Parameters

TableName
            The name of the table that you’d like the data placed in.

FileName
            The name of the file to import your data from.

Delimiter
            The character used to delimit this file (Usually a comma)

Header
           TRUE = The first row of data contains field names
           FALSE= The first row of data does not contain field names

Example #1.
IMPORT(“newTable”//”\My Documents\MyText.txt”//”,”//”TRUE”)