Skip to content

Instantly share code, notes, and snippets.

@abuabu1717
abuabu1717 / SQL-Social-Network.sql
Created November 30, 2017 22:28
My answers to SQL exercises for db-class.org /Part 2/
/* Delete the tables if they already exist */
drop table if exists Highschooler;
drop table if exists Friend;
drop table if exists Likes;
/* Create the schema for our tables */
create table Highschooler(ID int, name text, grade int);
create table Friend(ID1 int, ID2 int);
create table Likes(ID1 int, ID2 int);