i am trying to load some csv data into monet db using csv bulk load command. Monet team providing below command to load the data by replacing null values with "" but its not working.
Copy into sys.test from path NULL as '';
table structure:
crate table sys.test(
id int,
name varchar(200))
Test data:
1|a
""|b