unload to fname select col1,col2,col3 from table;
Gives: data1|data2|data3|
unload to fname select col1,’’,col3 from table;
Gives: data1|\ |data3|
Where the second field "\space" represents a null value.
But I want nothing in the second field. i.e: data1||data3|
Does anyone know how to do this?
Gives: data1|data2|data3|
unload to fname select col1,’’,col3 from table;
Gives: data1|\ |data3|
Where the second field "\space" represents a null value.
But I want nothing in the second field. i.e: data1||data3|
Does anyone know how to do this?