blob: cef42969291499f4cb8efaa14b238a6b9113418b [file] [log] [blame]
drop table if exists dblp_thesis;
create table dblp_thesis (
key text, -- e.g. ms/Brown92
type text, -- e.g. masters
author text, -- e.g. Kurt P. Brown
title text, -- e.g. PRPL: A Database Workload Specification Language, v1.3.
year text, -- e.g. 1992
school text -- e.g. Univ. of Wisconsin-Madison
) distributed by (key);