Insert two tables simultaneously

I want to insert records into two or several other table with a single statement. Is this possible in Oracle XE?

How can I combine the following in a single statement?
insert into addressbook(name) values('test');
insert into email(email) values('[email protected]');
Thank you and best regards

Hello

It is possible to merge several inserts with 'all' BLOCinstruction, check

INSERT ALL
INTO addressbook(name)
VALUES('test')
INTO email(email)
VALUES('[email protected]')
SELECT * FROM dual

General synthax so is;

INSERT ALL
INTO  VALUES ()
INTO  VALUES ()
...