Skip to content

Instantly share code, notes, and snippets.

@machinelearningplus
Created September 26, 2023 17:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save machinelearningplus/8bef6a5e66166e1450ad19fddb9dcc99 to your computer and use it in GitHub Desktop.
Save machinelearningplus/8bef6a5e66166e1450ad19fddb9dcc99 to your computer and use it in GitHub Desktop.
CREATE TABLE DateRange (
startDate DATE,
endDate DATE
);
INSERT INTO DateRange (startDate, endDate)
VALUES
('2023-01-01', '2023-01-05'),
('2023-02-01', '2023-02-03');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment