Hi @Gayathri Devi
If you want to insert multiple rows in one statement then syntax which you have used wont work. You may need to write one insert statement for one record. Orelse you can have all the records in a Textfile and create an external table over it. Use the external table to insert into 'tryins' table.
insert into tryins select * from external_table
Hope it helps!!