Update sample-schema.sql
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user