You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by Techsupport <te...@sardonyx.in> on 2023/03/10 14:51:41 UTC

Unable to insert multi line records in hive

Hi folks,

 

I have used the following script to insert

insert into employee values (1,'Alex','123 street

Tamilnadu

India');

 

But the selection result like the following,

1,'Alex','123 street'

null,null,null

null,null,null

 

If I insert the record in a single line, It was inserted perfectly

insert into employee values (1,'Alex','123 street Tamilnadu India');

How to solve this ?

 

Thanks,

Karthick Ramu