Instruction
Great! The RETURNING clause can also be used in an INSERT query with multiple rows:
INSERT INTO student VALUES (14, 'Sandra', NULL, 'Norman'), (15, 'Martin', 'Gary', 'Kline') RETURNING *;
The statement above inserts two records using just one operation. With RETURNING, you can display all the inserted data.
Exercise
Insert two new students into the student table: Joanna Maria Pearson with id = 16 and John Porter (who doesn't have a middle name) with id = 17. Display the inserted data.



