If your file does not contain column headers, or you prefer ignoring them, you can refer to columns by indexes:
LOAD CSV FROM 'path/to/file.csv' AS row
CREATE (:Node {name: row[1]
Column indexes start with 0.
If your file does not contain column headers, or you prefer ignoring them, you can refer to columns by indexes:
LOAD CSV FROM 'path/to/file.csv' AS row
CREATE (:Node {name: row[1]