Skip to content

Instantly share code, notes, and snippets.

View duzhuoshanwai's full-sized avatar
🎮
Learning

duzhuoshanwai

🎮
Learning
View GitHub Profile
@duzhuoshanwai
duzhuoshanwai / init_db.sql
Created August 18, 2025 23:05
雅思哥 IELTS 口语话题 爬取
-- 创建topicList表(主表)
CREATE TABLE topicList (
oralTopicId TEXT PRIMARY KEY,
oralTopicName TEXT NOT NULL,
part INTEGER NOT NULL,
questionCount INTEGER DEFAULT 0,
oralQuestion TEXT,
timeTag TEXT,
oralTopCategoryName TEXT,
createdAt TIMESTAMP DEFAULT CURRENT_TIMESTAMP,