You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
conststmt2=db.prepare("SELECT COUNT(*) as count FROM news WHERE business_category IS NOT NULL AND business_category != '' AND business_category != '其他'");
constresult2=stmt2.get();
console.log('Classified items:',result2.count);
// 检查最近一周的数据
constoneWeekAgo=Date.now()-7*24*3600*1000;
conststmt3=db.prepare('SELECT COUNT(*) as count FROM news WHERE timestamp > ?');