I was able to insert two rows by the following query. What should I do to insert more rows into it?
insert into friend_name(
friend_id,
first_name,
middle_name,
last_name)
select
3,
'rich',
'mond',
'hill'
from dual
union all
select
4,
'monunica',
'bellu',
'cia'
from dual