Skip to content

Commit d2ebfef

Browse files
committed
Added example output
1 parent 909fa17 commit d2ebfef

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

sql/ExampleTable.sql

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
INSERT INTO ExampleTable (id, description, entryDate, location, rate, isActive)
2+
VALUES
3+
(1, "American Farms", "2023-11-17 00:00:00.000", "New York", 0.05, 1),
4+
(2, "Beatles", "2023-11-01 00:00:00.000", NULL, 0.01, 0),
5+
(3, "True Licensing", "2023-12-02 00:00:00.000", NULL, 0.25, 1),
6+
(4, "1 100", "2023-12-10 00:00:00.000", "Chicago", 0.5, 1),
7+
(6, "Smith, John", "2023-10-03 00:00:00.000", "Dallas", 0.35, 1),
8+
(7, "Brown, Esq., John", "2023-06-01 00:00:00.000", "Finland", 0.05, 1),
9+
(8, "Merry Merry Christmas", "2023-01-01 00:00:00.000", NULL, 0, 1),
10+
(9, "another entry", "2023-03-24 00:00:00.000", NULL, 1.05, 0),
11+
(10, 42, "2023-04-01 00:00:00.000", "London", 0.2, 1);

0 commit comments

Comments
 (0)