Spaces:
Sleeping
Sleeping
File size: 387 Bytes
3b4ed6e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
CREATE TABLE IF NOT EXISTS trends_history (
id INTEGER PRIMARY KEY AUTOINCREMENT,
country TEXT,
trend TEXT,
date TEXT,
sentiment_score REAL
);
INSERT INTO trends_history (country, trend, date, sentiment_score) VALUES
('India', 'AI Dominates News', '2025-03-20', 0.75),
('US', 'Election Updates', '2025-03-20', -0.2),
('UK', 'Royal Family News', '2025-03-20', 0.1);
|