Skip to content

Instantly share code, notes, and snippets.

@guidani
Created October 13, 2024 23:44
Show Gist options
  • Save guidani/6fbf862d2a8f1cb73ecbe7c12c2913f0 to your computer and use it in GitHub Desktop.
Save guidani/6fbf862d2a8f1cb73ecbe7c12c2913f0 to your computer and use it in GitHub Desktop.
queryDadosTransacoesMock
INSERT INTO Transacoes (Id_Transacao,Numero_Cartao,Data_Transacao, Valor_Transacao)
VALUES
('123','1234567890123456', CONVERT(DATETIME, '2024-10-01', 120), 150.00),
('456','1234567890123456', CONVERT(DATETIME, '2024-10-05', 120), 750.00),
('789','1234567890123456', CONVERT(DATETIME, '2024-10-10', 120), 1200.00),
('012','2345678901234567', CONVERT(DATETIME, '2024-09-15', 120), 300.00),
('345','2345678901234567', CONVERT(DATETIME, '2024-09-20', 120), 600.00),
('678','3456789012345678', CONVERT(DATETIME, '2024-09-25', 120), 1100.00),
('901','4567890123456789', CONVERT(DATETIME, '2024-09-30', 120), 200.00);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment