标签: sql sqlite
我想查找我的表中所选日期是否是sql中的星期六或星期日。我正在使用SQLiteManager。如果有人可以提供帮助,我们将不胜感激。
答案 0 :(得分:2)
您可以使用strftime():
strftime()
select (case when strftime('%w', datecol) in ('0', '6') then 1 else 0 end) as is_weekend