-
Notifications
You must be signed in to change notification settings - Fork 0
/
schemas.sql
53 lines (47 loc) · 1.36 KB
/
schemas.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
-- Create questions table
CREATE TABLE IF NOT EXISTS questions (
question_id INTEGER PRIMARY KEY AUTOINCREMENT,
set_id INTEGER,
question_image TEXT,
answer_text TEXT,
solution_image TEXT,
subject TEXT,
topic TEXT
);
-- Create user points table
CREATE TABLE IF NOT EXISTS user_points (
username TEXT,
user_id INTEGER PRIMARY KEY,
doubts_solved INTEGER,
questions_attempted INTEGER,
questions_solved INTEGER,
questions_skipped INTEGER,
points REAL,
total_time_taken TEXT
);
-- Create set counter table
CREATE TABLE IF NOT EXISTS set_counter (
current_set_id INTEGER,
question_count INTEGER
);
-- Initialize set counter if empty
INSERT INTO set_counter (current_set_id, question_count)
SELECT 1, 0
WHERE NOT EXISTS (SELECT 1 FROM set_counter);
-- Create trigger for set id increment
CREATE TRIGGER IF NOT EXISTS set_id_trigger
AFTER INSERT ON questions
FOR EACH ROW
BEGIN
-- Update the set counter table
UPDATE set_counter
SET question_count = question_count + 1;
-- If the count reaches 10, reset it and increment the set id
UPDATE set_counter
SET current_set_id = current_set_id + 1, question_count = 0
WHERE question_count > 10;
-- Update the new question's set id
UPDATE questions
SET set_id = (SELECT current_set_id FROM set_counter)
WHERE question_id = NEW.question_id;
END;