You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 13, 2022. It is now read-only.
CREATE TABLE customer (cid INTEGER NOT NULL, age INTEGER, fName VARCHAR(255), lName VARCHAR(255), PRIMARY KEY (cid))
CREATE TABLE bill (billid INTEGER NOT NULL, billdate DATETIME, sum INTEGER, PRIMARY KEY (billid))
CREATE TABLE adress (adressid INTEGER NOT NULL, number INTEGER, street VARCHAR(255), town VARCHAR(255), zip INTEGER, adresses INTEGER, PRIMARY KEY (adressid))