I need some help creating a table in SQL. I am trying to add time to a table but without the date, I am still a beginner so I have no idea what I am supposed to do. Is there anyone that can help?
CREATE TABLE store(
Store_ID INT NOT NULL,
Store_Type VARCHAR(100) NOT NULL,
Store_Info VARCHAR(100),
Store_Name VARCHAR(100),
Time_open TIMESTAMP WITH LOCAL TIME ZONE NOT NULL,
Time_close TIMESTAMP WITH LOCAL TIME ZONE NOT NULL,
PRIMARY KEY (Store_ID)
);
Thank you in advance :)