I have created a new column in Oracle but I need to append the new data to the already existing records is there a simple method for this.
I have tried the insert method but this only applies the data after the already created data.
INSERT INTO BOOKINGS (DATE_BOOKED) VALUES (to_date ('01/01/2012 6:49 PM','DD/MM/YYYY HH.MIPM'));
I am just unsure of how to append 1561 rows of data the table headers are as such
BOOKINGS_ID, GUEST_ID, ROOM_NO, OCCUPANTS, NIGHTS, RATE, ROOM_TYPE, DATE_BOOKED
any help is greatfully appreciated