Skip to content

Instantly share code, notes, and snippets.

View Ismail11270's full-sized avatar
🏠
Working from home

Ism-oil Ismail11270

🏠
Working from home
  • Siemens
  • Poland
  • 01:54 (UTC -12:00)
View GitHub Profile
CREATE TABLE Orders (
id INTEGER PRIMARY KEY,
customer TEXT NOT NULL,
value REAL NOT NULL,
placed_at TEXT NOT NULL
);
CREATE TABLE Payments (
id INTEGER PRIMARY KEY,
order_id INTEGER NOT NULL,