Skip to content

Commit 95f98b8

Browse files
committed
Add more good query examples
1 parent 9b4f431 commit 95f98b8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/queries/queries-good.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ COPY students FROM 'file_path' WITH (FORMAT BIN);
7676
COPY students FROM 'file_path' WITH (FORMAT BINARY);
7777
COPY students FROM 'file_path' WITH (FORMAT CSV, DELIMITER '|', NULL '', QUOTE '"');
7878
COPY students FROM 'file_path' WITH (DELIMITER '|', NULL '', FORMAT CSV, QUOTE '"');
79+
COPY students FROM 'file_path' WITH (DELIMITER '|', NULL '', QUOTE '"');
80+
COPY students FROM 'file_path' WITH (DELIMITER '|', FORMAT CSV);
7981
COPY students FROM 'file_path' (FORMAT TBL);
8082
COPY good_students FROM 'file_path' WHERE grade > (SELECT AVG(grade) from alumni);
8183
COPY students TO 'student.tbl';

0 commit comments

Comments
 (0)