difftastic/sample_files/sql_2.sql

12 lines
291 B
SQL

-- A comment
create table apples (
variety varchar primary key not null,
ancestor varchar not null);
create table pears (
name varchar primary key not null,
origin varchar not null,
price float,
ancestor varchar references pears (path) not null);