Skip to content

Instantly share code, notes, and snippets.

@Axelreed
Axelreed / rozenshtein.sql
Last active April 20, 2021 02:23 — forked from jgn/rozenshtein.sql
Sample schema from Rozenshtein, The Essence of SQL (and see The SQL Cookbook)
drop table if exists student;
create table student (
sno integer,
sname varchar(10),
age integer
);
drop table if exists courses;
create table courses (
cno varchar(5),