I am creating a table that will be populated with a COPY
. Here's the format of that data:
6/30/2014 2:33:00 PM
MM-DD-YYYY HH:MM:SS ??
What would I use as the formatting for the CREATE TABLE
statement?
CREATE TABLE practice (
Data_Time ????
)
One alternative might be to read as varchar()
then format later. Seems convoluted tho.