I created a table in hive:
create table foo (id int, name string);
Now, I want to insert data into this table. Can I do something like this?
insert into foo (id, name) VALUES (12,"xyz);
Also, I have a csv file which contains data in the format:
1,name1
2,name2
..
..
..
1000,name1000
How can I load this data in the table?