Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymedina committed Nov 5, 2024
1 parent 2c9bab2 commit 912b974
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse_data_warehouse/synapse/tables/R__my_table.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ CREATE TABLE IF NOT EXISTS my_table2 (
);

-- Insert arbitrary rows into the dummy table
INSERT INTO my_table (id, name, created_at, value) VALUES
INSERT INTO my_table2 (id, name, created_at, value) VALUES
(1, 'Alpha', CURRENT_TIMESTAMP, 1000.5),
(2, 'Beta', CURRENT_TIMESTAMP, 20.0),
(3, 'Gamma', CURRENT_TIMESTAMP, 30.75),
Expand Down

0 comments on commit 912b974

Please sign in to comment.