SSC-FDM-0004
External table translated to regular table
Description
Code Example
Input Code:
CREATE EXTERNAL TABLE ext_csv_file (
id INT,
name TEXT,
age INT,
city TEXT
)
LOCATION (
'gpfdist://192.168.1.100:8080/data/my_data.csv'
)
FORMAT 'CSV' (DELIMITER ',' HEADER);Output Code:
Recommendations
Last updated
