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
sqlite3 data.db
.schema parts;select* from parts;select* from parts where fit is not null;selectasin, year,fit,count(*) as c from parts group by asin,year,fit order by c desc;selectasin, year,fit,count(*) as c from parts group by asin,year,fit order by year desc;selectasin, year,fit,count(*) as c from parts group by asin,year,fit order by asin,year desc;selectasin, fit,count(*) from parts group by asin,fit order by asin;selectasin, year,fit,count(*) as c from parts where fit is null group by asin,year,fit order by asin,year desc;selectasin, year,fit,count(*) as c from parts where asin='B00EAOIKWC' group by asin,year,fit order by asin,year desc;
.exit