Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用python为学校做项目。我需要做(查询)报告,从 SQLite 数据库的一个表中为酒店的前磁盘提供当天前 9 个月在酒店住宿的客人列表。我不知道如何做'where'条件来获取前 9 个月的数据:(
顺便说一句,数据库是 SQLite3。
任何帮助都会很棒
提前致谢
没有给你答案(因为你需要自己做一些工作),这应该给你一个起点。
SELECT * FROM GuestInfo WHERE ArrivalDate >= (Today's date - your definition of 9 months before today)