I am quite stuck here, need some guidance if it is possible!
I have this table:
doctor_details (doctor_id, name, surname, date_of_birth)
and I just want to create a procedure that adds to it 30 doctors in the following form:
doctor_id name surname date_of_birth
-------------------------------------------
01 John-01 Surname-01 2001-01-01
02 John-02 Surname-02 2002-01-01
03 John-03 Surname-03 2003-01-01
I know how to do it one by one obviously, but i need some iteration here to put it into a procedure somehow, so when I call it to instantly increase these rows!
Here is the tested code::