I have created shipment table, and an attribute of the shipment table is 'ship_date'. I have to insert thousands of rows of data for this table, all in the form:
insert into cmShipment (shipment_#, cust_id, weight, truck_#, destination, ship_date) values( 1000 , 1284 , 1.02 , 27 ,'Dallas', 7/5/1966' 3:57:00' PM );
My problem is that i do not know what data type should be used for 'ship_date' that will accept the date, time, and AM/PM in that form.
any help would be greatly appreciated
thanks!
note: the INSERT statements were predetermined and cannot be altered.