Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 14, 2023 17:48
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 parzibyte/71d81abab66b58a6fad014fd574c899b to your computer and use it in GitHub Desktop.
Save parzibyte/71d81abab66b58a6fad014fd574c899b to your computer and use it in GitHub Desktop.
CREATE TABLE ventas(
fecha varchar(255) NOT NULL,
monto decimal(9, 2) NOT NULL
);
INSERT INTO
ventas(fecha, monto)
VALUES
("2023-02-12", 25.9),
("2023-03-12", 11.52),
("2023-03-12", 69.5),
("2023-02-14", 524.22),
("2023-01-12", 77.7),
("2023-03-12", 25),
("2023-04-12", 875),
("2023-03-09", 32),
("2023-05-14", 857),
("2023-05-12", 5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment