Update sample-schema.sql

This commit is contained in:
Soby Chacko
2021-04-15 19:26:38 -04:00
committed by GitHub
parent 3fc1b9fd26
commit e3652e3164

View File

@@ -1,3 +1,5 @@
CREATE DATABASE IF NOT EXISTS test;
USE test;
DROP TABLE IF EXISTS test;
create table test(
id bigint,
@@ -6,4 +8,4 @@ create table test(
);
insert into test values (1, 'Bob', NULL);
insert into test values (2, 'Jane', NULL);
insert into test values (3, 'John', NULL);
insert into test values (3, 'John', NULL);