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.
我是网络开发领域的新聘实习生,我的前辈让我构建 mysql 查询以从数据库中提取通话历史记录。
他们希望我建立查询以获取以下通话记录: 1- 今天 2- 昨天 3- 上周 4- 本周
只需给我示例代码或给我提示。我们正在开发移动计费应用程序。请帮助我,这对我来说非常必要,因为我是一名新实习生。谢谢
您的提示是 sql 关键字“之间”。
select fname, lname, tCalled, date from calls where date between now() and now() - INTERVAL 1 DAY;
如果我想对了。我没有测试这个