end of day 4 week 1

This commit is contained in:
2026-01-22 07:31:44 +01:00
parent 5120f11339
commit 82b79336ea
15 changed files with 247 additions and 0 deletions

14
week 1/day 3/init_db.sql Normal file
View File

@@ -0,0 +1,14 @@
CREATE TABLE users(
id SERIAL PRIMARY KEY,
username TEXT
);
INSERT INTO users (username) VALUES
('admin'),
('root1'),
('John_Doe'),
('Alice'),
('Bob42'),
('charlie'),
('eve99'),
('Mallory');